2020-10-31 13:33:59 -07:00
|
|
|
import express from 'express';
|
|
|
|
import authenticate from '../src/authenticate';
|
|
|
|
import dbConnection from './db';
|
2020-11-02 10:31:05 -08:00
|
|
|
import session from 'express-session';
|
|
|
|
import cookieParser from 'cookie-parser';
|
|
|
|
import grant from "grant";
|
|
|
|
import router from "./routes/user";
|
2020-11-10 14:41:56 -08:00
|
|
|
import { loadSuml } from './loader';
|
2021-06-17 16:10:59 -07:00
|
|
|
import {isGranted} from "../src/helpers";
|
2020-10-31 13:33:59 -07:00
|
|
|
|
2020-11-28 07:52:48 -08:00
|
|
|
global.config = loadSuml('config');
|
|
|
|
|
2020-10-31 13:33:59 -07:00
|
|
|
const app = express()
|
2021-02-01 02:17:26 -08:00
|
|
|
app.enable('trust proxy')
|
2020-10-31 13:33:59 -07:00
|
|
|
|
|
|
|
app.use(express.json());
|
|
|
|
app.use(express.urlencoded({ extended: true }));
|
2020-11-02 10:31:05 -08:00
|
|
|
app.use(cookieParser());
|
|
|
|
app.use(session({
|
|
|
|
secret: process.env.SECRET,
|
2020-11-02 11:16:08 -08:00
|
|
|
cookie: {},
|
2020-11-14 22:15:37 -08:00
|
|
|
resave: false,
|
|
|
|
saveUninitialized: false,
|
2020-11-02 10:31:05 -08:00
|
|
|
}));
|
2020-10-31 13:33:59 -07:00
|
|
|
|
2021-06-17 16:43:17 -07:00
|
|
|
class LazyDatabase {
|
|
|
|
constructor() {
|
|
|
|
this.db = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
async get(...args) {
|
|
|
|
if (this.db === null) {
|
|
|
|
this.db = await dbConnection();
|
|
|
|
}
|
|
|
|
return this.db.get(...args)
|
|
|
|
}
|
|
|
|
|
|
|
|
async all(...args) {
|
|
|
|
if (this.db === null) {
|
|
|
|
this.db = await dbConnection();
|
|
|
|
}
|
|
|
|
return this.db.all(...args);
|
|
|
|
}
|
|
|
|
|
|
|
|
async close() {
|
|
|
|
if (this.db !== null) {
|
|
|
|
try {
|
|
|
|
await this.db.close();
|
|
|
|
} catch {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-31 13:33:59 -07:00
|
|
|
app.use(async function (req, res, next) {
|
2021-06-09 09:13:18 -07:00
|
|
|
try {
|
|
|
|
req.rawUser = authenticate(req);
|
|
|
|
req.user = req.rawUser && req.rawUser.authenticated ? req.rawUser : null;
|
|
|
|
req.isGranted = (area, locale = global.config.locale) => req.user && isGranted(req.user, locale, area);
|
2021-06-17 16:43:17 -07:00
|
|
|
req.db = new LazyDatabase();
|
2021-06-09 09:13:18 -07:00
|
|
|
res.on('finish', async () => {
|
2021-06-17 16:43:17 -07:00
|
|
|
await req.db.close();
|
2021-06-09 09:13:18 -07:00
|
|
|
});
|
2021-07-17 07:37:04 -07:00
|
|
|
res.set('Access-Control-Allow-Origin', '*');
|
|
|
|
res.set('Access-Control-Allow-Headers', 'authorization,content-type');
|
2021-06-09 09:13:18 -07:00
|
|
|
next();
|
|
|
|
} catch (err) {
|
|
|
|
next(err);
|
|
|
|
}
|
2020-11-02 10:31:05 -08:00
|
|
|
});
|
|
|
|
|
2020-11-02 12:45:45 -08:00
|
|
|
router.use(grant.express()(require('./social').config));
|
2020-10-31 13:33:59 -07:00
|
|
|
|
|
|
|
app.use(require('./routes/banner').default);
|
|
|
|
|
|
|
|
app.use(require('./routes/user').default);
|
|
|
|
app.use(require('./routes/profile').default);
|
|
|
|
app.use(require('./routes/admin').default);
|
|
|
|
|
2020-11-10 15:47:44 -08:00
|
|
|
app.use(require('./routes/pronouns').default);
|
2020-10-31 13:33:59 -07:00
|
|
|
app.use(require('./routes/sources').default);
|
2020-11-10 14:41:56 -08:00
|
|
|
app.use(require('./routes/nouns').default);
|
2020-11-17 10:21:49 -08:00
|
|
|
app.use(require('./routes/inclusive').default);
|
2020-12-18 08:32:18 -08:00
|
|
|
app.use(require('./routes/terms').default);
|
2020-11-28 07:52:48 -08:00
|
|
|
app.use(require('./routes/pronounce').default);
|
2020-12-18 02:34:58 -08:00
|
|
|
app.use(require('./routes/census').default);
|
2020-10-31 13:33:59 -07:00
|
|
|
|
2021-01-06 06:21:20 -08:00
|
|
|
app.use(require('./routes/images').default);
|
2021-06-23 10:25:56 -07:00
|
|
|
app.use(require('./routes/blog').default);
|
2021-01-06 06:21:20 -08:00
|
|
|
|
2021-06-09 05:47:08 -07:00
|
|
|
app.use(function (err, req, res, next) {
|
|
|
|
console.error(err.stack);
|
|
|
|
res.status(500).send('Unexpected server error');
|
2021-06-09 09:13:18 -07:00
|
|
|
req.db.close();
|
2021-06-09 05:47:08 -07:00
|
|
|
});
|
|
|
|
|
2020-10-31 13:33:59 -07:00
|
|
|
export default {
|
|
|
|
path: '/api',
|
|
|
|
handler: app,
|
|
|
|
}
|