-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
167 lines (139 loc) · 4.72 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
const express = require('express')
const app = express()
const cors = require('cors');
require('dotenv').config();
const { MongoClient } = require('mongodb');
const ObjectId = require("mongodb").ObjectId;
const port = process.env.PORT || 5000;
app.use(cors());
app.use(express.json());
const uri = `mongodb+srv://${process.env.DB_USER}:${process.env.DB_PASS}@cluster0.9v9bb.mongodb.net/myFirstDatabase?retryWrites=true&w=majority`;
const client = new MongoClient(uri, { useNewUrlParser: true, useUnifiedTopology: true });
// console.log(uri);
async function run(){
try{
await client.connect();
const database = client.db("paradise");
const productsCollection = database.collection("products");
const myPurchaseCollection = database.collection('myPurchase');
const reviewsCollection = database.collection('reviews');
const usersCollection = database.collection('users');
app.post('/users', async(req, res)=>{
const user = req.body;
const result = await usersCollection.insertOne(user);
console.log(result);
res.json(result);
});
//MakeAdmin API
app.put('/users/admin', async(req, res)=>{
const user = req.body;
const filter = {email: user.email};
const updateDoc = { $set:{role: 'admin'}};
const result = await usersCollection.updateOne(filter, updateDoc);
res.json(result);
})
//Chechk admin API
app.get('/users/:email', async(req, res)=>{
const email = req.params.email;
const query = { email: email };
const user = await usersCollection.findOne(query);
let isAdmin = false;
if(user?.role === 'admin'){
isAdmin = true;
}
res.json({admin: isAdmin});
})
app.get("/products", async (req, res) => {
// console.log(req.query);
const cursor = productsCollection.find({});
const products = await cursor.toArray();
res.send(products);
});
//get products by id
app.get("/products/:id", async (req, res) => {
const id = req.params.id;
const query = { _id: ObjectId(id) };
const product = await productsCollection.findOne(query);
res.send(product);
});
// Add myPurchase API
app.post("/myPurchase", async (req, res) => {
const myPurchase = req.body;
const result = await myPurchaseCollection.insertOne(myPurchase);
res.json(result);
});
// Add products API
app.post("/products", async (req, res) => {
const product = req.body;
const result = await productsCollection.insertOne(product);
res.json(result);
});
//GET all orders
app.get("/orders", async (req, res) => {
// console.log(req.query);
const cursor = myPurchaseCollection.find({});
const orders = await cursor.toArray();
res.send(orders);
});
//GET USER orders
app.get('/myPurchase/:email', async(req, res)=>{
const email = req.params.email;
const query = {email: email};
const result = await myPurchaseCollection.find(query).toArray();
res.send(result);
});
//DELETE order API
app.delete("/myPurchase/:id", async (req, res) => {
const id = req.params.id;
const query = { _id: ObjectId(id) };
const result = await productsCollection.deleteOne(query);
// console.log("deleting user with id ", result);
res.json(result);
});
//DELETE product API
app.delete("/products/:id", async (req, res) => {
const id = req.params.id;
const query = { _id: ObjectId(id) };
const result = await productsCollection.deleteOne(query);
// console.log("deleting user with id ", result);
res.json(result);
});
// Add review API
app.post("/addReview", async (req, res) => {
const myOrder = req.body;
const result = await reviewsCollection.insertOne(myOrder);
res.json(result);
});
app.get("/reviews", async (req, res) => {
// console.log(req.query);
const cursor = reviewsCollection.find({});
const reviews = await cursor.toArray();
res.send(reviews);
});
//UPDATE API
app.put("/orders/:id", async(req, res)=>{
const id = req.params.id;
const updatedUser = req.body;
const filter = {_id: ObjectId(id)};
const options = { upsert: true };
const updateDoc = {
$set: {
status: updatedUser.status
},
};
const result = await myPurchaseCollection.updateOne(filter,updateDoc,options)
// console.log('updating user', req);
res.json(result);
})
}
finally{
// await client.close();
}
}
run().catch(console.dir);
app.get('/', (req, res) => {
res.send('Hello Paradise!')
})
app.listen(port, () => {
console.log(` listening at ${port}`)
})