-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
158 lines (104 loc) · 3.9 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
require('dotenv').config();
const express = require('express');
const { MongoClient, ServerApiVersion, ObjectId } = require('mongodb');
const port = process.env.PORT || 5000;
const app = express();
const cors = require('cors');
// middleware
app.use(cors());
app.use(express.json())
// Routes
const uri = `mongodb+srv://${process.env.DB_USER}:${process.env.DB_PASS}@cluster0.iizb9vt.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();
// 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!");
const toysCollection = client.db('smartKiddo').collection('toys');
app.get('/toys', async (req, res) => {
const result = await toysCollection.find().limit(20).toArray();
res.send(result);
})
app.get('/toysBySearch', async (req, res) => {
const searchTerm = req.query.inputText;
const query = { name: { $regex: ".*" + searchTerm + ".*", $options: "i" } }
const result = await toysCollection.find(query).toArray();
res.send(result);
})
app.get('/searchByCategory', async (req, res) => {
const searchItem = req.query.category;
const query = { category: searchItem }
const result = await toysCollection.find(query).limit(3).toArray();
res.send(result);
})
app.get('/toyDetails/:id', async (req, res) => {
const id = req.params.id;
const query = { _id: new ObjectId(id) }
const result = await toysCollection.findOne(query);
res.send(result);
})
app.get('/searchBySeller', async (req, res) => {
const sellerEmail = req.query.email;
const query = { seller_email: sellerEmail };
const result = await toysCollection.find(query).toArray();
res.send(result);
})
app.get('/sortPriceInDescendingOrder', async(req, res) => {
const sellerEmail = req.query.email;
const query = { seller_email: sellerEmail };
const result = await toysCollection.find(query).sort({ price: -1 }).toArray()
res.send(result);
})
app.get('/sortPriceInAscendingOrder', async(req, res) => {
const sellerEmail = req.query.email;
const query = { seller_email: sellerEmail };
const result = await toysCollection.find(query).sort({ price: 1 }).toArray()
res.send(result);
})
app.post('/addToys', async (req, res) => {
const toyData = req.body;
const result = await toysCollection.insertOne(toyData);
res.send(result);
})
app.patch('/updateToy', async (req, res) => {
const toyDataToUpdate = req.body;
const filter = {_id: new ObjectId(toyDataToUpdate.id)};
const update = {
$set: {
price: toyDataToUpdate.price,
available_quantity:toyDataToUpdate.available_quantity ,
detail_description: toyDataToUpdate.detail_description
}
};
const result = await toysCollection.updateOne(filter, update);
res.send(result);
})
app.delete('/deleteAToy', async(req, res) => {
const id = req.query.id;
console.log(id);
const query ={_id: new ObjectId(id)}
const result = await toysCollection.deleteOne(query);
res.send(result);
})
} finally {
// Ensures that the client will close when you finish/error
// await client.close();
}
}
run().catch(console.dir);
app.get('/', (req, res) => {
res.send("Smart Kiddo Server is Running");
})
app.listen(port, () => {
console.log(`Smart Kiddo Server is running on port ${port}`);
})