-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
367 lines (303 loc) · 7.39 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
require("dotenv").config();
const express = require("express");
const mongoose = require("mongoose");
var bodyParser = require("body-parser");
//Database
const database = require("./database/database");
//Models
const BookModel = require("./database/book");
const AuthorModel = require("./database/author");
const PublicationModel = require("./database/publication");
//Initialise express
const booky = express();
booky.use(bodyParser.urlencoded({extended: true}));
booky.use(bodyParser.json());
mongoose.connect(process.env.MONGO_URL,
{
useNewUrlParser: true,
useUnifiedTopology: true,
useFindAndModify: false,
useCreateIndex: true
}
).then(() => console.log("Connection Established"));
/*
Route /
Description Get all the books
Access PUBLIC
Parameter NONE
Methods GET
*/
booky.get("/",async (req,res) => {
const getAllBooks = await BookModel.find();
return res.json(getAllBooks);
});
/*
Route /is
Description Get specific book on ISBN
Access PUBLIC
Parameter isbn
Methods GET
*/
booky.get("/is/:isbn",async (req,res) => {
const getSpecificBook = await BookModel.findOne({ISBN: req.params.isbn});
//null !0 = 1 , !1=0
if(!getSpecificBook) {
return res.json({error: `No book found for the ISBN of ${req.params.isbn}`});
}
return res.json({book: getSpecificBook});
});
/*
Route /c
Description Get specific book on category
Access PUBLIC
Parameter category
Methods GET
*/
booky.get("/c/:category", async (req,res) => {
const getSpecificBook = await BookModel.findOne({category: req.params.category});
//null !0 = 1 , !1=0
if(!getSpecificBook) {
return res.json({error: `No book found for the category of ${req.params.category}`});
}
return res.json({book: getSpecificBook});
});
/*
Route /author
Description Get all authors
Access PUBLIC
Parameter NONE
Methods GET
*/
booky.get("/author", async (req,res) => {
const getAllAuthors = await AuthorModel.find();
return res.json(getAllAuthors);
});
/*
Route /author/book
Description Get all authors based on books
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){
return res.json({
error: `No author found for the book of ${req.params.isbn}`
});
}
return res.json({authors: getSpecificAuthor});
});
/*
Route /publications
Description Get all publications
Access PUBLIC
Parameter NONE
Methods GET
*/
booky.get("/publications",async (req,res) => {
const getAllPublications = await PublicationModel.find();
return res.json(getAllPublications);
})
//POST
/*
Route /book/new
Description Add new books
Access PUBLIC
Parameter NONE
Methods POST
*/
booky.post("/book/new",async (req,res) => {
const { newBook } = req.body;
const addNewBook = BookModel.create(newBook);
return res.json({
books: addNewBook,
message: "Book was added !!!"
});
});
/*
Route /author/new
Description Add new authors
Access PUBLIC
Parameter NONE
Methods POST
*/
booky.post("/author/new",async (req,res) => {
const { newAuthor } = req.body;
const addNewAuthor = AuthorModel.create(newAuthor);
return res.json(
{
author: addNewAuthor,
message: "Author was added!!!"
}
);
});
/*
Route /publication/new
Description Add new publications
Access PUBLIC
Parameter NONE
Methods POST
*/
booky.post("/publication/new", (req,res) => {
const newPublication = req.body;
database.publication.push(newPublication);
return res.json(database.publication);
});
/**************PUT***************/
/*
Route /book/update
Description Update book on isbn
Access PUBLIC
Parameter isbn
Methods PUT
*/
booky.put("/book/update/:isbn",async (req,res) => {
const updatedBook = await BookModel.findOneAndUpdate(
{
ISBN: req.params.isbn
},
{
title: req.body.bookTitle
},
{
new: true
}
);
return res.json({
books: updatedBook
});
});
/*********Updating new author**********/
/*
Route /book/author/update
Description Update /add new author
Access PUBLIC
Parameter isbn
Methods PUT
*/
booky.put("/book/author/update/:isbn", async(req,res) =>{
//Update book database
const updatedBook = await BookModel.findOneAndUpdate(
{
ISBN: req.params.isbn
},
{
$addToSet: {
authors: req.body.newAuthor
}
},
{
new: true
}
);
//Update the author database
const updatedAuthor = await AuthorModel.findOneAndUpdate(
{
id: req.body.newAuthor
},
{
$addToSet: {
books: req.params.isbn
}
},
{
new: true
}
);
return res.json(
{
bookss: updatedBook,
authors: updatedAuthor,
message: "New author was added"
}
);
} );
/*
Route /publication/update/book
Description Update /add new publication
Access PUBLIC
Parameter isbn
Methods PUT
*/
booky.put("/publication/update/book/:isbn", (req,res) => {
//Update the publication database
database.publication.forEach((pub) => {
if(pub.id === req.body.pubId) {
return pub.books.push(req.params.isbn);
}
});
//Update the book database
database.books.forEach((book) => {
if(book.ISBN === req.params.isbn) {
book.publications = req.body.pubId;
return;
}
});
return res.json(
{
books: database.books,
publications: database.publication,
message: "Successfully updated publications"
}
);
});
/****DELETE*****/
/*
Route /book/delete
Description Delete a book
Access PUBLIC
Parameter isbn
Methods DELETE
*/
booky.delete("/book/delete/:isbn", async (req,res) => {
//Whichever book that doesnot match with the isbn , just send it to an updatedBookDatabase array
//and rest will be filtered out
const updatedBookDatabase = await BookModel.findOneAndDelete(
{
ISBN: req.params.isbn
}
);
return res.json({
books: updatedBookDatabase
});
});
/*
Route /book/delete/author
Description Delete an author from a book and vice versa
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((eachAuthor) => {
if(eachAuthor.id === parseInt(req.params.authorId)) {
const newBookList = eachAuthor.books.filter(
(book) => book !== req.params.isbn
);
eachAuthor.books = newBookList;
return;
}
});
return res.json({
book: database.books,
author: database.author,
message: "Author was deleted!!!!"
});
});
booky.listen(3000,() => {
console.log("Server is up and running");
});