1
0
mirror of https://github.com/0rangebananaspy/authelia.git synced 2024-09-14 22:47:21 +07:00
authelia/server/src/lib/web_server/middlewares/RequireValidatedFirstFactor.ts
Clement Michaud 73d5253297 Disable notifiers when server uses single factor method only
Notifier is not mandatory when authentication method is single_factor for
all sub-domains since there is no registration required.
2017-10-31 07:37:15 +01:00

26 lines
1015 B
TypeScript

import Express = require("express");
import BluebirdPromise = require("bluebird");
import ErrorReplies = require("../../ErrorReplies");
import { IRequestLogger } from "../../logging/IRequestLogger";
import { AuthenticationSessionHandler } from "../../AuthenticationSessionHandler";
import Exceptions = require("../../Exceptions");
export class RequireValidatedFirstFactor {
static middleware(logger: IRequestLogger) {
return function (req: Express.Request, res: Express.Response,
next: Express.NextFunction): BluebirdPromise<void> {
return new BluebirdPromise<void>(function (resolve, reject) {
const authSession = AuthenticationSessionHandler.get(req, logger);
if (!authSession.userid || !authSession.first_factor)
return reject(
new Exceptions.FirstFactorValidationError(
"First factor has not been validated yet."));
next();
resolve();
})
.catch(ErrorReplies.replyWithError401(req, res, logger));
};
}
}