-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
170 lines (131 loc) · 5.14 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
159
160
161
162
163
164
165
166
167
168
var SERVER_NAME = 'Can-api'
var PORT = 8000;
var HOST = '127.0.0.1';
var getcounter = 0;
var postcounter = 0;
var restify = require('restify')
// Get a persistence engine for the products
, productsSave = require('save')('products')
// Create the restify server
, server = restify.createServer({ name: SERVER_NAME})
server.listen(PORT, HOST, function () {
console.log('Server %s listening at %s', server.name, server.url)
console.log('Resources:')
console.log(' /products')
console.log(' /products/:id')
console.log("----- Requests -------------------------");
console.log("http://127.0.0.1:8000/products METHOD: Get");
console.log("http://127.0.0.1:8000/products METHOD: POST");
console.log("http://127.0.0.1:8000/products METHOD: Delete");
})
server
// Allow the use of POST
.use(restify.fullResponse())
// Maps req.body to req.params so there is no switching between them
.use(restify.bodyParser())
// Get all products in the system
server.get('/products', function (req, res, next) {
// Find every entity within the given collection
productsSave.find({}, function (error, products) {
// Return all of the products in the system
res.send(products)
getcounter+=1;
console.log("PostRequestNumber:"+postcounter +" GetRequestNumber:"+getcounter);
})
})
// Get a single product by their product id
server.get('/products/:id', function (req, res, next) {
// Find a single product by their id within save
productsSave.findOne({ _id: req.params.id }, function (error, product) {
// If there are any errors, pass them to next in the correct format
if (error) return next(new restify.InvalidArgumentError(JSON.stringify(error.errors)))
if (product) {
// Send the product if no issues
res.send(product)
getcounter+=1;
console.log("PostRequestNumber:"+postcounter +" GetRequestNumber:"+getcounter);
} else {
// Send 404 header if the product doesn't exist
res.send(404)
}
})
})
// Create a new product
server.post('/products', function (req, res, next) {
// Make sure name is defined
if (req.params.product === undefined ) {
// If there are any errors, pass them to next in the correct format
return next(new restify.InvalidArgumentError('product must be supplied'))
}
if (req.params.price === undefined ) {
// If there are any errors, pass them to next in the correct format
return next(new restify.InvalidArgumentError('price must be supplied'))
}
if (req.params.condition === undefined ) {
// If there are any errors, pass them to next in the correct format
return next(new restify.InvalidArgumentError('condition must be supplied'))
}
var newProduct = {
product: req.params.product,
price: req.params.price,
condition: req.params.condition
}
// Create the product using the persistence engine
productsSave.create( newProduct, function (error, product) {
// If there are any errors, pass them to next in the correct format
if (error) return next(new restify.InvalidArgumentError(JSON.stringify(error.errors)))
// Send the product if no issues
res.send(201, product)
postcounter+=1;
console.log("PostRequestNumber:"+postcounter +" GetRequestNumber:"+getcounter);
})
})
// Update a product by their id
server.put('/products/:id', function (req, res, next) {
// Make sure name is defined
if (req.params.product === undefined ) {
// If there are any errors, pass them to next in the correct format
return next(new restify.InvalidArgumentError('product must be supplied'))
}
if (req.params.price === undefined ) {
// If there are any errors, pass them to next in the correct format
return next(new restify.InvalidArgumentError('price must be supplied'))
}
if (req.params.condition === undefined ) {
// If there are any errors, pass them to next in the correct format
return next(new restify.InvalidArgumentError('condition must be supplied'))
}
var newProduct = {
_id: req.params.id,
product: req.params.product,
price: req.params.price,
condition: req.params.condition
}
// Update the product with the persistence engine
productsSave.update(newproduct, function (error, product) {
// If there are any errors, pass them to next in the correct format
if (error) return next(new restify.InvalidArgumentError(JSON.stringify(error.errors)))
// Send a 200 OK response
res.send(200)
getcounter+=1;
console.log("PostRequestNumber:"+postcounter +" GetRequestNumber:"+getcounter);
})
})
// Delete product with the given id
server.del('/products/:id', function (req, res, next) {
// Delete the product with the persistence engine
productsSave.delete(req.params.id, function (error, product) {
// If there are any errors, pass them to next in the correct format
if (error) return next(new restify.InvalidArgumentError(JSON.stringify(error.errors)))
// Send a 200 OK response
res.send()
})
})
// Delete all the product
server.del('/products', function (req, res, next) {
// Find every entity within the given collection
productsSave.deleteMany({}, function (error, products) {
// Return all of the products in the system
res.send(products)
})
})