2017-10-21 21:10:33 -04:00
|
|
|
"use strict";
|
|
|
|
|
2017-10-25 22:39:21 -04:00
|
|
|
const migration = require('./migration');
|
2017-11-05 17:58:55 -05:00
|
|
|
const utils = require('./utils');
|
2017-10-25 22:39:21 -04:00
|
|
|
|
|
|
|
async function checkAuth(req, res, next) {
|
2017-11-05 17:58:55 -05:00
|
|
|
if (!req.session.loggedIn && !utils.isElectron()) {
|
2017-10-15 16:32:49 -04:00
|
|
|
res.redirect("login");
|
2017-10-25 22:39:21 -04:00
|
|
|
}
|
2017-10-29 14:55:48 -04:00
|
|
|
else if (await migration.isDbUpToDate()) {
|
2017-10-15 16:32:49 -04:00
|
|
|
next();
|
|
|
|
}
|
2017-10-25 22:39:21 -04:00
|
|
|
else {
|
|
|
|
res.redirect("migration");
|
|
|
|
}
|
2017-10-15 16:32:49 -04:00
|
|
|
}
|
|
|
|
|
2017-10-26 20:31:31 -04:00
|
|
|
async function checkAuthWithoutMigration(req, res, next) {
|
2017-11-05 17:58:55 -05:00
|
|
|
if (!req.session.loggedIn && !utils.isElectron()) {
|
2017-10-26 20:31:31 -04:00
|
|
|
res.redirect("login");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-25 22:39:21 -04:00
|
|
|
async function checkApiAuth(req, res, next) {
|
2017-11-05 17:58:55 -05:00
|
|
|
if (!req.session.loggedIn && !utils.isElectron()) {
|
2017-10-31 20:09:07 -04:00
|
|
|
res.status(401).send("Not authorized");
|
2017-10-25 22:39:21 -04:00
|
|
|
}
|
2017-10-29 14:55:48 -04:00
|
|
|
else if (await migration.isDbUpToDate()) {
|
2017-10-15 16:32:49 -04:00
|
|
|
next();
|
|
|
|
}
|
2017-10-25 22:39:21 -04:00
|
|
|
else {
|
2017-10-31 20:09:07 -04:00
|
|
|
res.status(409).send("Mismatched app versions"); // need better response than that
|
2017-10-25 22:39:21 -04:00
|
|
|
}
|
2017-10-15 16:32:49 -04:00
|
|
|
}
|
|
|
|
|
2017-10-26 20:31:31 -04:00
|
|
|
async function checkApiAuthWithoutMigration(req, res, next) {
|
2017-11-05 17:58:55 -05:00
|
|
|
if (!req.session.loggedIn && !utils.isElectron()) {
|
2017-10-31 20:09:07 -04:00
|
|
|
res.status(401).send("Not authorized");
|
2017-10-26 20:31:31 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-15 16:32:49 -04:00
|
|
|
module.exports = {
|
|
|
|
checkAuth,
|
2017-10-26 20:31:31 -04:00
|
|
|
checkAuthWithoutMigration,
|
|
|
|
checkApiAuth,
|
|
|
|
checkApiAuthWithoutMigration
|
2017-10-15 16:32:49 -04:00
|
|
|
};
|