-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
145 lines (121 loc) · 3.03 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
const express = require('express')
var morgan = require('morgan')
const cors = require('cors')
// New token to morgan to get also content of the request
morgan.token('data', function(req) {
return JSON.stringify(req.body)
});
const app = express()
app.use(express.json())
app.use(cors())
app.use(express.static('build'))
/*
morgan with tiny logs to console: POST /api/persons/ 200 52 - 4.381 ms
(:method :url :status :res[content-length] - :response-time ms)
*/
//app.use(morgan('tiny'))
app.use(morgan(':method :url :status :res[content-length] - :response-time ms :data'))
let persons = [
{
"name": "Arto Hellas",
"number": "040-123456",
"id": 1
},
{
"name": "Ada Lovelace",
"number": "39-44-5323523",
"id": 2
},
{
"name": "Dan Abramov",
"number": "12-43-234345",
"id": 3
},
{
"name": "Mary Poppendieck",
"number": "39-23-6423122",
"id": 4
}
]
app.get('/api/persons', (req, res) => {
res.json(persons)
})
app.get('/info', (req, res) => {
const number = persons.length
const date = new Date()
res.send('<p>Phonebook has info for ' + number + ' people</p><p>' + date +'</p>')
})
app.get('/api/persons/:id', (request, response) => {
const id = Number(request.params.id)
console.log(id)
const person = persons.find(person => person.id === id)
console.log(person)
if (person) {
response.json(person)
} else {
response.status(404).end()
}
})
app.delete('/api/persons/:id', (request, response) => {
const id = Number(request.params.id)
persons = persons.filter(person => person.id !== id)
response.status(204).end()
})
/*
Method returns a random integer between min and max values.
The returned value is not lower than min (or the next integer greater than min if min isn't an integer)
and is less than (but not equal to) max.
*/
const generateId = (min, max) => {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min) + min);
}
app.post('/api/persons', (request, response) => {
const body = request.body
console.log(request.body)
if (!body) {
return response.status(400).json({
error: 'body missing'
})
}
if (!body.name) {
return response.status(400).json({
error: 'Name missing'
})
}
if (persons.find(person => person.name === body.name)) {
return response.status(400).json({
error: 'Name must be unique'
})
}
if (!body.number) {
return response.status(400).json({
error: 'Number missing'
})
}
var id
var i = 0;
do {
id = generateId(10,100000)
console.log("id " + id)
i++
}
while ((persons.find(person => person.id === id)) && (i < 10));
if (i === 10) {
return response.status(500).json({
error: 'Failed to get id'
})
}
const person = {
name: body.name,
number: body.number,
id: id,
}
persons = persons.concat(person)
response.json(person)
})
const PORT = process.env.PORT || 3001
app.listen(PORT, () => {
console.log(`Server running on port ${PORT}`)
})