import { defineConfig } from '@adonisjs/auth'; import { Authenticators } from '@adonisjs/auth/types'; import { sessionGuard, sessionUserProvider } from '@adonisjs/auth/session'; // import User from '#app/Models/User'; // import { SessionLucidUserProviderOptions } from '@adonisjs/auth/types/session'; import { Authenticator } from '@adonisjs/auth'; import { GuardFactory } from '@adonisjs/auth/types'; // export declare function sessionUserProvider(config: SessionLucidUserProviderOptions): SessionLucidUserProvider; const authConfig = defineConfig({ default: 'web', guards: { web: sessionGuard({ useRememberMeTokens: false, provider: sessionUserProvider({ model: () => import('#app/Models/User'), }), }), }, }); export default authConfig; /** * Inferring types from the configured auth * guards. */ declare module '@adonisjs/auth/types' { // export type InferAuthenticators< // Config extends ConfigProvider<{ // default: unknown; // guards: unknown; // }>, // > = Awaited>['guards']; // interface ProvidersList { // /* // |-------------------------------------------------------------------------- // | User Provider // |-------------------------------------------------------------------------- // | // | The following provider uses Lucid models as a driver for fetching user // | details from the database for authentication. // | // | You can create multiple providers using the same underlying driver with // | different Lucid models. // | // */ // // user: { // // implementation: SessionLucidUserProvider; // // config: LucidProviderConfig; // // }; // user: { // implementation: SessionLucidUserProvider; // config: SessionLucidUserProviderOptions; // }; // } interface Authenticators extends InferAuthenticators {} // const PROVIDER_REAL_USER: unique symbol; // export type SessionGuardUser = { // getId(): string | number | BigInt; // getOriginal(): RealUser; // }; // export interface SessionUserProviderContract { // [PROVIDER_REAL_USER]: User; // /** // * Create a user object that acts as an adapter between // * the guard and real user value. // */ // createUserForGuard(user: User): Promise>; // /** // * Find a user by their id. // */ // findById(identifier: string | number | BigInt): Promise | null>; // } } // declare module '@adonisjs/core/types' { // interface EventsList extends InferAuthEvents {} // } declare module '@adonisjs/core/http' { interface HttpContext { auth: Authenticator ? Authenticators : never>; } }