-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
150 lines (120 loc) · 2.83 KB
/
server.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
146
147
148
149
150
var express = require('express');
var bodyParser = require('body-parser');
var database = require('./database');
// Crear aplicación del servidor.
var app = express();
// Puerto donde va a correr el servidor.
var port = 8000;
// Habilitar que el servidor reciba datos por peticiones HTTP tipo POST y PUT.
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended: true}));
// Conseguir la lista de todos los contactos.
app.get('/contacts', function (req, res) {
database
.getAll()
.then(function (results) {
res.json({
success: true,
data: results
});
},
function (err) {
res.json({
error: err
});
});
});
// Conseguir un solo contacto por identificador.
app.get('/contact/:id', function (req, res) {
var id = Number(req.params.id);
database
.getById(id)
.then(function (contact) {
if (contact) {
res.json({
success: true,
data: contact
});
} else {
res.json({
error: 'No encontrado.'
});
}
},
function (err) {
res.json({
error: err
});
});
});
// Crear un nuevo contacto con los datos enviados por el body.
app.post('/contact', function (req, res) {
var name = req.body.name;
var age = Number(req.body.age);
var newContact = {
name: name,
age: age
};
database
.create(newContact)
.then(function (contact) {
res.json({
success: true,
data: contact
});
},
function (err) {
res.json({
error: err
});
});
});
// Actualizar un contacto por el identificador y los nuevos datos que llegan
// por el body.
app.put('/contact/:id', function (req, res) {
var id = Number(req.params.id);
var name = req.body.name;
var age = Number(req.body.age);
var updateData = {
name: name,
age: age
};
database
.updateById(id, updateData)
.then(function (contact) {
res.json({
success: true,
data: contact
});
},
function (err) {
res.json({
error: err
});
});
});
// Borrar un contacto por identificador.
app.delete('/contact/:id', function (req, res) {
var id = Number(req.params.id);
database
.removeById(id)
.then(function () {
res.json({
success: true
});
},
function (err) {
res.json({
error: err
});
});
});
// Definir la carpeta 'public' como pública.
app.use(express.static(__dirname +'/public'));
// Iniciar el servidor.
app.listen(port, function (err) {
if (err) {
throw err;
}
console.log('Servidor corriendo en http://127.0.0.1:'+ port);
});