This repository has been archived by the owner on Nov 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
83 lines (53 loc) · 1.5 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
77
78
79
80
81
82
83
const express = require('express');
const server = express();
server.use(express.json());
let numberOfRequests = 0;
const projects = [];
function checkProjectExists(req, res, next) {
const { id } = req.params;
const project = projects.find(p => p.id == id);
if (!project) {
return res.status(400).json({ error: 'Project not found' });
}
return next();
}
function logRequests(req, res, next) {
numberOfRequests++;
console.log(`Número de requisições: ${numberOfRequests}`);
return next();
}
server.use(logRequests);
server.get('/projects', (req, res) => {
return res.json(projects);
});
server.post('/projects', (req, res) => {
const { id, title } = req.body;
const project = {
id,
title,
tasks: []
};
projects.push(project);
return res.json(project);
});
server.put('/projects/:id', checkProjectExists, (req, res) => {
const { id } = req.params;
const { title } = req.body;
const project = projects.find(p => p.id == id);
project.title = title;
return res.json(project);
});
server.delete('/projects/:id', checkProjectExists, (req, res) => {
const { id } = req.params;
const projectIndex = projects.findIndex(p => p.id == id);
projects.splice(projectIndex, 1);
return res.send();
});
server.post('/projects/:id/tasks', checkProjectExists, (req, res) => {
const { id } = req.params;
const { title } = req.body;
const project = projects.find(p => p.id == id);
project.tasks.push(title);
return res.json(project);
});
server.listen(3001);