ebac854da8
* The MongoDB/Mongoose data storage is removed in favor of Sequelize. This abstracts over SQLite or RDBMs like PostgreSQL and MSSQL. The default is SQLite, which significantly simplifies deployments in end-user environments. * As Spacedeck now has no more mandatory server dependencies, we can wrap it in Electron and ship it as a desktop application. * Removes docker-compose.yml * First version of import UI
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
const db = require('../models/db');
|
|
var config = require('config');
|
|
|
|
module.exports = (req, res, next) => {
|
|
const token = req.cookies["sdsession"];
|
|
|
|
if (token && token != "null" && token != null) {
|
|
db.Session.findOne({where: {token: token}})
|
|
.then(session => {
|
|
if (!session) {
|
|
// session not found
|
|
next();
|
|
}
|
|
else db.User.findOne({where: {_id: session.user_id}})
|
|
.then(user => {
|
|
if (!user) {
|
|
res.clearCookie('sdsession');
|
|
|
|
if (req.accepts("text/html")) {
|
|
res.send("Please clear your cookies and try again.");
|
|
} else if (req.accepts('application/json')) {
|
|
res.status(403).json({
|
|
"error": "token_not_found"
|
|
});
|
|
} else {
|
|
res.send("Please clear your cookies and try again.");
|
|
}
|
|
|
|
} else {
|
|
req["token"] = token;
|
|
req["user"] = user;
|
|
next();
|
|
}
|
|
});
|
|
})
|
|
.error(err => {
|
|
console.error("Session resolve error",err);
|
|
next();
|
|
});
|
|
} else {
|
|
next();
|
|
}
|
|
}
|
|
|