-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathbooks.js
54 lines (45 loc) · 1.34 KB
/
books.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
import HttpStatus from 'http-status';
const defaultResponse = (data, statusCode = HttpStatus.OK) => ({
data,
statusCode,
});
const errorResponse = (message, statusCode = HttpStatus.BAD_REQUEST) => defaultResponse({
error: message,
}, statusCode);
class BooksController {
constructor(Books) {
this.Books = Books;
}
getAll() {
return this.Books.findAll({})
.then(result => defaultResponse(result))
.catch(error => errorResponse(error.message));
}
getById(params) {
return this.Books.findOne({
where: params,
})
.then(result => defaultResponse(result))
.catch(error => errorResponse(error.message));
}
create(data) {
return this.Books.create(data)
.then(result => defaultResponse(result, HttpStatus.CREATED))
.catch(error => errorResponse(error.message, HttpStatus.UNPROCESSABLE_ENTITY));
}
update(data, params) {
return this.Books.update(data, {
where: params,
})
.then(result => defaultResponse(result))
.catch(error => errorResponse(error.message, HttpStatus.UNPROCESSABLE_ENTITY));
}
delete(params) {
return this.Books.destroy({
where: params,
})
.then(result => defaultResponse(result, HttpStatus.NO_CONTENT))
.catch(error => errorResponse(error.message, HttpStatus.UNPROCESSABLE_ENTITY));
}
}
export default BooksController;