UNPKG

@hz-9/a5-authn

Version:

Authentication module for the @hz-9/a5-* series of repositories.

49 lines 2.51 kB
"use strict"; 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.A5AuthnPhoneStrategy = 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) => ({ phoneField: options.phoneField || 'phone', codeField: options.codeField || 'code', }); let A5AuthnPhoneStrategy = class A5AuthnPhoneStrategy extends (0, passport_1.PassportStrategy)(passport_local_1.Strategy, const_1.A5_AUTHN_PHONE_STRATEGY_NAME) { constructor(options, service) { const thisOptions = optionsWithDefaults(options); super({ usernameField: thisOptions.phoneField, passwordField: thisOptions.codeField, }); this.service = service; this.options = thisOptions; } async validate(phone, code) { const user = await this.service.validatePhone(phone, code); if (!user) throw new common_1.UnauthorizedException(); return user; } }; exports.A5AuthnPhoneStrategy = A5AuthnPhoneStrategy; exports.A5AuthnPhoneStrategy = A5AuthnPhoneStrategy = __decorate([ (0, common_1.Injectable)(), __param(0, (0, common_1.Inject)(module_definition_1.A5_AUTH_PHONE_MODULE_OPTIONS)), __param(1, (0, common_1.Inject)(const_1.A5_AUTHN_SERVICE_TOKEN)), __metadata("design:paramtypes", [Object, Object]) ], A5AuthnPhoneStrategy); //# sourceMappingURL=a5-authn-phone.strategy.js.map