-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
161 lines (134 loc) · 5.01 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
const express = require('express');
const cors = require('cors');
const jwt = require('jsonwebtoken');
const app = express();
const port = process.env.PORT || 5000;
const { MongoClient, ServerApiVersion, ObjectId } = require('mongodb');
require('dotenv').config();
// middleware
app.use(cors());
app.use(express.json());
// verify jwt
function verifyJWT(req, res, next) {
const authHeader = req.headers.authorization;
if (!authHeader) {
return res.status(401).send({ message: 'Unauthorized Access' });
}
const token = authHeader.split(' ')[1];
jwt.verify(token, process.env.JWT_ACCESS_TOKEN, (err, decoded) => {
if (err) {
return res.status(403).send({ message: 'Forbidden Access' });
}
req.decoded = decoded;
next();
});
}
const uri = `mongodb+srv://${process.env.DB_USER}:${process.env.DB_PASSWORD}@cluster0.twhxl.mongodb.net/myFirstDatabase?retryWrites=true&w=majority`;
const client = new MongoClient(uri, { useNewUrlParser: true, useUnifiedTopology: true, serverApi: ServerApiVersion.v1 });
async function run() {
try {
await client.connect();
const testimonialsCollection = client.db('posDash').collection('testimonials');
const productsCollection = client.db('posDash').collection('products');
const myItemsCollection = client.db('posDash').collection('userItems');
// auth
app.post('/login', async (req, res) => {
const user = req.body;
const accessToken = jwt.sign(user, process.env.JWT_ACCESS_TOKEN, {
expiresIn: '1d'
});
res.send(accessToken);
})
// testimonials
app.get('/testimonials', async (req, res) => {
const query = {};
const cursor = testimonialsCollection.find(query);
const testimonials = await cursor.toArray();
res.send(testimonials);
});
// single testimonial
app.get('/testimonials/:id', async (req, res) => {
const id = req.params.id;
const query = { _id: ObjectId(id) };
const testimonial = await testimonialsCollection.findOne(query);
res.send(testimonial);
});
// all products
app.get('/inventory', async (req, res) => {
const query = {};
const cursor = productsCollection.find(query);
const products = await cursor.toArray();
res.send(products);
});
// single product
app.get('/inventory/:id', async (req, res) => {
const id = req.params.id;
const query = { _id: ObjectId(id) };
const product = await productsCollection.findOne(query);
res.send(product);
});
// add product
app.post('/add-item', async (req, res) => {
const newItem = req.body;
const result = await productsCollection.insertOne(newItem);
res.send(result);
});
// delete product
app.delete('/inventory/:id', async (req, res) => {
const id = req.params.id;
const query = { _id: ObjectId(id) };
const result = await productsCollection.deleteOne(query);
res.send(result);
});
// update product
app.put('/inventory/:id', async (req, res) => {
const id = req.params.id;
const updateProduct = req?.body;
const filter = { _id: ObjectId(id) };
const options = { upsert: true };
const updateStock = {
$set: {
stock: updateProduct.stock
}
};
const result = await productsCollection.updateOne(filter, updateStock, options)
res.send(result);
});
// add user items
app.post('/add-my-items', async (req, res) => {
const newItem = req.body;
const result = await myItemsCollection.insertOne(newItem);
res.send(result);
});
// display user items
app.get('/my-items', verifyJWT, async (req, res) => {
const decodedEmail = req.decoded.email;
const email = req.query.email;
if (email === decodedEmail) {
const query = { email: email };
const cursor = myItemsCollection.find(query);
const products = await cursor.toArray();
res.send(products);
}
else {
res.status(403).send({ message: 'Forbidden Access' });
}
});
// delete my items
app.delete('/my-items/:id', async (req, res) => {
const id = req.params.id;
const query = { _id: ObjectId(id) };
const result = await myItemsCollection.deleteOne(query);
res.send(result);
});
}
finally {
}
};
run().catch(console.dir);
app.get('/', (req, res) => {
res.send('Running POSDash Server');
});
app.listen(port, () => {
console.log('Listening to port', port);
});