@@ -4,14 +4,17 @@ import { AuthController } from './controllers/auth.controller';
4
4
import { AuthService } from './providers/auth.service' ;
5
5
import { deepMerge } from '@spuxx/js-utils' ;
6
6
import { AuthOptionsProvider } from './providers/auth-options.provider' ;
7
+ import { type ConfigParams } from 'express-openid-connect' ;
8
+ import { RequestHandler } from 'express' ;
7
9
8
10
/**
9
11
* The authentication module. This module is responsible for handling authentication and
10
- * authorization. It is based on the `express-openid-connect? ` library and is intended
12
+ * authorization. It is based on the `express-openid-connect` library and is intended
11
13
* for use with an OIDC provider.
12
14
* @example
13
15
* // main.ts
14
16
* import { AuthModule, AuthOptions } from '@nestjs-oidc/core';
17
+ * import { auth } from "express-openid-connect";
15
18
* const authConfig: AuthOptions = {
16
19
* // This is the minimum set of options you need to provide
17
20
* roles: {
@@ -27,7 +30,7 @@ import { AuthOptionsProvider } from './providers/auth-options.provider';
27
30
* secret: 'session-secret',
28
31
* }
29
32
* }
30
- * await AuthModule.bootstrap(app, authConfig);
33
+ * await AuthModule.bootstrap(app, auth, authConfig);
31
34
*
32
35
* // app.module.ts
33
36
* import { AuthModule } from '@nestjs-oidc/core';
@@ -41,16 +44,20 @@ export class AuthModule {
41
44
/**
42
45
* Bootstraps authentication. This must be called during application bootstrapping.
43
46
* @param app The Nest application instance.
47
+ * @param auth The `auth` middleware function provided by `express-openid-connect`.
44
48
* @param options The authentication options.
45
49
*/
46
- static async bootstrap ( app : INestApplication , options : AuthOptions ) {
50
+ static async bootstrap (
51
+ app : INestApplication ,
52
+ auth : ( params ?: ConfigParams ) => RequestHandler ,
53
+ options : AuthOptions ,
54
+ ) {
47
55
const mergedOptions = this . mergeOptionsWithDefaultValues ( options ) ;
48
56
const { disable, oidc } = mergedOptions ;
49
57
if ( disable ) {
50
58
Logger . warn ( 'Authentication is disabled. All routes will be accessible.' , AuthModule . name ) ;
51
59
return ;
52
60
}
53
- const { auth } = await import ( 'express-openid-connect' ) ;
54
61
app . use ( auth ( oidc ) ) ;
55
62
Logger . log (
56
63
`Authentication is enabled and will be handled by issuer at '${ oidc . issuerBaseURL } '.` ,
0 commit comments