-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
142 lines (129 loc) · 4 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
const { MongoClient, ServerApiVersion, ObjectId } = require("mongodb");
const express = require("express");
const cors = require("cors");
const jwt = require("jsonwebtoken");
const app = express();
require("dotenv").config();
const port = process.env.PORT || 5000;
// middleware
app.use(cors());
app.use(express.json());
const 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.SECRET_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_PASS}@cluster0.hvm8i.mongodb.net/myFirstDatabase?retryWrites=true&w=majority`;
const client = new MongoClient(uri, {
useNewUrlParser: true,
useUnifiedTopology: true,
serverApi: ServerApiVersion.v1,
});
const itemCollection = client.db("techWorld").collection("items");
async function run() {
try {
await client.connect();
app.post("/login", async (req, res) => {
const user = req.body;
const accessToken = jwt.sign(user, process.env.SECRET_TOKEN, {
expiresIn: "7d",
});
res.send({ accessToken });
});
// GET ALL ITEM
app.get("/item", async (req, res) => {
const page = parseInt(req.query.page);
const count = parseInt(req.query.count);
const cursor = itemCollection.find();
let items;
if (page || count) {
items = await cursor
.skip(page * count)
.limit(count)
.toArray();
} else {
items = await cursor.toArray();
}
res.send(items);
});
// GET API for find by email
app.get("/myItem", verifyJWT, async (req, res) => {
const decodedEmail = req.decoded.email;
const email = req.query.email;
if (decodedEmail === email) {
const cursor = itemCollection.find({ email });
const result = await cursor.toArray();
res.send(result);
} else {
res.status(403).send({ message: "Forbidden Access" });
}
});
// GET ITEM BY ID
app.get("/item/:id", async (req, res) => {
const id = req.params.id;
const item = await itemCollection.findOne({ _id: ObjectId(id) });
res.send(item);
});
// POST
app.post("/item", async (req, res) => {
const newItem = req.body;
await itemCollection.insertOne(newItem);
res.send({
success: true,
message: `${newItem.name} Successfully Added`,
});
});
// UPDATE Item Quantity
app.put("/item/:id", async (req, res) => {
const id = req.params.id;
const updatedQuantity = req.body?.newQuantity;
const options = { upsert: true };
const updateDoc = {
$set: {
quantity: updatedQuantity,
},
};
const result = await itemCollection.updateOne(
{ _id: ObjectId(id) },
updateDoc,
options
);
if (!result.modifiedCount) {
return res.send({ success: false, error: "Something Was wrong" });
}
res.send({ success: true, message: "Successfully Delivered the item" });
});
// DELETE
app.delete("/item/:id", async (req, res) => {
const id = req.params.id;
const result = await itemCollection.deleteOne({ _id: ObjectId(id) });
if (!result.deletedCount) {
return res.send({ success: false, error: "Something Was wrong" });
}
res.send({ success: true, message: "Successfully Delete the item" });
});
// get api for count the item
app.get("/itemCount", async (req, res) => {
const itemCount = await itemCollection.estimatedDocumentCount();
res.send({ itemCount });
});
} catch (error) {
console.log(error);
}
}
run();
app.get("/", (req, res) => {
res.send("Server is Running");
});
app.listen(port, () => {
console.log("Listening Port", port);
});