-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
166 lines (141 loc) · 5.2 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
//Importación de módulos de Node
const http = require('http')
const fs = require('fs')
const url = require('url')
const { v4: uuidv4 } = require('uuid')
//Importación de funciones para agregar y guardar usuarios random
const { agregaUsuario, guardaUsuario } = require('./usuario')
//Importación de función para enviar los correos
const { enviar } = require('./mailer')
//Creación del servidor
http.createServer((req, res) => {
//Inicialización de variables mediante la lectura del archivo 'gastos.json'
let gastosJSON = JSON.parse(fs.readFileSync("gastos.json",
"utf8"))
let gastos = gastosJSON.gastos
//Habilitación de la ruta raíz que devuelve el contenido del archivo 'index.html
if (req.url == '/' && req.method == 'GET') {
try {
res.setHeader('content-type', 'text/html')
res.end(fs.readFileSync('index.html', 'utf-8'))
res.statusCode = 200
} catch (e) {
res.statusCode = 500
res.end()
console.log('ERROR ---> ' + e)
}
}
//Habilitación de ruta para agregar roommate
if (req.url.startsWith('/roommate') && req.method == 'POST') {
agregaUsuario().then(async (usuario) => {
guardaUsuario(usuario)
res.end(JSON.stringify(usuario))
res.statusCode = 201
})
.catch((e) => {
res.statusCode = 500
res.end()
console.log('ERROR ---> ' + e)
})
}
//Habilitación de ruta GET para los roommates
if (req.url.startsWith("/roommates") && req.method == "GET") {
res.setHeader("Content-Type", "application/json");
fs.readFile("roommates.json", "utf8", (err, roommates) => {
if (err) (res.statusCode = 500), res.end()
res.end(roommates)
res.statusCode = 200
});
}
//Habilitación de ruta GET para los gastos
if (req.url.startsWith("/gastos") && req.method == "GET") {
res.setHeader("Content-Type", "application/json")
fs.readFile("gastos.json", "utf8", (err, gastos) => {
if (err) (res.statusCode = 500), res.end()
res.end(gastos)
res.statusCode = 200
});
}
//Habilitación de ruta para registrar nuevos gastos (POST)
if (req.url.startsWith("/gasto") && req.method == "POST") {
let body
req.on("data", (payload) => {
body = JSON.parse(payload)
})
req.on("end", () => {
let gasto = {
id: uuidv4().slice(30),
roommate: body.roommate,
descripcion: body.descripcion,
monto: body.monto
};
gastos.push(gasto)
let users = JSON.parse(fs.readFileSync('roommates.json', 'utf8')).roommates
let correos = users.map((e) => e.correo)
fs.writeFile("gastos.json",
JSON.stringify(gastosJSON), (err, data) => {
if (err) {
res.statusCode = 500
res.end()
console.log('ERROR ---> ' + err)
}
enviar(correos, gasto).then(() => {
res.end()
res.statusCode = 201
}).catch((e) => {
res.statusCode = 500
res.end()
console.log('ERROR ---> ' + e)
})
})
})
}
//Habilitación de ruta para modificar gastos(PUT)
if (req.url.startsWith("/gasto") && req.method == "PUT") {
const { id } = url.parse(req.url, true).query
let body
req.on("data", (payload) => {
body = JSON.parse(payload);
})
req.on("end", () => {
gastosJSON.gastos = gastos.map((b) => {
if (b.id == id) {
let gasto = {
id: id,
roommate: body.roommate,
descripcion: body.descripcion,
monto: body.monto
}
return gasto
}
return b
})
fs.writeFile("gastos.json",
JSON.stringify(gastosJSON), (err, data) => {
if (err) {
res.statusCode = 500
res.end()
console.log('ERROR ---> ' + err)
}
res.end()
res.statusCode = 201
})
})
}
//Habilitación de ruta para borrar gastos
if (req.url.startsWith("/gasto") && req.method == "DELETE") {
const { id } = url.parse(req.url, true).query
gastosJSON.gastos = gastos.filter((b) => b.id !== id);
fs.writeFile("gastos.json",
JSON.stringify(gastosJSON), (err, data) => {
if (err) {
res.statusCode = 500
res.end()
console.log('ERROR ---> ' + err)
}
res.end()
res.statusCode = 200
})
}
})
.listen(3000, () => console.log('Servidor up'))