-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
127 lines (109 loc) · 4.11 KB
/
server.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
// DECLARING THE DEPENDENCIES--> DEPENDENCIES ARE THE PACKAGES THAT WE NEED TO INSTALL TO MAKE OUR APPLICATION WORK.
const express = require('express')
// declaring mongoose to connect to mongodb
const mongoose = require('mongoose')
// declaring express app
const app = express()
const Product = require('./models/productmodel')
// declaring port
const port = 3000
// DECLARING MIDDLEWARE --> MIDDLEWARE IS A FUNCTION THAT HAS ACCESS TO THE REQUEST AND RESPONSE OBJECTS.
// we are using express middleware to parse the json data coming from the client
app.use(express.json())
// we are using express middleware to parse the urlencoded data coming from the client
app.use(express.urlencoded({ extended: false }))
// DECLARING ROUTES --> ROUTES ARE USED TO PERFORM CRUD OPERATIONS ON THE DATABASE.
app.get('/', (request, response) => {
response.send("Hello World")
})
app.get('/blog', (request, response) => {
response.send("Welcome to SHERLOCK's blog")
})
// GETTING DATA FROM THE DATABASE --> GET REQUEST
// getting all the products from the database.
app.get('/products', async (req, res) => {
try {
// get all the products
const products = await Product.find({});
res.status(200).json(products);
} catch (error) {
res.status(500).json({
"message": error.message
})
}
})
// FETCH A SINGLE PRODUCT FROM THE DATABASE --> GET REQUEST
app.get('/product/:id', async (req, res) => {
try {
// search by ID mentioned in the request parameters.
const { id } = req.params;
const products = await Product.findById(id);
res.status(200).json(products);
} catch (error) {
res.status(500).json({
"message": error.message
})
}
})
// CREATE DATA IN THE DATABASE--> POST REQUEST
// adding products accordinng to the schema , to the database.
app.post('/product', async (req, res) => {
try {
// creating a new product.
const product = await Product.create(req.body);
res.status(200).json(product);
} catch (error) {
// console.log(eror.message);
res.status(500).json({ "message": error.message })
}
})
//UPDATING DATA IN THE DATABASE --> PUT REQUEST
app.put('/products/:id', async (req, res) => {
try {
// search by ID mentioned in the request parameters.
const { id } = req.params;
// update the product with the data from the request body.
const product = await Product.findByIdAndUpdate(id, req.body);
// if product is not found, send 404 and error message.
if (!product) {
return res.status(404).json({
message: `cannot find the product with ID: ${id}`
})
// if product is found, send the updated product data.
const UpdatedProduct = await Product.findById(id);
res.status(200).json(UpdatedProduct);
}
} catch (error) {
// console.log(eror.message)
res.status(500).json({ "message": error.message })
}
})
// DELETING DATA FROM THE DATABASE --> DELETE REQUEST
app.delete('/products/:id', async (req, res) => {
try {
const { id } = req.params;
const product = await Product.findByIdAndDelete(id);
if (!product) {
res.status(404).json({
"message": `cannot find the product with ID: ${id}`
})
}
res.status(200).json({
"message": "Product deleted successfully!"
})
res.status(200).json(product)
} catch (error) {
res.status(500).json({
"message": error.message
})
}
})
// CONNECTING TO THE DATABASE --> MONGODB
mongoose.connect('mongodb://admin:[email protected]:27017,ac-cjbmvrj-shard-00-01.roavua4.mongodb.net:27017,ac-cjbmvrj-shard-00-02.roavua4.mongodb.net:27017/?ssl=true&replicaSet=atlas-cfb1ut-shard-0&authSource=admin&retryWrites=true&w=majority').then(() => {
console.log("Database successfully connected!");
app.listen(port, () => {
console.log(`Server is active on: ${port}`)
})
}).catch((error) => {
console.log(error.message);
})