Skip to content

Commit 90ea1de

Browse files
committed
feat(auth)!: Decouple AuthModule from express-openid-connect by forcing consumers to import the auth middleware themselves and hand it over to this package
1 parent e01d870 commit 90ea1de

File tree

4 files changed

+17
-19
lines changed

4 files changed

+17
-19
lines changed

apps/nest/src/main.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Logger } from '@nestjs/common';
22
import { NestFactory } from '@nestjs/core';
33
import { SwaggerModule, DocumentBuilder } from '@nestjs/swagger';
44
import { CustomLogger, AuthModule } from '@spuxx/nest-utils';
5-
5+
import { auth } from 'express-openid-connect';
66
import { AppModule } from './app.module';
77
import { authConfig } from './auth/auth.config';
88
import { EnvModule } from './env/env.module';
@@ -15,7 +15,7 @@ async function bootstrap() {
1515
logger,
1616
});
1717

18-
await AuthModule.bootstrap(app as never, authConfig);
18+
await AuthModule.bootstrap(app as never, auth, authConfig);
1919

2020
const config = new DocumentBuilder()
2121
.setTitle('apps/nest')

packages/nest-utils/src/auth/auth.module.ts

+11-4
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@ import { AuthController } from './controllers/auth.controller';
44
import { AuthService } from './providers/auth.service';
55
import { deepMerge } from '@spuxx/js-utils';
66
import { AuthOptionsProvider } from './providers/auth-options.provider';
7+
import { type ConfigParams } from 'express-openid-connect';
8+
import { RequestHandler } from 'express';
79

810
/**
911
* 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
1113
* for use with an OIDC provider.
1214
* @example
1315
* // main.ts
1416
* import { AuthModule, AuthOptions } from '@nestjs-oidc/core';
17+
* import { auth } from "express-openid-connect";
1518
* const authConfig: AuthOptions = {
1619
* // This is the minimum set of options you need to provide
1720
* roles: {
@@ -27,7 +30,7 @@ import { AuthOptionsProvider } from './providers/auth-options.provider';
2730
* secret: 'session-secret',
2831
* }
2932
* }
30-
* await AuthModule.bootstrap(app, authConfig);
33+
* await AuthModule.bootstrap(app, auth, authConfig);
3134
*
3235
* // app.module.ts
3336
* import { AuthModule } from '@nestjs-oidc/core';
@@ -41,16 +44,20 @@ export class AuthModule {
4144
/**
4245
* Bootstraps authentication. This must be called during application bootstrapping.
4346
* @param app The Nest application instance.
47+
* @param auth The `auth` middleware function provided by `express-openid-connect`.
4448
* @param options The authentication options.
4549
*/
46-
static async bootstrap(app: INestApplication, options: AuthOptions) {
50+
static async bootstrap(
51+
app: INestApplication,
52+
auth: (params?: ConfigParams) => RequestHandler,
53+
options: AuthOptions,
54+
) {
4755
const mergedOptions = this.mergeOptionsWithDefaultValues(options);
4856
const { disable, oidc } = mergedOptions;
4957
if (disable) {
5058
Logger.warn('Authentication is disabled. All routes will be accessible.', AuthModule.name);
5159
return;
5260
}
53-
const { auth } = await import('express-openid-connect');
5461
app.use(auth(oidc));
5562
Logger.log(
5663
`Authentication is enabled and will be handled by issuer at '${oidc.issuerBaseURL}'.`,

packages/nest-utils/src/testing/container/private/mock-oidc.ts

-9
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,3 @@ export class MockOidcModule implements NestModule {
3939
consumer.apply(MockOidcMiddleware).forRoutes('*');
4040
}
4141
}
42-
43-
export function mockExpressOidcPackage() {
44-
vitest.doMock('express-openid-connect', () => {
45-
return {
46-
auth: vitest.fn(() => (_req: Request, _res: Response, next: NextFunction) => next()),
47-
requiresAuth: vitest.fn(() => (_req: Request, _res: Response, next: NextFunction) => next()),
48-
};
49-
});
50-
}

packages/nest-utils/src/testing/container/test-container.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ import { AuthOptions } from '../../auth';
55
import { AuthModule } from '../../auth/auth.module';
66
import { Supertest } from '../supertest';
77
import { createEndToEndNestApplication } from './private/end-to-end';
8-
import { mockExpressOidcPackage, MockOidcModule } from './private/mock-oidc';
8+
import { MockOidcModule } from './private/mock-oidc';
99
import { TestContainerOptions } from './types';
1010
import { MappingModule } from '../../mapping/mapping.module';
11+
import { NextFunction } from 'express';
1112

1213
/**
1314
* `TestContainer` provides an abstraction of `Nest.createTestContainer()`, offering
@@ -76,8 +77,6 @@ export class TestContainer {
7677
...options,
7778
};
7879

79-
mockExpressOidcPackage();
80-
8180
// Auto-add non-conditional components
8281
imports.push(MappingModule);
8382

@@ -106,7 +105,8 @@ export class TestContainer {
106105
let supertest: Supertest | undefined;
107106
if (enableEndToEnd) {
108107
app = await createEndToEndNestApplication(module);
109-
await AuthModule.bootstrap(app, authOptions as AuthOptions);
108+
const auth = () => (_req: Request, _res: Response, next: NextFunction) => next();
109+
await AuthModule.bootstrap(app, auth as never, authOptions as AuthOptions);
110110
supertest = new Supertest(app, options.session);
111111
}
112112

0 commit comments

Comments
 (0)