@hz-9/a5-authn
Version:
Authentication module for the @hz-9/a5-* series of repositories.
49 lines • 2.53 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.A5AuthnPwdStrategy = void 0;
const common_1 = require("@nestjs/common");
const passport_1 = require("@nestjs/passport");
const passport_local_1 = require("passport-local");
const const_1 = require("../../const");
const module_definition_1 = require("./module-definition");
const optionsWithDefaults = (options) => ({
usernameField: options.usernameField || 'username',
passwordField: options.passwordField || 'password',
});
let A5AuthnPwdStrategy = class A5AuthnPwdStrategy extends (0, passport_1.PassportStrategy)(passport_local_1.Strategy, const_1.A5_AUTHN_PWD_STRATEGY_NAME) {
constructor(options, service) {
const thisOptions = optionsWithDefaults(options);
super({
usernameField: thisOptions.usernameField,
passwordField: thisOptions.passwordField,
});
this.service = service;
this.options = thisOptions;
}
async validate(username, password) {
const user = await this.service.validateCredentials(username, password);
if (!user)
throw new common_1.UnauthorizedException();
return user;
}
};
exports.A5AuthnPwdStrategy = A5AuthnPwdStrategy;
exports.A5AuthnPwdStrategy = A5AuthnPwdStrategy = __decorate([
(0, common_1.Injectable)(),
__param(0, (0, common_1.Inject)(module_definition_1.A5_AUTH_PWD_MODULE_OPTIONS)),
__param(1, (0, common_1.Inject)(const_1.A5_AUTHN_SERVICE_TOKEN)),
__metadata("design:paramtypes", [Object, Object])
], A5AuthnPwdStrategy);
//# sourceMappingURL=a5-authn-pwd.strategy.js.map