| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
- return new (P || (P = Promise))(function (resolve, reject) {
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
- step((generator = generator.apply(thisArg, _arguments || [])).next());
- });
- };
- import { TotpChecker } from "./totpChecker";
- export class SqliteAuthenticationHandler {
- constructor(getAccountInformationFunction, passwordEncoder) {
- this.passwordEncoder = passwordEncoder;
- this.getAccountInformation = getAccountInformationFunction;
- }
- needTotp(username) {
- return __awaiter(this, void 0, void 0, function* () {
- const accountInformation = yield this.getAccountInformation(username);
- if (!accountInformation)
- return null;
- return !!accountInformation.totpSecret;
- });
- }
- tryLogin(username, password, totp) {
- return __awaiter(this, void 0, void 0, function* () {
- const accountInformation = yield this.getAccountInformation(username);
- if (!accountInformation)
- return null;
- password = this.passwordEncoder(password);
- if (accountInformation.passwordEncoded !== password ||
- (accountInformation.totpSecret && !totp) ||
- (!accountInformation.totpSecret && totp))
- return false;
- if (!accountInformation.totpSecret && !totp)
- return true;
- return TotpChecker.ValidateTotp(accountInformation.totpSecret, totp);
- });
- }
- }
- //# sourceMappingURL=sqliteAuthenticationHandler.js.map
|