-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
192 lines (173 loc) · 5.51 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
const express = require("express");
const { MongoClient, ServerApiVersion } = require("mongodb");
const ObjectId = require("mongodb").ObjectId;
const jwt = require("jsonwebtoken");
const cors = require("cors");
require("dotenv").config();
const app = express();
const port = process.env.PORT || 5000;
// middleware
app.use(cors());
app.use(express.json());
//auth verify
function verifyJWT(req, res, next) {
const authHeader = req.headers.authorization;
if (!authHeader) {
return res.status(401).send({ message: "Unauthorize Access" });
}
const token = authHeader.split(" ")[1];
jwt.verify(token, process.env.ACCESS_TOKEN_SECRET, (err, decoded) => {
if (err) {
return res.status(403).send({ message: "Forbidden Access" });
}
req.decoded = decoded;
next();
});
}
// mongoDB
const uri = `mongodb+srv://${process.env.DB_USER}:${process.env.DB_PASS}@autovio.8ysza.mongodb.net/myFirstDatabase?retryWrites=true&w=majority`;
const client = new MongoClient(uri, {
useNewUrlParser: true,
useUnifiedTopology: true,
serverApi: ServerApiVersion.v1,
});
// product api
async function run() {
try {
await client.connect();
const productCollection = client.db("autoVio01").collection("products");
const projectCollection = client.db("autoVio01").collection("projects");
//auth
app.post("/login", async (req, res) => {
const user = req.body;
const accessToken = jwt.sign(user, process.env.ACCESS_TOKEN_SECRET, {
expiresIn: "12h",
});
res.send({ accessToken });
});
//Get single project: Send data to client
app.get("/project/:id", async (req, res) => {
const id = req.params.id;
const query = { _id: ObjectId(id) };
const product = await projectCollection.findOne(query);
res.send(product);
});
//Get Project: Send data to client
app.get("/project", async (req, res) => {
const query = {};
const cursor = projectCollection.find(query);
const product = await cursor.toArray();
res.send(product);
});
//Get product: Send data to client
app.get("/product", async (req, res) => {
const query = {};
const cursor = productCollection.find(query);
const product = await cursor.toArray();
res.send(product);
});
//Get product: by search user email Send data to client
app.get("/myproduct", verifyJWT, async (req, res) => {
const decodedEmail = req.decoded.email;
const email = req.query.email;
if (email === decodedEmail) {
const query = { email: email };
const cursor = productCollection.find(query);
const myProduct = await cursor.toArray();
res.send(myProduct);
} else {
res.status(403).send({ message: "Forbidden Access" });
}
});
//Get single product: Send data to client
app.get("/product/:id", async (req, res) => {
const id = req.params.id;
const query = { _id: ObjectId(id) };
const product = await productCollection.findOne(query);
res.send(product);
});
//POST product: receive data from client
app.post("/product", async (req, res) => {
const newProduct = req.body;
const result = await productCollection.insertOne(newProduct);
res.send(result);
});
//update product: receive data from client
app.put("/product/:id", async (req, res) => {
const id = req.params.id;
const updatedProduct = req.body;
const filter = { _id: ObjectId(id) };
const options = { upsert: true };
const updatedDoc = {
$set: {
email: updatedProduct.email,
img: updatedProduct.img,
carouselImg: updatedProduct.carouselImg,
price: updatedProduct.price,
supplier: updatedProduct.supplier,
name: updatedProduct.name,
description: updatedProduct.description,
quantity: updatedProduct.quantity,
},
};
const result = await productCollection.updateOne(
filter,
updatedDoc,
options
);
res.send(result);
});
//replacement product: receive data from client
app.patch("/product/:id", async (req, res) => {
const id = req.params.id;
const updatedProduct = req.body;
const filter = { _id: ObjectId(id) };
const options = { upsert: true };
const updatedDoc = {
$set: {
quantity: updatedProduct.quantity,
},
};
const result = await productCollection.updateOne(
filter,
updatedDoc,
options
);
res.send(result);
});
//Delete product : delete product from database and client
app.delete("/product/:id", async (req, res) => {
const id = req.params.id;
const query = { _id: ObjectId(id) };
const result = await productCollection.deleteOne(query);
res.send(result);
});
} finally {
// await client.close()
}
}
run().catch(console.dir);
// content api
async function content() {
try {
await client.connect();
const productCollection = client.db("autoVio01").collection("content");
//Get product: Send data to client
app.get("/content", async (req, res) => {
const query = {};
const cursor = productCollection.find(query);
const product = await cursor.toArray();
res.send(product);
});
} finally {
// await client.close()
}
}
content().catch(console.dir);
// root app
app.get("/", (req, res) => {
res.send("Running Auto-vio Server for heroku");
});
app.listen(port, () => {
console.log(`Listing AutoVio - ${port}`);
});