Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: opt-in lazy loading of specs #833

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
5,120 changes: 0 additions & 5,120 deletions package-lock.json

This file was deleted.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
"cookie-parser": "^1.4.6",
"coveralls": "^3.1.1",
"express": "^4.17.3",
"js-yaml": "^3.14.1",
"mocha": "^9.2.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
Expand Down
1 change: 1 addition & 0 deletions src/framework/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ export interface OpenApiValidatorOpts {
validateResponses?: boolean | ValidateResponseOpts;
validateRequests?: boolean | ValidateRequestOpts;
validateSecurity?: boolean | ValidateSecurityOpts;
lazyLoadApiSpec?: boolean;
ignorePaths?: RegExp | Function;
ignoreUndocumented?: boolean;
securityHandlers?: SecurityHandlers;
Expand Down
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ function openapiValidator(options: OpenApiValidatorOpts) {
apiDoc: cloneDeep(options.apiSpec),
validateApiSpec: options.validateApiSpec,
$refParser: options.$refParser,
}).load(),
}),
{ lazyLoad: options.lazyLoadApiSpec },
);
}
35 changes: 24 additions & 11 deletions src/openapi.validator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as _uniq from 'lodash.uniq';
import * as middlewares from './middlewares';
import { Application, Response, NextFunction, Router } from 'express';
import { OpenApiContext } from './framework/openapi.context';
import { Spec } from './framework/openapi.spec.loader';
import { OpenApiSpecLoader, Spec } from './framework/openapi.spec.loader';
import {
NormalizedOpenApiValidatorOpts,
OpenApiValidatorOpts,
Expand All @@ -22,6 +22,7 @@ import { OperationHandlerOptions } from './framework/types';
import { defaultSerDes } from './framework/base.serdes';
import { SchemaPreprocessor } from './middlewares/parsers/schema.preprocessor';
import { AjvOptions } from './framework/ajv/options';
import { createContext } from 'vm';

export {
OpenApiValidatorOpts,
Expand Down Expand Up @@ -90,9 +91,8 @@ export class OpenApiValidator {
this.ajvOpts = new AjvOptions(this.options);
}

installMiddleware(spec: Promise<Spec>): OpenApiRequestHandler[] {
const middlewares: OpenApiRequestHandler[] = [];
const pContext = spec
private createContext(spec: Promise<Spec>) {
return spec
.then((spec) => {
const apiDoc = spec.apiDoc;
const ajvOpts = this.ajvOpts.preprocessor;
Expand All @@ -115,12 +115,25 @@ export class OpenApiValidator {
error: e,
};
});
}

installMiddleware(
spec: OpenApiSpecLoader,
options: { lazyLoad: boolean },
): OpenApiRequestHandler[] {
const middlewares: OpenApiRequestHandler[] = [];
let cache = options.lazyLoad ? null : this.createContext(spec.load());
const pContext = () => {
if (cache) return cache;
cache = this.createContext(spec.load());
return cache;
};

const self = this; // using named functions instead of anonymous functions to allow traces to be more useful
let inited = false;
// install path params
middlewares.push(function pathParamsMiddleware(req, res, next) {
return pContext
return pContext()
.then(({ context, error }) => {
// Throw if any error occurred during spec load.
if (error) throw error;
Expand All @@ -141,7 +154,7 @@ export class OpenApiValidator {
// metadata middleware
let metamw;
middlewares.push(function metadataMiddleware(req, res, next) {
return pContext
return pContext()
.then(({ context, responseApiDoc }) => {
metamw = metamw || self.metadataMiddleware(context, responseApiDoc);
return metamw(req, res, next);
Expand All @@ -153,7 +166,7 @@ export class OpenApiValidator {
// multipart middleware
let fumw;
middlewares.push(function multipartMiddleware(req, res, next) {
return pContext
return pContext()
.then(({ context: { apiDoc } }) => {
fumw = fumw || self.multipartMiddleware(apiDoc);
return fumw(req, res, next);
Expand All @@ -165,7 +178,7 @@ export class OpenApiValidator {
// security middlware
let scmw;
middlewares.push(function securityMiddleware(req, res, next) {
return pContext
return pContext()
.then(({ context: { apiDoc } }) => {
const components = apiDoc.components;
if (self.options.validateSecurity && components?.securitySchemes) {
Expand All @@ -182,7 +195,7 @@ export class OpenApiValidator {
if (this.options.validateRequests) {
let reqmw;
middlewares.push(function requestMiddleware(req, res, next) {
return pContext
return pContext()
.then(({ context: { apiDoc } }) => {
reqmw = reqmw || self.requestValidationMiddleware(apiDoc);
return reqmw(req, res, next);
Expand All @@ -195,7 +208,7 @@ export class OpenApiValidator {
if (this.options.validateResponses) {
let resmw;
middlewares.push(function responseMiddleware(req, res, next) {
return pContext
return pContext()
.then(({ responseApiDoc }) => {
resmw = resmw || self.responseValidationMiddleware(responseApiDoc);
return resmw(req, res, next);
Expand All @@ -209,7 +222,7 @@ export class OpenApiValidator {
let router: Router = null;
middlewares.push(function operationHandlersMiddleware(req, res, next) {
if (router) return router(req, res, next);
return pContext
return pContext()
.then(
({ context }) =>
(router = self.installOperationHandlers(req.baseUrl, context)),
Expand Down
47 changes: 47 additions & 0 deletions test/lazy.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import { expect } from 'chai';

import { middleware } from '../src';
import { OpenAPIV3 } from '../src/framework/types';
import * as fs from 'fs';

describe('lazy loading', () => {
let called = false;
let originalExistsSync: any;

before(() => {
originalExistsSync = fs.existsSync;
(fs as any).existsSync = () => {
called = true;
return false;
};
});

after(() => {
(fs as any).existsSync = originalExistsSync;
});

beforeEach(() => {
called = false;
});

it('normally immediately reads the spec file', async () => {
middleware({
apiSpec: 'does-not-exist.yaml',
});
expect(called).to.be.true;
});

it('reads the file on first use in lazyLoad mode', async () => {
const middlewares = middleware({
apiSpec: 'does-not-exist.yaml',
lazyLoadApiSpec: true,
});
expect(called).to.be.false;
const err = await new Promise<any>((resolve) =>
middlewares[0]({} as any, {} as any, resolve),
);
expect(called).to.be.true;
expect(err).to.be.an.instanceOf(Error);
expect(err.message).to.contain('could not be read at');
});
});
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"compilerOptions": {
"declaration": true,
"target": "es2017",
"lib": ["es2019", "es2019.array"],
"target": "es2020",
"lib": ["es2020"],
"module": "commonjs",
"moduleResolution": "node",
"outDir": "dist",
Expand Down