UNPKG

@graphql-yoga/plugin-jwt

Version:
42 lines (41 loc) 1.62 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.normalizeConfig = normalizeConfig; const utils_js_1 = require("./utils.js"); function normalizeConfig(input) { // TODO: remove this on next major version. if (input.singingKeyProviders) { if (input.signingKeyProviders) { throw new TypeError('You are using both deprecated `singingKeyProviders` and its new replacement `signingKeyProviders` configuration. Please use only `signingKeyProviders`'); } input.signingKeyProviders = input.singingKeyProviders; } if (!input.signingKeyProviders) { throw new TypeError('You must provide at least one signing key provider. Please verify your `signingKeyProviders` configuration.'); } const extendContextFieldName = input.extendContext === false ? null : input.extendContext === undefined || input.extendContext === true ? 'jwt' : input.extendContext; const tokenLookupLocations = input.tokenLookupLocations ?? []; if (tokenLookupLocations.length === 0) { tokenLookupLocations.push((0, utils_js_1.extractFromHeader)({ name: 'Authorization', prefix: 'Bearer', })); } return { signingKeyProviders: input.signingKeyProviders, tokenLookupLocations, tokenVerification: input.tokenVerification ?? { algorithms: ['RS256', 'HS256'], }, reject: { missingToken: true, invalidToken: true, ...input.reject, }, extendContextFieldName, }; }