-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.js
128 lines (114 loc) · 3.08 KB
/
app.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
var express = require('express');
var app = express();
var bodyParser = require('body-parser');
var mongoose = require('mongoose');
app.use(express.static(__dirname+'/client'));
app.use(bodyParser.json());
Genre = require('./models/genre')
Book = require('./models/book')
// connect to mongoose
mongoose.connect('mongodb://localhost/bookstore')
// database object
var db = mongoose.connection;
app.get('/', function(req, res){
res.send('Please use1 api/books or /api/genre');
});
// Get all the genres
app.get('/api/genres', function(req, res){
Genre.getGenres(function(err, genres){
if(err){
throw err;
}
res.json(genres);
});
});
// Add genre
app.post('/api/genres', function(req, res){
// req.body allows us to access everything coming from the forms into the genre object
var genre = req.body;
Genre.addGenre(genre, function(err, genre){
if(err){
throw err;
}
res.json(genre);
});
});
// Update genre
app.put('/api/genres/:_id', function(req, res){
// req.body allows us to access everything coming from the forms into the genre object
var id = req.params._id;
var genre = req.body;
Genre.updateGenre(id, genre, {}, function(err, genre){
if(err){
throw err;
}
res.json(genre);
});
});
// Update book
app.put('/api/books/:_id', function(req, res){
// req.body allows us to access everything coming from the forms into the genre object
var id = req.params._id;
var book = req.body;
Book.updateBook(id, book, {}, function(err, book){
if(err){
throw err;
}
res.json(book);
});
});
// Add book
app.post('/api/books', function(req, res){
// req.body allows us to access everything coming from the forms into the book object
var book = req.body;
Book.addBook(book, function(err, book){
if(err){
throw err;
}
res.json(book);
});
});
// Get all the books
app.get('/api/books', function(req, res){
Book.getBooks(function(err, books){
if(err){
throw err;
}
res.json(books);
});
});
// Get a book by id
app.get('/api/books/:_id', function(req, res){
Book.getBookById(req.params._id, function(err, book){
if(err){
throw err;
}
res.json(book);
});
});
// Delete genre
app.delete('/api/genres/:_id', function(req, res){
// req.body allows us to access everything coming from the forms into the genre object
var id = req.params._id;
var genre = req.body;
Genre.removeGenre(id, function(err, genre){
if(err){
throw err;
}
res.json(genre);
});
});
// Delete book
app.delete('/api/books/:_id', function(req, res){
// req.body allows us to access everything coming from the forms into the genre object
var id = req.params._id;
var book = req.body;
Book.removeBook(id, function(err, book){
if(err){
throw err;
}
res.json(book);
});
});
app.listen('3000');
console.log('Running on port 3000...');