-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
80 lines (66 loc) · 2.2 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// INFO: how to start the server DEBUG=app:* npm start
require("dotenv").config({ path: __dirname + "/bin/.env" });
const createError = require("http-errors");
const express = require("express");
const path = require("path");
const cookieParser = require("cookie-parser");
const logger = require("./logger.js");
const morgan = require("morgan");
const mongoose = require("mongoose");
const dashboard = require("./back-office/manager/dashboard");
const back_office = require("./back-office/back_office");
const front_office = require("./front-office/front_office");
const authService = require("./services/auth");
const app = express();
app.use(function (req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header(
"Access-Control-Allow-Headers",
"Origin, X-Requested-With, Content-Type, Accept"
);
next();
});
app.use(morgan("combined"));
app.use(express.json({ limit: "100mb" }));
app.use(express.urlencoded({ extended: false, limit: "100mb" }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, "public")));
// app.use('/nn+1', back_office);
app.use(authService.get_session());
app.get("/", async (req, res, next) => {
res.sendFile(path.join(__dirname, "index.html"));
});
app.use("/nnplus", back_office);
app.use("/front", front_office);
app.use("/dash", dashboard);
app.use((req, res, next) => {
authService.authorization(
req,
res,
next,
"/nnplus/logout",
"/nnplus/login",
3
);
});
app.use("/assets", async (req, res, next) => {
res.sendFile(path.join(__dirname, "./dist/assets/", req.url));
});
// catch 404 and forward to error handler
app.use(function (req, res, next) {
logger.warn("Error occured");
next(createError(404));
});
// error handler
app.use(function (err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get("env") === "development" ? err : {};
// render the error page
// TODO: find another way to rendere the error. Without Jade
// res.render('error');
logger.error(err.status + " - " + err.message, err);
if (err.status) res.status(err.status).send(err.message);
else res.status(500).send(err.message);
});
module.exports = app;