-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
76 lines (64 loc) · 1.68 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
import express from "express";
import bodyParser from "body-parser";
import morgan from "morgan";
import {
getUser,
getProducts,
getProductById,
getProductsByBrand,
getCartItems,
getCartItem,
addToCart,
deleteCartItem
} from "./connectors";
const PORT = 8000;
const app = express();
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
app.use(
morgan(function(tokens, req, res) {
return [
tokens.method(req, res),
tokens.url(req, res),
tokens.status(req, res),
tokens.res(req, res, "content-length"),
"-",
tokens["response-time"](req, res),
"ms",
JSON.stringify(req.body, null, 2)
].join(" ");
})
);
// app.use(function(req, res, next) {
// setTimeout(next, 500);
// });
app.get("/api/user", function(req, res) {
res.json(getUser());
});
app.get("/api/products", function(req, res) {
res.json(getProducts());
});
app.get("/api/products/:id(\\d+)/", function(req, res) {
const id = parseInt(req.params.id, 10);
res.json(getProductById(id));
});
app.get("/api/products/:brand(\\w+)/", function(req, res) {
res.json(getProductsByBrand(req.params.brand));
});
app.get("/api/cart-items", function(req, res) {
res.json(getCartItems());
});
app.get("/api/cart-items/:id", function(req, res) {
const id = parseInt(req.params.id, 10);
res.json(getCartItem(id));
});
app.post("/api/cart-items", function(req, res) {
addToCart(req.body).then(response => res.json(response));
});
app.post("/api/cart-items/:id", function(req, res) {
const id = parseInt(req.params.id, 10);
res.json(deleteCartItem({ id }));
});
app.listen(PORT, () => {
console.log(`server running on port ${PORT}`);
});