Hi!

I'm writing a rest API using Vibe.d. I'm registering the interface class below a call to performBasicAuth like:

router.any("*", performBasicAuth("Site Realm",   toDelegate(&checkAuth)));
router.registerRestInterface(new ApiImpl);

Now, on a method of ApiImpl I want to check the authenticated user, but AFAIK these methods doesn't receive an HTTPServerRequest object like the normal "web" delegates. Is there any way to get the user? (or any other HTTP data from the request) on these API methods?