-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
287 lines (213 loc) · 8.64 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
const express = require('express');
const app = express();
const cors = require('cors');
const jwt = require('jsonwebtoken');
require('dotenv').config();
const { MongoClient, ServerApiVersion, ObjectId } = require('mongodb');
const port = process.env.PORT || 5000;
// middleware
app.use(cors());
app.use(express.json());
console.log(process.env.DB_USER);
console.log(process.env.DB_PASS)
const uri = `mongodb+srv://${process.env.DB_USER}:${process.env.DB_PASS}@cluster0.4d9dszy.mongodb.net/?retryWrites=true&w=majority`;
// Create a MongoClient with a MongoClientOptions object to set the Stable API version
const client = new MongoClient(uri, {
serverApi: {
version: ServerApiVersion.v1,
strict: true,
deprecationErrors: true,
}
});
async function run() {
try {
// Connect the client to the server (optional starting in v4.7)
await client.connect();
const userCollection = client.db('bistroDb').collection("users");
const menuCollection = client.db('bistroDb').collection("menu");
const cartsCollection = client.db('bistroDb').collection("carts");
const paymentCollection = client.db("bistroDb").collection("payments");
// Jwt related API
app.post('/jwt', async (req, res) => {
const user = req.body;
const token = jwt.sign(user, process.env.ACCESS_TOKEN_SECRET, { expiresIn: '1h' });
res.send({ token });
})
// Verify middlewares
const verifyToken = (req, res, next) => {
console.log('Inside verify token', req.headers.authorization);
if (!req.headers.authorization) {
return res.status(401).send({ message: 'Unauthorized access' })
}
const token = req.headers.authorization.split(' ')[1];
jwt.verify(token, process.env.ACCESS_TOKEN_SECRET, (err, decoded) => {
if (err) {
return res.status(401).send({ message: 'Unauthorized access' })
}
req.decoded = decoded;
next();
})
}
// Use verify admin after verify token
const verifyAdmin = async (req, res, next) => {
const email = req.decoded.email;
const query = { email: email };
const user = await userCollection.findOne(query);
const isAdmin = user?.role === 'admin';
if (!isAdmin) {
return res.status(403).send({ message: 'forbidden access' });
}
next();
}
// Users related Api
app.get('/users', verifyToken, verifyAdmin, async (req, res) => {
const result = await userCollection.find().toArray();
res.send(result);
})
app.get('/users/admin/:email', verifyToken, async (req, res) => {
const email = req.params.email;
if (email !== req.decoded.email) {
return res.status(403).send({ message: 'Forbidden access' })
}
const query = { email: email };
const user = await userCollection.findOne(query);
let admin = false;
if (user) {
admin = user?.role === 'admin';
}
res.send({ admin });
})
app.post('/users', async (req, res) => {
const user = req.body;
// Insert email if user doesn't exist
const query = { email: user.email };
const existingUser = await userCollection.findOne(query);
if (existingUser) {
return res.send({ message: 'User already exists', insertedIs: null })
}
const result = await userCollection.insertOne(user);
res.send(result);
})
app.patch('/users/admin/:id', verifyToken, verifyAdmin, async (req, res) => {
const id = req.params.id;
const filter = { _id: new ObjectId(id) };
const updatedDoc = {
$set: {
role: 'admin'
}
}
const result = await userCollection.updateOne(filter, updatedDoc);
res.send(result);
})
app.delete('/users/:id', verifyToken, verifyAdmin, async (req, res) => {
const id = req.params.id;
const query = { _id: new ObjectId(id) }
const result = await userCollection.deleteOne(query);
res.send(result);
})
// Menu related api
app.get('/menu', async (req, res) => {
const result = await menuCollection.find().toArray();
res.send(result);
})
app.get('/menu/:id', async (req, res) => {
const id = req.params.id;
const query = { _id: new ObjectId(id) }
const result = await menuCollection.findOne(query);
res.send(result);
})
app.post('/menu', verifyToken, verifyAdmin, async (req, res) => {
const item = req.body;
const result = await menuCollection.insertOne(item);
res.send(result);
})
app.patch('/menu/:id', async (req, res) => {
const item = req.body;
const id = req.params.id;
const filter = { _id: new ObjectId(id) };
const updatedDoc = {
$set: {
name: item.name,
category: item.category,
price: item.price,
recipe: item.recipe,
image: item.image,
}
}
const result = await menuCollection.updateOne(filter, updatedDoc);
res.send(result);
})
app.delete('/menu/:id', verifyToken, verifyAdmin, async (req, res) => {
const id = req.params.id;
const query = { _id: new ObjectId(id) };
const result = await menuCollection.deleteOne(query);
res.send(result);
})
// carts collections
app.post('/carts', async (req, res) => {
const cartItem = req.body;
const result = await cartsCollection.insertOne(cartItem);
res.send(result);
})
app.get('/carts', async (req, res) => {
const email = req.query.email;
const query = { email: email };
const result = await cartsCollection.find(query).toArray();
res.send(result);
})
app.delete('/carts/:id', async (req, res) => {
const id = req.params.id;
const query = { _id: new ObjectId(id) };
const result = await cartsCollection.deleteOne(query);
res.send(result);
})
// payment intent
app.post('/create-payment-intent', async (req, res) => {
const { price } = req.body;
const amount = parseInt(price * 100);
console.log(amount, 'amount inside the intent')
const paymentIntent = await stripe.paymentIntents.create({
amount: amount,
currency: 'usd',
payment_method_types: ['card']
});
res.send({
clientSecret: paymentIntent.client_secret
})
});
app.get('/payments/:email', verifyToken, async (req, res) => {
const query = { email: req.params.email }
if (req.params.email !== req.decoded.email) {
return res.status(403).send({ message: 'forbidden access' });
}
const result = await paymentCollection.find(query).toArray();
res.send(result);
})
app.post('/payments', async (req, res) => {
const payment = req.body;
const paymentResult = await paymentCollection.insertOne(payment);
// carefully delete each item from the cart
console.log('payment info', payment);
const query = {
_id: {
$in: payment.cartIds.map(id => new ObjectId(id))
}
};
const deleteResult = await cartCollection.deleteMany(query);
res.send({ paymentResult, deleteResult });
})
// 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);
app.get('/', (req, res) => {
res.send('Bistro Boss Restaurant is Running');
})
app.listen(port, () => {
console.log(`Bistro Boss Restaurant is running on port ${port}`);
})