-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
443 lines (436 loc) · 15.2 KB
/
index.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
// Imports
const express = require("express");
const { MongoClient, ObjectId } = require("mongodb");
require("dotenv").config();
const cors = require("cors");
const cookieParser = require("cookie-parser");
const jwt = require("jsonwebtoken");
// Setup
const app = express();
const port = 4000;
app.listen(port, () => {
console.log(`Server running on port ${port}`);
});
// MongoDB Setup
const uri = `mongodb+srv://${process.env.DB_USER}:${process.env.DB_PASS}@cluster0.nmxrrle.mongodb.net/?retryWrites=true&w=majority`;
const client = new MongoClient(uri);
async function run() {
try {
// Connect the client to the server (optional starting in v4.7)
await client.connect();
// Send a ping to confirm a successful connection
await client.db("admin").command({ ping: 1 });
console.log(
"Pinged your deployment. You successfully connected to MongoDB!"
);
} finally {
// Ensures that the client will close when you finish/error
// await client.close();
}
}
run().catch(console.dir);
const database = client.db("blogit");
const blogCollection = database.collection("blogs");
const commentCollection = database.collection("comments");
const wishlistCollection = database.collection("wishlist");
const userCollection = database.collection("users");
// Utility
function logger(req, res, next) {
console.log(`Routing ${req.method} request through ${req.url}`);
next();
}
// Middlewares
app.use(express.json());
app.use(
cors({
// origin: "https://assignment-11-d1439.web.app",
origin: "http://localhost:5173",
credentials: true,
})
);
app.use(cookieParser());
const middleman = async (req, res, next) => {
const { token } = req.cookies;
//if client does not send token
if (!token) {
return res
.status(401)
.send({ message: "Not Authorized : No Access Token Found" });
}
// Verify token
jwt.verify(token, process.env.ACCESS_SECRET, function (err, decoded) {
if (err) {
return res
.status(401)
.send({ message: "Not Authorized : Invalid Token" });
}
// attach decoded user so that others can get it
req.user = decoded;
next();
});
};
// Routes
const apiBase = "/api/v1";
// Home route
app.get("/", logger, async (req, res) => {
res.send(`Server is running.......`);
});
// JWT route
app.post(`${apiBase}/get-token`, logger, async (req, res) => {
const user = req.body;
console.log(`Cookie request user : ${JSON.stringify(user)}`);
const secret = process.env.ACCESS_SECRET;
const token = jwt.sign(user, secret);
res.cookie("token", token, {
httpOnly: true,
secure: process.env.NODE_ENV === "production",
sameSite: process.env.NODE_ENV === "production" ? "none" : "strict",
}).send({ success: true });
});
app.post(`${apiBase}/delete-token`, logger, async (req, res) => {
const user = req.body;
console.log(`Cookie delete request user : ${JSON.stringify(user)}`);
res.clearCookie("token", {
maxAge: 0,
secure: process.env.NODE_ENV === "production",
sameSite: process.env.NODE_ENV === "production" ? "none" : "strict",
}).send({ success: true });
});
// Blogs route
app.get(`${apiBase}/blogs`, logger, async (req, res) => {
let query = req.query;
try {
const sortFiled = {};
const filter = {};
// Data soring/filtering based on Query
if (query.id) {
let id = query["id"];
query = { _id: new ObjectId(id) };
const result = await blogCollection.findOne(query);
res.send(result);
} else {
if (query.category) {
filter.category = query.category;
}
if (query.owner) {
filter.owner = query.owner;
}
if (query.sort) {
if (query.sort.startsWith("-")) {
sortFiled[query.sort.slice(1)] = -1;
} else {
sortFiled[query.sort] = 1;
}
}
const cursor = blogCollection.find(filter).sort(sortFiled);
const result = await cursor.toArray();
res.send(result);
}
} catch (error) {
console.log(`Error while routing ${req.url} : ${error}`);
}
});
app.post(`${apiBase}/blogs`, middleman, logger, async (req, res) => {
const doc = req.body;
try {
const result = await blogCollection.insertOne(doc);
res.send(`Inserted doc at id ${result.insertedId}`);
} catch (error) {
console.log(`Error while routing ${req.url} : ${error}`);
}
});
app.put(`${apiBase}/blogs`, middleman, logger, async (req, res) => {
const query = req.query;
try {
if (query.id) {
let id = query["id"];
const filter = { _id: new ObjectId(id) };
const options = { upsert: true };
const updatedData = req.body;
const newData = {
$set: {
title: updatedData.title,
image_url: updatedData.image_url,
desc_short: updatedData.desc_short,
desc_long: updatedData.desc_long,
category: updatedData.category,
owner: updatedData.owner,
time_added: updatedData.time_added,
time_updated: updatedData.time_updated,
},
};
const result = await blogCollection.updateOne(
filter,
newData,
options
);
res.send(result);
}
} catch (error) {
console.log(`Error while routing ${req.url} : ${error}`);
}
});
app.delete(`${apiBase}/blogs`, logger, async (req, res) => {
try {
const query = req.query;
if (query.id) {
let id = query["id"];
const filter = { _id: new ObjectId(id) };
const result = await blogCollection.deleteOne(filter);
res.send(result);
}
} catch (error) {
console.log(`Error while routing ${req.url} : ${error}`);
}
});
// Users route
// app.get(`${apiBase}/users`, middleman, logger, async (req, res) => {
// let query = req.query;
// try {
// // Data soring/filtering based on Query
// if (query.email) {
// const queryEmail = query.email;
// const loggedInEmail = req.user.email;
// if (queryEmail !== loggedInEmail) {
// return res.status(403).send({ message: "Forbidden access" });
// } else {
// const result = await userCollection.findOne(query);
// res.send(result);
// }
// }
// // Commenting out access to all user data. Can be enabled for troubleshoot in production
// // else {
// // const cursor = userCollection.find();
// // const result = await cursor.toArray();
// // res.send(result);
// // }
// else {
// res.status(404).send({ message: "Not Found" });
// }
// } catch (error) {
// console.log(`Error while routing ${req.url} : ${error}`);
// }
// });
// app.post(`${apiBase}/users`, logger, async (req, res) => {
// const doc = req.body;
// try {
// const result = await userCollection.insertOne(doc);
// res.send(`Inserted doc at id ${result.insertedId}`);
// } catch (error) {
// console.log(`Error while routing ${req.url} : ${error}`);
// }
// });
// app.put(`${apiBase}/users`, middleman, logger, async (req, res) => {
// const query = req.query;
// try {
// if (query.id) {
// let id = query["id"];
// const filter = { _id: new ObjectId(id) };
// const user = await userCollection.findOne(filter);
// if (user.email) {
// const queryEmail = user.email;
// const loggedInEmail = req.user.email;
// if (queryEmail !== loggedInEmail) {
// return res
// .status(403)
// .send({ message: "Forbidden access" });
// } else {
// const options = { upsert: true };
// const updatedData = req.body;
// const newData = {
// $set: {
// name: updatedData.name,
// image_url: updatedData.image_url,
// email: updatedData.email,
// date_registered: updatedData.date_registered,
// },
// };
// const result = await userCollection.updateOne(
// filter,
// newData,
// options
// );
// res.send(result);
// }
// } else {
// res.status(404).send({
// message: "Not Found",
// });
// }
// } else {
// res.send({ message: "invalid" });
// }
// } catch (error) {
// console.log(`Error while routing ${req.url} : ${error}`);
// }
// });
// app.delete(`${apiBase}/users`, middleman, logger, async (req, res) => {
// try {
// if (query.id) {
// let id = query["id"];
// const filter = { _id: new ObjectId(id) };
// const user = await userCollection.findOne(filter);
// if (user.email) {
// const queryEmail = user.email;
// const loggedInEmail = req.user.email;
// if (queryEmail !== loggedInEmail) {
// return res
// .status(403)
// .send({ message: "Forbidden access" });
// } else {
// const result = await userCollection.deleteOne(filter);
// res.send(result);
// }
// } else {
// res.status(404).send({
// message: "Not Found",
// });
// }
// } else {
// res.send({ message: "invalid" });
// }
// } catch (error) {
// console.log(`Error while routing ${req.url} : ${error}`);
// }
// });
// Comments route
app.get(`${apiBase}/comments`, logger, async (req, res) => {
let query = req.query;
try {
const sortFiled = {};
const filter = {};
// Data soring/filtering based on Query
if (query.id) {
let id = query["id"];
query = { _id: new ObjectId(id) };
const result = await commentCollection.findOne(query);
res.send(result);
} else if (query.owner || query.blog || query.sort) {
if (query.owner) {
filter.owner = query.owner;
}
if (query.blog) {
filter.blog = query.blog;
}
if (query.sort) {
if (query.sort.startsWith("-")) {
sortFiled[query.sort.slice(1)] = -1;
} else {
sortFiled[query.sort] = 1;
}
}
}
const cursor = commentCollection.find(filter).sort(sortFiled);
const result = await cursor.toArray();
res.send(result);
} catch (error) {
console.log(`Error while routing ${req.url} : ${error}`);
}
});
app.post(`${apiBase}/comments`, middleman, logger, async (req, res) => {
const doc = req.body;
try {
const result = await commentCollection.insertOne(doc);
res.send(`Inserted doc at id ${result.insertedId}`);
} catch (error) {
console.log(`Error while routing ${req.url} : ${error}`);
}
});
app.put(`${apiBase}/comments`, middleman, logger, async (req, res) => {
const query = req.query;
try {
if (query.id) {
let id = query["id"];
const filter = { _id: new ObjectId(id) };
const options = { upsert: true };
const updatedData = req.body;
const newData = {
$set: {
blog: updatedData.blog,
owner: updatedData.owner,
desc: updatedData.desc,
},
};
const result = await commentCollection.updateOne(
filter,
newData,
options
);
res.send(result);
}
} catch (error) {
console.log(`Error while routing ${req.url} : ${error}`);
}
});
app.delete(`${apiBase}/comments`, middleman, logger, async (req, res) => {
try {
const query = req.query;
if (query.id) {
let id = query["id"];
const filter = { _id: new ObjectId(id) };
const result = await commentCollection.deleteOne(filter);
res.send(result);
}
} catch (error) {
console.log(`Error while routing ${req.url} : ${error}`);
}
});
// Wishlist route
app.get(`${apiBase}/wishlist`, middleman, logger, async (req, res) => {
let query = req.query;
try {
// Data soring/filtering based on Query
if (query.id) {
let id = query["id"];
query = { _id: new ObjectId(id) };
const result = await wishlistCollection.findOne(query);
res.send(result);
} else if (query.owner) {
const sortFiled = {};
const filter = {};
const queryEmail = query.owner;
const loggedInEmail = req.user.email;
if (queryEmail !== loggedInEmail) {
return res.status(403).send({ message: "Forbidden access" });
} else {
filter.owner = query.owner;
if (query.sort) {
if (query.sort.startsWith("-")) {
sortFiled[query.sort.slice(1)] = -1;
} else {
sortFiled[query.sort] = 1;
}
}
const cursor = wishlistCollection.find(filter).sort(sortFiled);
const result = await cursor.toArray();
res.send(result);
}
} else {
res.status(404).send({ message: "Not Found" });
}
} catch (error) {
console.log(`Error while routing ${req.url} : ${error}`);
}
});
app.post(`${apiBase}/wishlist`, middleman, logger, async (req, res) => {
const doc = req.body;
try {
const result = await wishlistCollection.insertOne(doc);
res.send(`Inserted doc at id ${result.insertedId}`);
} catch (error) {
console.log(`Error while routing ${req.url} : ${error}`);
}
});
app.delete(`${apiBase}/wishlist`, middleman, logger, async (req, res) => {
try {
const query = req.query;
if (query.id) {
let id = query["id"];
const filter = { _id: new ObjectId(id) };
const result = await wishlistCollection.deleteOne(filter);
res.send(result);
}
} catch (error) {
console.log(`Error while routing ${req.url} : ${error}`);
}
});