-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
93 lines (80 loc) · 2.06 KB
/
Copy pathserver.js
File metadata and controls
93 lines (80 loc) · 2.06 KB
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
84
85
86
87
88
89
90
91
92
93
const express = require('express')
const app = express();
const morgan = require('morgan')
const PORT= 3001;
app.use(express.json())
app.use(morgan('tiny'))
morgan.token('object', function (req, res){
return `${JSON.stringify(req.body)}`
})
app.use(morgan(':object'))
let persons= [
{
"id": 1,
"name": "Arto Hellas",
"number": "040-123456"
},
{
"id": 2,
"name": "Ada Lovelace",
"number": "39-44-5323523"
},
{
"id": 3,
"name": "Dan Abramov",
"number": "12-43-234345"
},
{
"id": 4,
"name": "Mary Poppendieck",
"number": "39-23-6423122"
}
]
app.get('/api/persons', (req, res) => {
res.json(persons)
})
app.get('/info', (req, res) => {
const currentDate = new Date();
res.send(`<h2>Phonebook info for the ${persons.length} people</h2> <h2>${currentDate}</h2>`)
})
app.get('/api/persons/:id', (req, res) => {
const id = req.params.id
const entry = persons.find(entry => entry.id ==id)
if(entry){
res.json(entry)
}else{
res.status(404).end()
}
})
app.delete('/api/persons/:id', (req, res) => {
const id= Number(req.params.id)
persons= persons.filter(entry => entry.id!==id)
res.status(204).end()
})
const generateId = () => {
const maxID= persons.length > 0 ?
Math.max(...persons.map(n =>n.id)) : 0
return maxID +1
}
app.post('/api/persons', (req, res) => {
const body= req.body
if (!body.number){
return res.status(400).json({ error: 'number missing'})
}
if(!body.name){
return res.status(400).json({ error: 'name missing'})
}
if (persons.some(entry => entry.name === body.name)){
return res.status(401).json({ error: 'name must be unique'})
}
let entry = {
id: generateId(),
name: body.name,
number: body.number
}
persons.push(entry)
res.json(entry)
})
app.listen(PORT, () => {
console.log(`Server active on ${PORT}`)
})