2020-06-08 21:00:45 +00:00
|
|
|
const createError = require("http-errors");
|
|
|
|
const express = require("express");
|
2020-01-06 21:01:40 +00:00
|
|
|
|
2020-06-08 21:00:45 +00:00
|
|
|
const cors = require("cors");
|
2020-01-08 07:17:10 +00:00
|
|
|
|
2020-06-08 21:00:45 +00:00
|
|
|
const path = require("path");
|
|
|
|
const cookieParser = require("cookie-parser");
|
|
|
|
const logger = require("morgan");
|
2020-01-06 21:01:40 +00:00
|
|
|
|
2020-06-08 21:00:45 +00:00
|
|
|
const db = require("./data/db");
|
2020-01-08 05:46:24 +00:00
|
|
|
|
2020-06-08 21:00:45 +00:00
|
|
|
const dotenv = require("dotenv");
|
2020-01-07 21:43:20 +00:00
|
|
|
dotenv.config();
|
|
|
|
|
2020-06-08 21:00:45 +00:00
|
|
|
const indexRouter = require("./routes/index");
|
|
|
|
const usersRouter = require("./routes/users");
|
|
|
|
const authRouter = require("./routes/auth");
|
|
|
|
const apiRouter = require("./routes/api");
|
2020-01-06 21:01:40 +00:00
|
|
|
|
2020-01-07 21:30:19 +00:00
|
|
|
const app = express();
|
|
|
|
|
2020-01-18 05:18:50 +00:00
|
|
|
const allowedOrigin = process.env.REACT_ADDRESS;
|
2020-01-07 21:30:19 +00:00
|
|
|
const corsOptions = {
|
2020-01-18 05:18:50 +00:00
|
|
|
origin: allowedOrigin,
|
2020-01-18 09:25:52 +00:00
|
|
|
credentials: true,
|
2020-06-08 21:00:45 +00:00
|
|
|
methods: "GET,PUT,POST,DELETE",
|
|
|
|
};
|
2020-01-07 21:30:19 +00:00
|
|
|
|
2020-06-08 21:00:45 +00:00
|
|
|
app.options("*", cors(corsOptions));
|
|
|
|
app.use("*", cors(corsOptions));
|
2020-01-06 21:01:40 +00:00
|
|
|
|
2020-01-08 21:25:28 +00:00
|
|
|
// disable logging for tests
|
2020-06-08 21:00:45 +00:00
|
|
|
if (process.env.NODE_ENV !== "test") app.use(logger("dev"));
|
2020-01-08 07:17:10 +00:00
|
|
|
|
2020-01-06 21:01:40 +00:00
|
|
|
app.use(express.json());
|
|
|
|
app.use(express.urlencoded({ extended: false }));
|
|
|
|
app.use(cookieParser());
|
2020-06-08 21:00:45 +00:00
|
|
|
app.use(express.static(path.join(__dirname, "public")));
|
2020-01-06 21:01:40 +00:00
|
|
|
|
2020-06-08 21:00:45 +00:00
|
|
|
app.use("/", indexRouter);
|
|
|
|
app.use("/users", usersRouter);
|
|
|
|
app.use("/auth", authRouter);
|
2020-01-10 01:44:58 +00:00
|
|
|
// @auth
|
2020-06-08 21:00:45 +00:00
|
|
|
app.use("/api/v1", apiRouter);
|
2020-01-06 21:01:40 +00:00
|
|
|
|
|
|
|
// catch 404 and forward to error handler
|
2020-06-08 21:00:45 +00:00
|
|
|
app.use(function (req, res, next) {
|
2020-01-06 21:01:40 +00:00
|
|
|
next(createError(404));
|
|
|
|
});
|
|
|
|
|
|
|
|
// error handler
|
2020-06-08 21:00:45 +00:00
|
|
|
app.use(function (err, req, res, next) {
|
2020-01-06 21:01:40 +00:00
|
|
|
// set locals, only providing error in development
|
|
|
|
res.locals.message = err.message;
|
2020-06-08 21:00:45 +00:00
|
|
|
res.locals.error = req.app.get("env") === "development" ? err : {};
|
2020-01-06 21:01:40 +00:00
|
|
|
|
|
|
|
// render the error page
|
|
|
|
res.status(err.status || 500);
|
2020-06-08 21:00:45 +00:00
|
|
|
res.send("error");
|
2020-01-06 21:01:40 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = app;
|