-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
119 lines (107 loc) · 3.41 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
const { clearImage } = require("./utils/file");
const path = require("path");
const fs = require("fs");
const mongoose = require("mongoose");
const express = require("express");
const bodyParser = require("body-parser");
const multer = require("multer");
const graphqlHttp = require("express-graphql");
const gqSchema = require("./graphql/schema");
const gqResolver = require("./graphql/resolver");
const app = express();
const helmet = require("helmet");
const compression = require("compression");
const morgan = require("morgan");
const auth = require("./middleware/auth");
require("custom-env").env("staging");
const fileStorage = multer.diskStorage({
destination: (req, file, cb) => {
cb(null, "images");
},
filename: (req, file, cb) => {
cb(null, new Date().toISOString() + "-" + file.originalname);
},
});
const fileFilter = (req, file, cb) => {
if (
file.mimetype === "image/png" ||
file.mimetype === "image/jpg" ||
file.mimetype === "image/jpeg"
) {
cb(null, true);
}
cb(null, false);
};
app.use(bodyParser.json()); //this will make incoming data be parsed to json .
app.use(
multer({ storage: fileStorage, fileFilter: fileFilter }).single("image")
);
const accesLogStream = fs.createWriteStream(
path.join(__dirname, "access.log"),
{ flags: "a" } //adds log statement continuosly to the file
);
app.use("/images", express.static(path.join(__dirname, "images")));
app.use(helmet());
app.use(compression());
app.use(morgan("combined", {stream:accesLogStream}));
app.use((req, res, next) => {
// here i want to add headers so i can allow requests from different servers to be allowed in the app
res.setHeader("Access-Control-Allow-Origin", "*"); // here we allow specific origins to allow our data, the * makes evreyone able to acces it
res.setHeader(
"Access-Control-Allow-Methods",
"OPTIONS, DELETE, GET, POST, PUT"
); // here we specify which methods are allowed from the request
res.setHeader("Access-Control-Allow-Headers", "Content-Type, Authorization"); //specifies which header types are allowed
if (req.method === "OPTIONS") {
return res.sendStatus(200);
}
next();
});
app.use(auth); //wil return is auth, which can be used for authorization in graphql
app.put("/post-image", (req, res, next) => {
if (!req.isAuth) {
throw new Error("Not authorized!");
}
if (!req.file) {
return res.status(200).json({ message: "No file provided!" });
}
if (req.body.oldPath) {
clearImage(req.body.oldPath);
}
return res
.status(200)
.json({ message: "File stored succesfully", filePath: req.file.path });
});
app.use(
"/graphql",
graphqlHttp({
schema: gqSchema,
rootValue: gqResolver,
graphiql: true,
customFormatErrorFn(err) {
if (!err.originalError) {
return err;
}
const data = err.originalError.data;
const message = err.message || "An error occured";
const code = err.originalError.code || 500;
return { message, data, status: code };
},
})
);
app.use((error, req, res, next) => {
console.log(error);
const status = error.statusCode || 500;
const message = error.message; //can be set globally in script by setting error.message
const data = error.data;
res.status(status).json({ message, data });
});
mongoose
.connect(process.env.DB_HOST, {
useNewUrlParser: true,
useUnifiedTopology: true,
})
.then(() => {
app.listen(8080);
})
.catch((err) => console.log(err));