@qelos/auth
Version:
Express Passport authentication service
25 lines (24 loc) • 1.3 kB
JavaScript
;
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());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.authConfigCheck = void 0;
const auth_configuration_1 = require("../services/auth-configuration");
exports.authConfigCheck = function authConfigCheck(req, res, next) {
return __awaiter(this, void 0, void 0, function* () {
const authConfig = yield (0, auth_configuration_1.getAuthConfiguration)(req.headers.tenant);
if (!authConfig) {
res.status(403).json({ message: 'tenant auth config does not exist' }).end();
return;
}
req.authConfig = authConfig;
next();
});
};