-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
103 lines (70 loc) · 2.37 KB
/
index.js
File metadata and controls
103 lines (70 loc) · 2.37 KB
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
const express = require('express');
const { MongoClient } = require('mongodb');
const ObjectId = require('mongodb').ObjectId; //for single service
const cors = require('cors')
require('dotenv').config()
const app = express();
const port = process.env.PORT || 5000;
//middleware
app.use(cors())
app.use(express.json())
// firstuser
// DBl20rNXA74lrQPH
// seconduser
// pgDU45En467IBr5W
// third
// TPabCjEaX6bU4ymw
const uri = `mongodb+srv://${process.env.DB_USER}:${process.env.DB_PASS}@cluster0.tie3l.mongodb.net/myFirstDatabase?retryWrites=true&w=majority`;
// console.log(uri);
const client = new MongoClient(uri, { useNewUrlParser: true, useUnifiedTopology: true });
async function server() {
try {
await client.connect();
// console.log('connected to database');
const database = client.db('carMechanic');
const serviceCollection = database.collection('services')
//GET API
app.get('/services', async (req, res) => {
const cursor = serviceCollection.find({});
const services = await cursor.toArray();
res.send(services);
})
// GET Single Service
app.get('/services/:id', async (req, res) => {
const id = req.params.id;
console.log('getting specific serviec', id);
const query = { _id: ObjectId(id) };
const service = await serviceCollection.findOne(query);
res.json(service)
})
//POST API
app.post('/services', async (req, res) => {
const service = req.body;
console.log('hit the api', service);
const result = await serviceCollection.insertOne(service)
console.log(result);
// res.send('hiteed')
res.json(result)
});
//DELETE API
app.delete('/services/:id', async (req, res) => {
const id = req.params.id;
const query = { _id: ObjectId(id) };
const result = await serviceCollection.deleteOne(query)
res.json(result)
})
}
finally {
// await client.close()
}
}
server().catch(console.dir);
app.get('/', (req, res) => {
res.send('Running Car Server');
})
app.get('/hello', (req, res) => {
res.send('hello update here')
})
app.listen(port, () => {
console.log((`Running Server on ${port}`));
})