-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
148 lines (130 loc) · 3.65 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
const express = require("express");
const path = require("path");
const bodyParser = require("body-parser");
const dotenv = require("dotenv");
const mongoose = require("mongoose");
const multer = require("multer");
const { v4: uuid4 } = require("uuid");
const { graphqlHTTP } = require("express-graphql");
const graphqlSchema = require("./graphql/schema");
const graphqlResolver = require("./graphql/resolvers");
const auth = require("./middlewares/auth");
const Utils = require("./utils/helper");
dotenv.config();
// const feedRoutes = require("./routes/feed");
// const authRoutes = require("./routes/auth");
const app = express();
const fileStorage = multer.diskStorage({
destination: (req, file, cb) => {
cb(null, "images");
},
filename: (req, file, cb) => {
cb(null, uuid4() + "-" + file.originalname);
},
});
const fileFilter = (req, file, cb) => {
if (
file.mimetype === "image/png" ||
file.mimetype === "image/jpg" ||
file.mimetype === "image/jpeg"
) {
cb(null, true);
} else {
cb(null, false);
}
};
//handle CORS issue
app.use((req, res, next) => {
res.setHeader("Access-Control-Allow-Origin", "*"); // wildcard(*) means allow from all origins
res.setHeader(
"Access-Control-Allow-Methods",
"GET, POST, PUT, PATCH, DELETE"
); //allows different origins to access only these methods
res.setHeader("Access-Control-Allow-Headers", "Content-Type, Authorization"); //allows different origins to set Content-Type and Authorization
//Graphql only takes GET and POST requests. Browser will always make automatic OPTIONS request before
// making the intended HTTP request(GET,POST, PATCH, DELETE , etc). For Graphql , we will get method not allowed error for
// OPTIONS request, if following code is not added.
if (req.method === "OPTIONS") {
return res.sendStatus(200);
}
next();
});
app.use(bodyParser.json());
app.use("/images", express.static(path.join(__dirname, "images")));
app.use(
multer({
storage: fileStorage,
fileFilter,
}).single("image")
);
/*
app.use("/feed", feedRoutes);
app.use("/auth", authRoutes);
*/
app.use(auth);
app.put("/post-image", (req, res, next) => {
if(!req.isAuth){
throw new Error("Not Authenticated.")
}
if (!req.file) {
return res.status(200).json({
message: "No file provided.",
});
}
if (req.body.oldPath) {
Utils.clearImage(req.body.oldPath);
}
console.log(req.file.path)
return res.status(201).json({
message: "File Uploaded.",
filePath: req.file.path,
});
});
app.use(
"/graphql",
graphqlHTTP({
schema: graphqlSchema,
rootValue: graphqlResolver,
graphiql: true,
customFormatErrorFn(err) {
if (!err.originalError) {
return err;
}
console.log(err.originalError);
const data = err.originalError.data;
const code = err.originalError.code || 500;
const message = err.originalError.message || "An error occurred";
return {
status: code,
message,
data,
};
},
})
);
app.use((error, req, res, next) => {
console.log(error);
const status = error.statusCode || 500;
let err = {
message: error.message,
};
if (error.data) {
err.data = error.data;
}
res.status(status).json(err);
});
mongoose
.connect(process.env.MONGODB_URL)
.then((result) => {
console.log("Database Connected");
app.listen(process.env.PORT);
console.log(`Server started at port ${process.env.PORT}`);
/*
const server = app.listen(process.env.PORT);
const io = require("./socket").init(server);
io.on("connection", (socket) => {
console.log("Client Connected");
});
*/
})
.catch((err) => console.log(err));