-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
138 lines (115 loc) · 4.12 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
const express =require('express');
require('dotenv').config()
const app = express();
const { MongoClient, ServerApiVersion, ObjectId } = require('mongodb');
const port = process.env.PORT || 5000;
const cors = require('cors');
// Middleware
app.use(cors());
app.use(express.json());
app.get("/", (req,res)=>{
res.send("Server is Running");
console.log("Hello world")
})
const uri = `mongodb+srv://${process.env.DB_NAME}:${process.env.DB_PASS}@cluster0.yx2s4d1.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 {
// await client.connect();
const carCollection = client.db("carCollection").collection("carData");
const addCarCollection =client.db("carCollection").collection("addCarData");
app.get('/collections', async(req,res)=>{
const mongoCursor = carCollection.find();
const result= await mongoCursor.toArray();
res.send(result);
// console.log(result)
})
app.get('/collections/:id', async(req,res)=>{
const id =req.params.id;
const findSingleData ={_id: new ObjectId(id)}
const options ={
projections:{toy_name:1,subcategory:1,seller:1,price:1,description:1,available_quantity:1,rating:1,subcategory_id:1,picture:1},
}
const findResult = await carCollection.findOne(findSingleData,options);
res.send(findResult);
})
// get database from post
app.get('/new-collections',async(req,res)=>{
const cursor = addCarCollection.find()
const result = await cursor.toArray();
res.send(result);
})
// Get email from get method
app.get('/my-collections', async(req, res) => {
const email = req.query.email;
const sortingOrder = req.query.sortOrder;
console.log('Email parameter:', req.query.email);
console.log(req.query.email);
const query = { email: email };
let cursor = addCarCollection.find(query);
// Sort in ascending order by price
if (sortingOrder === 'asc') {
cursor = cursor.sort({ price: 1 });
}
// Sort in descending order by price
else if (sortingOrder === 'desc') {
cursor = cursor.sort({ price: -1 });
}
const result = await cursor.toArray();
res.send(result);
});
// Get email from get method
app.get('/my-collections/:id', async(req, res) => {
const id = req.params.id;
const query = {_id : new ObjectId(id)}
const result = await addCarCollection.findOne(query);
res.send(result);
});
// Update method
app.put('/my-collections/:id', async(req,res)=>{
const id = req.params.id;
const filterData = {_id: new ObjectId(id)};
const options = { upsert: true}
const updateData = req.body;
const updateDataFromDelete= {
$set:{
available_quantity:updateData.available_quantity,
price:updateData.price,
description:updateData.description,
}
}
const result = await addCarCollection.updateOne(filterData,updateDataFromDelete,options);
res.send(result)
})
// Detele Method
app.delete('/my-collections/:id', async(req,res)=>{
const id =req.params.id;
console.log(id)
const query = {_id: new ObjectId(id)}
const result = await addCarCollection.deleteOne(query);
res.send(result)
})
app.post('/new-collections', async(req,res)=>{
const newCarData = req.body;
const result = await addCarCollection.insertOne(newCarData);
res.send(result);
})
// 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!");
} finally {
// Ensures that the client will close when you finish/error
// await client.close();
}
}
run().catch(console.dir);
app.listen(port,()=>{
console.log("apps running ")
})