-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
157 lines (130 loc) · 5.08 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
const express = require('express');
const cors = require('cors');
const jwt = require('jsonwebtoken');
const { MongoClient, ServerApiVersion, ObjectId } = require('mongodb');
require('dotenv').config()
const app = express();
const port = process.env.PORT || 5000;
// middleware
app.use(cors());
app.use(express.json());
const uri = `mongodb+srv://${process.env.DB_USER}:${process.env.DB_PASS}@cluster0.swu9d.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,
}
});
const verifyJWT = (req, res, next) => {
const authorization = req.headers.authorization;
if (!authorization) {
return res.status(401).send({ error: true, message: 'unauthorized access' });
}
const token = authorization.split(' ')[1];
jwt.verify(token, process.env.ACCESS_TOKEN_SECRET, (err, decoded) => {
if (err) {
return res.status(401).send({ error: true, message: 'unauthorized access' })
}
req.decoded = decoded;
next();
})
}
async function run() {
try {
// Connect the client to the server (optional starting in v4.7)
await client.connect();
const serviceCollection = client.db('carDoctor').collection('services');
const bookingCollection = client.db('carDoctor').collection('bookings');
// jwt
app.post('/jwt', (req, res) => {
const user = req.body;
console.log(user);
const token = jwt.sign(user, process.env.ACCESS_TOKEN_SECRET, { expiresIn: '1h' });
console.log(token);
res.send({ token });
})
// services routes
app.get('/services', async (req, res) => {
const sort = req.query.sort;
const search = req.query.search;
console.log(search);
// const query = {};
// const query = { price: {$gte: 50, $lte:150}};
// db.InspirationalWomen.find({first_name: { $regex: /Harriet/i} })
const query = {title: { $regex: search, $options: 'i'}}
const options = {
// sort matched documents in descending order by rating
sort: {
"price": sort === 'asc' ? 1 : -1
}
};
const cursor = serviceCollection.find(query, options);
const result = await cursor.toArray();
res.send(result);
})
app.get('/services/:id', async (req, res) => {
const id = req.params.id;
const query = { _id: new ObjectId(id) }
const options = {
// Include only the `title` and `imdb` fields in the returned document
projection: { title: 1, price: 1, service_id: 1, img: 1 },
};
const result = await serviceCollection.findOne(query, options);
res.send(result);
})
// bookings routes
app.get('/bookings', verifyJWT, async (req, res) => {
const decoded = req.decoded;
console.log('came back after verify', decoded)
if (decoded.email !== req.query.email) {
return res.status(403).send({ error: 1, message: 'forbidden access' })
}
let query = {};
if (req.query?.email) {
query = { email: req.query.email }
}
const result = await bookingCollection.find(query).toArray();
res.send(result);
})
app.post('/bookings', async (req, res) => {
const booking = req.body;
console.log(booking);
const result = await bookingCollection.insertOne(booking);
res.send(result);
});
app.patch('/bookings/:id', async (req, res) => {
const id = req.params.id;
const filter = { _id: new ObjectId(id) };
const updatedBooking = req.body;
console.log(updatedBooking);
const updateDoc = {
$set: {
status: updatedBooking.status
},
};
const result = await bookingCollection.updateOne(filter, updateDoc);
res.send(result);
})
app.delete('/bookings/:id', async (req, res) => {
const id = req.params.id;
const query = { _id: new ObjectId(id) }
const result = await bookingCollection.deleteOne(query);
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.get('/', (req, res) => {
res.send('doctor is running')
})
app.listen(port, () => {
console.log(`Car Doctor Server is running on port ${port}`)
})