tethys.backend/app/middleware/silent_auth.ts

22 lines
640 B
TypeScript
Raw Normal View History

2024-03-14 19:25:27 +00:00
import type { HttpContext } from '@adonisjs/core/http';
2023-03-03 15:54:28 +00:00
/**
* Silent auth middleware can be used as a global middleware to silent check
* if the user is logged-in or not.
*
* The request continues as usual, even when the user is not logged-in.
*/
export default class SilentAuthMiddleware {
/**
* Handle request
2023-03-03 15:54:28 +00:00
*/
2024-03-14 19:25:27 +00:00
public async handle({ auth }: HttpContext, next: () => Promise<void>) {
/**
* Check if user is logged-in or not. If yes, then `ctx.auth.user` will be
* set to the instance of the currently logged in user.
*/
await auth.check();
await next();
}
2023-03-03 15:54:28 +00:00
}