-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
384 lines (289 loc) · 8.81 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
const express = require("express");
//importing database
const database = require("./database");
//intializing express
const booky = express();
booky.use(express.urlencoded({extended:true}));
booky.use(express.json());
/*
Route /
Description Get all the books
Access PUBLIC
Parameter NONE
Methods GET
*/
booky.get("/", (req, res)=>{
return res.json({Books: database.books});
});
/*
Route /is
Description Get specific book with ISBN
Access PUBLIC
Parameter isbn
Methods GET
*/
booky.get("/is/:isbn", (req, res)=>{
const getSpecificBook = database.books.filter(
(book)=>book.ISBN === req.params.isbn
);
if(getSpecificBook.length !== 0){
return res.json({book:getSpecificBook});
}
return res.json({error:`The Book with ISBN: ${req.params.isbn} has not found in the database`});
});
/*
Route /c
Description Get specific book on category
Access PUBLIC
Parameter category
Methods GET
*/
booky.get("/c/:category", (req, res)=>{
const getSpecificBook = database.books.filter(
(book) => book.category.includes(req.params.category)
);
if(getSpecificBook.length !== 0){
return res.json({book:getSpecificBook});
}
return res.json({error:`Book with category '${req.params.category}' has not found in the database`});
});
/*
Route /l
Description Get specific book on language
Access PUBLIC
Parameter lang
Methods GET
*/
booky.get("/l/:lang", (req, res)=>{
const getSpecificBook = database.books.filter(
(book) => book.language.includes(req.params.lang)
);
if(getSpecificBook.length !== 0){
return res.json({book:getSpecificBook});
}
return res.json({error:`Book with Language '${req.params.lang}' has not found in the database`});
});
/*
Route /author
Description Get all authors
Access PUBLIC
Parameter NONE
Methods GET
*/
booky.get("/author", (req, res)=>{
return res.json({authors : database.author});
});
/*
Route /author/book
Description Get all authors based on Book
Access PUBLIC
Parameter isbn
Methods GET
*/
booky.get("/author/book/:isbn", (req, res)=>{
const getSpecificAuthor = database.author.filter(
(author) => author.books.includes(req.params.isbn)
);
if(getSpecificAuthor.length !== 0){
res.json({author : getSpecificAuthor});
}
return res.json({error:`No Author found for the book with ISBN:${req.params.isbn} `});
});
/*
Route /author/id
Description Get authors based on id
Access PUBLIC
Parameter id
Methods GET
*/
booky.get("/author/id/:id", (req, res)=>{
const getSpecificAuthor = database.author.filter(
(author) => author.id === parseInt(req.params.id)
);
if(getSpecificAuthor.length !== 0){
return res.json({Author : getSpecificAuthor});
}
return res.json({error : `No author Found with ID : ${req.params.id}`});
});
/*
Route /publications
Description Get all publications
Access PUBLIC
Parameter NONE
Methods GET
*/
booky.get("/publications", (req, res)=> {
return res.json({publications: database.publication});
});
/*
Route /publications/id
Description Get Specific publications
Access PUBLIC
Parameter id
Methods GET
*/
booky.get("/publications/id/:id", (req, res)=>{
const getSpecificPublication = database.publication.filter(
(publication) => publication.id == parseInt(req.params.id)
);
if(getSpecificPublication.length !== 0){
return res.json({publication: getSpecificPublication});
}
return res.json({error : `No Publication found with id : ${req.params.id}`});
});
/*
Route /publications/book
Description Get Specific publications based on a book
Access PUBLIC
Parameter isbn
Methods GET
*/
booky.get("/publications/book/:isbn", (req, res)=>{
const getSpecificPublication = database.publication.filter(
(publication) => publication.books.includes(req.params.isbn)
);
if(getSpecificPublication.length !== 0){
return res.json({publications : getSpecificPublication});
}
return res.json({error : `No Publication found based on Book with ISBN : ${req.params.isbn}`});
});
//POST
/*
Route /book/new
Description Add new books
Access PUBLIC
Parameter NONE
Methods POST
*/
booky.post("/book/new", (req, res)=>{
const newBook = req.body;
database.books.push(newBook);
return res.json({updatedBooks : database.books});
});
/*
Route /author/new
Description Add new authors
Access PUBLIC
Parameter NONE
Methods POST
*/
booky.post("/author/new", (req, res)=>{
const newAuthor = req.body;
database.author.push(newAuthor);
return res.json({udatedAuthors : database.author});
});
/*
Route /publications/new
Description Add new publications
Access PUBLIC
Parameter NONE
Methods POST
*/
booky.post("/publications/new", (req, res)=>{
const newPub = req.body;
database.publication.push(newPub);
return res.json({updatedPublications : database.publication});
});
/*
Route /publications/update/Book
Description Update or Add new publications
Access PUBLIC
Parameter isbn
Methods PUT
*/
booky.put("/publications/update/book/:isbn", (req, res)=>{
//Update the Publication Database
database.publication.forEach((pub) =>{
if(pub.id === req.body.pubId){
pub.books.push(req.params.isbn);
return;
}
});
//Update the Books database
database.books.forEach((book)=>{
if(book.ISBN === req.params.isbn){
book.publications = req.body.pubId;
return;
}
});
return res.json({
Books: database.books,
Publication: database.publication,
message: "Successfully updated publications"
});
});
/*
Route /book/delete
Description Delete a Book
Access PUBLIC
Parameter isbn
Methods DELETE
*/
booky.delete("/book/delete/:isbn", (req, res)=>{
//Whichever book that doesn't match with the isbn , send it to an updatedBookDatabse array
//and rest which doesn't match will be filtered
const updatedBookDatabse = database.books.filter(
(book) => book.ISBN !== req.params.isbn
);
database.books = updatedBookDatabse;
return res.json({
books:database.books
});
});
/*
Route /book/del/author
Description Delete author from book
Access PUBLIC
Parameter isbn, authorId
Methods DELETE
*/
booky.delete("/book/del/author/:isbn/:authorId", (req, res)=>{
database.books.forEach((book)=>{
if(book.ISBN === req.params.isbn){
const newAuthorsList = book.author.filter(
(eachAuthor)=> eachAuthor !== parseInt(req.params.authorId));
book.author = newAuthorsList;
return;
}
});
return res.json({
book : database.books
});
});
//extended version of the above api
/*
Route /book/delete/author
Description Delete author from book and related book from author
Access PUBLIC
Parameter isbn, authorId
Methods DELETE
*/
booky.delete("/book/delete/author/:isbn/:authorId", (req, res)=>{
//Update the book database
database.books.forEach((book)=> {
if(book.ISBN === req.params.isbn){
const newAuthorList = book.author.filter(
(eachAuthor)=> eachAuthor !== parseInt(req.params.authorId));
book.author = newAuthorList;
return;
}
});
//Update the Author database
database.author.forEach((author)=>{
if(author.id === parseInt(req.params.authorId)){
const newBookList = author.books.filter(
(eachBook)=> eachBook !== req.params.isbn );
author.books = newBookList;
return ;
};
});
return res.json({
book : database.books,
author: database.author,
message: "Author was deleted !!"
});
});
//service listening on port 3000
booky.listen(3000, ()=>{
console.log("Server is UP and RUNNING on PORT 3000");
});