-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
63 lines (55 loc) · 1.66 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
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);
}
next();
}
app.post('/strips', validateStrip, (req, res, next) => {
const stripToCreate = req.body.strip;
db.run(`INSERT INTO Strip (head, body, bubble_type, background, bubble_text,
caption) VALUES ($head, $body, $bubbleType, $background, $bubbleText,
$caption)`,
{
$head: stripToCreate.head,
$body: stripToCreate.body,
$bubbleType: stripToCreate.bubbleType,
$background: stripToCreate.background,
$bubbleText: stripToCreate.bubbleText,
$caption: stripToCreate.caption,
}, function(err) {
if (err) {
return res.sendStatus(500);
}
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;