@n4it/utility-api-key
Version:
Package to manage API Keys in NestJS.
56 lines • 2.83 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.ApiKeyStrategy = void 0;
const common_1 = require("@nestjs/common");
const passport_1 = require("@nestjs/passport");
const passport_headerapikey_1 = require("passport-headerapikey");
const constants_1 = require("../constants");
const api_key_service_1 = require("../api-key.service");
const api_key_configure_module_1 = require("../api-key.configure-module");
const defaults_1 = require("../constants/defaults");
let ApiKeyStrategy = class ApiKeyStrategy extends (0, passport_1.PassportStrategy)(passport_headerapikey_1.default, constants_1.API_KEY_MODULE_STRATEGY) {
tokenService;
constructor(options, tokenService) {
super({
header: options.apiKeyHeader ?? defaults_1.DEFAULTS.apiKeyHeader,
prefix: options.apiKeyHeaderPrefix ?? defaults_1.DEFAULTS.apiKeyHeaderPrefix,
}, true, async (apiKey, done) => this.validate(apiKey, done));
this.tokenService = tokenService;
}
async validate(apiKey, done) {
if (typeof done !== 'function') {
return this.tokenService.verifyApiKey(apiKey).catch((err) => {
throw new common_1.UnauthorizedException({
cause: err,
});
});
}
return this.tokenService
.verifyApiKey(apiKey)
.then((user) => done(null, user))
.catch((err) => {
done(new common_1.UnauthorizedException({
cause: err,
}), null);
});
}
};
exports.ApiKeyStrategy = ApiKeyStrategy;
exports.ApiKeyStrategy = ApiKeyStrategy = __decorate([
(0, common_1.Injectable)(),
__param(0, (0, common_1.Inject)(api_key_configure_module_1.MODULE_OPTIONS_TOKEN)),
__metadata("design:paramtypes", [Object, api_key_service_1.ApiKeyService])
], ApiKeyStrategy);
//# sourceMappingURL=api-key.strategy.js.map