-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
65 lines (51 loc) · 1.93 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
import createError from "http-errors";
import express from "express";
import path from "path";
import cookieParser from "cookie-parser";
import cors from "cors";
import middleware from "./middleware.js";
import usersRouter from "./routes/users.js";
import documentsRouter from "./routes/documents.js";
import assignmentsRouter from "./routes/assignments.js";
import assignmentAnswersRouter from "./routes/assignmentAnswers.js";
import schoolsRouter from "./routes/schools.js";
import groupsRouter from "./routes/groups.js";
import exceptionsRouter from "./routes/exceptions.js";
import { fileURLToPath } from "url";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
// Prisma
import { PrismaClient } from "@prisma/client";
export const prisma = new PrismaClient();
// Fix bigint issue
BigInt.prototype.toJSON = function () {
return this.toString(); // Simply converts bigints to strings
};
var app = express();
app.use(cors()); // Enable CORS
app.use('/public', exceptionsRouter);
app.use(middleware.verifyToken); // Apply the middleware to all routes
app.use(middleware.verifyUserExists);
app.use(middleware.verifyUserSettings);
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, "public")));
app.use("/users", usersRouter);
app.use("/documents", documentsRouter);
app.use("/assignments", assignmentsRouter);
app.use("/assignmentAnswers", assignmentAnswersRouter);
app.use("/schools", schoolsRouter);
app.use("/groups", groupsRouter);
// catch 404 and forward to error handler
app.use(function (req, res, next) {
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 : {};
res.status(err.status || 500);
});
export default app;