-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
68 lines (57 loc) · 1.84 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
const express = require('express');
const app = express();
const bodyParser = require('body-parser');
const morgan = require('morgan');
const sqlite3 = require('sqlite3');
const db = new sqlite3.Database( process.env.TEST_DATABASE || './db.sqlite');
const PORT = process.env.PORT || 4001;
app.use(express.static('public'));
app.use(morgan('dev'));
app.use(bodyParser.json());
app.get('/strips', (req, res, next) => {
db.all( 'SELECT * FROM Strip', (err, rows) => {
if(err){
res.sendStatus(500);
}else{
res.send( {strips: rows} );
}
});
});
const validateStrip = (req, res, next) => {
const stripToCreate = req.body.strip;
if(
!stripToCreate.head ||
!stripToCreate.body ||
!stripToCreate.bubbleType ||
!stripToCreate.background){
return res.sendStatus(400);// bad request
}
next();
}
app.post('/strips',validateStrip, (req, res, next) => {
const stripToCreate = req.body.strip;
db.run(`INSERT INTO Strip (head, body, background, bubble_type, bubble_text, caption)
VALUES ($head, $body, $background, $bubbleType, $bubbleText, $caption)`,
{
$head: stripToCreate.head,
$body: stripToCreate.body,
$background: stripToCreate.background,
$bubbleType: stripToCreate.bubbleType,
$bubbleText: stripToCreate.bubbleText,
$caption: stripToCreate.caption
}, function(err) {
if(err){
return res.sendStatus(500); // internal sever error
}
db.get(`SELECT * FROM Strip WHERE id = ${this.lastID}`,(err,row) =>{
if(!row){
return res.sendStatus(500);
}
res.status(201).send( {strip: row});
})
})
})
app.listen(PORT ,() => {
console.log(`Server is listening on port ${PORT}`);
});
module.exports = app;