-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
343 lines (297 loc) · 10.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
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
const express = require('express');
const fs = require('fs');
const formidable = require ('formidable');
//Funçao de utilidade usada para verificar se há um arquivo junto com os forms no post
function isEmpty(obj) {
for(var key in obj) {
if(obj.hasOwnProperty(key))
return false;
}
return true;
}
const NodeCouchDB = require('node-couchdb')
const couch = new NodeCouchDB();
var _users = [];
var _products = [];
var _services = [];
var _sales = [];
var dbInit = () => { //Inicializa a DB. Chamada ao início do programa e após um novo cadastro
console.log("DB reinicializada")
_users = [];
_products = [];
_services = [];
_sales = [];
couch.get('petshop','_design/users/_view/all').then(
({data,headers,status}) => {
Array.prototype.forEach.call(data.rows, (json) => {
_users.push(json.value);
})
console.log("Usuários obtidos com sucesso");
},
(err) => {
console.log("Falha na obtenção dos usuários:\n" + err);
}
);
couch.get('petshop','_design/products/_view/all').then(
({data,headers,status}) => {
Array.prototype.forEach.call(data.rows, (json) => {
_products.push(json.value);
})
console.log("Produtos obtidos com sucesso")
},
(err) => {
console.log("Falha na obtenção dos produtos:\n" + err);
}
);
couch.get('petshop','_design/sales/_view/all').then(
({data,headers,status}) => {
Array.prototype.forEach.call(data.rows, (json) => {
_sales.push(json.value);
})
console.log("Vendas obtidas com sucesso")
},
(err) => {
console.log("Falha na obtenção das vendas:\n" + err);
}
);
couch.get('petshop','_design/services/_view/all').then(
({data,headers,status}) => {
Array.prototype.forEach.call(data.rows, (json) => {
_services.push(json.value);
})
console.log("Serviços obtidos com sucesso")
},
(err) => {
console.log("Falha na obtenção dos serviços:\n" + err);
}
);
}
dbInit();
const app = express();
app.use(express.json());
app.use(express.static(__dirname + '/public'));//Acesso aos arquivos públicos
const port = process.env.PORT || 3000; //Porta do ambiente ou 3000 se não for epecificada
app.listen(port, () => { console.log(`Listening on port ${port}`); });//Servidor inicializado
app.get('/',(req,res)=>{
console.log("GET: " + JSON.stringify(req.query));
const query = req.query;
switch (query.type){
case("getProductsByTag"):
const tag = query.tag;
let response = _products.filter((el) => {return el.tag === tag})
res.send(response);
res.end();
break;
case("getProductById"):
const id = query.id;
const product = _products.find(el => {return el._id === id})
res.send(product);
res.end();
break;
case("searchProducts"):
const queryString = query.queryString;
console.log("buscando por " + queryString);
let response2 = _products.filter((el) => {return (el.name.toLowerCase()).includes(queryString.toLowerCase())});
res.send(response2);
res.end();
break;
case("getBestSellingProducts"):
let response3 = [];
let i = 0;
_products.sort((a,b) => parseFloat(b.qtVendida) - parseFloat(a.qtVendida)) //Ordem decrescente de vendas
_products.forEach((el) => {
//Envia apenas os 9 produtos mais vendidos para não poluir a página
if (i === 9) return;
response3.push(el)
i++;
});
res.send(response3)
res.end();
break;
case("getAllProducts"):
res.send(_products);
res.end;
break;
case("getAllUsers"):
res.send(_users);
res.end;
break;
case("getAllServices"):
res.send(_services);
res.end;
break;
case("getAllSales"):
res.send(_sales);
res.end;
break;
default: //carrega a pagina normalmente
const page = fs.readFileSync('index.html');
res.writeHead(200, {'Content-Type': 'text/HTML'});
res.write(page);
res.end();
break;
}
});
app.post('/', function(req, res, next){
let path = null; //Armazena o caminho do arquivo
var form = new formidable.IncomingForm();
form.parse(req, function (err, json, files) {
console.log("POST recebido: " + JSON.stringify(json));
if (!isEmpty(files)){ //Arquivo recebido: realizar upload
let oldpath = files.img.path;
let newpath = __dirname + '/public/uploads/' + files.img.name;
path = '/uploads/' + files.img.name;
fs.rename(oldpath, newpath, function (err) {
if (err) throw err;
});
}
switch (json.type){
case ("login"):
let userJSON = _users.find(element => element.email === json.email);
if (userJSON !== null && userJSON !== undefined){ //Usuário existe
if (userJSON.password !== json.password){ //Senha incorreta
res.end(JSON.stringify({status: "Senha incorreta"}));
}
else{ //Senha correta
res.end(JSON.stringify({status: "ok", json: userJSON}));
}
}
else{ //Usuário não existe
res.end(JSON.stringify({status: "Usuário inexistente"}));
}
break;
case ("user"):
let newUser = json;
if (_users.find(element => element.email === newUser.email) !== undefined){ //Usuário já existe
res.end(JSON.stringify({status: "Já existe um usuário com esse email"}));
return;
}
else if (newUser.password !== newUser.passwordConfirm){
res.end(JSON.stringify({status: "As senhas não batem!"}));
return;
}
else{ //Usuário não existe: realizar cadastro
couch.uniqid().then((ids) => {
newUser._id = ids[0];
newUser.img = '/img/imgNotFound.jpg';
if (path) newUser.img = path;
couch.insert('petshop',newUser).then(
(data,headers,status) => { //Promise resolve: Cadastro concluído
dbInit();
res.end(JSON.stringify({status: "ok"}));
return;
},
(err) => { //Promise reject: Erro no cadastro
res.end(JSON.stringify({status: "Erro na base de dados do servidor"}));
return;
}
)
})
}
break;
case ("product"):
let newProduct = json;
if (_users.find(element => element.name === newProduct.name) !== undefined){ //Usuário já existe
res.end(JSON.stringify({status: "Já existe um produto com esse nome"}));
return;
}
else{ //Usuário não existe: realizar cadastro
couch.uniqid().then((ids) => {
newProduct._id = ids[0];
newProduct.img = path;
couch.insert('petshop',newProduct).then(
(data,headers,status) => { //Promise resolve: Cadastro concluído
dbInit();
res.end(JSON.stringify({status: "ok"}));
return;
},
(err) => { //Promise reject: Erro no cadastro
res.end(JSON.stringify({status: "Erro na base de dados do servidor"}));
return;
}
)
})
}
break;
case ("service"):
let newService = json;
if (_users.find(element => element.data === newService.data && element.horario === newService.horario ) !== undefined){ //Usuário já existe
res.end(JSON.stringify({status: "O horário não está disponível."}));
return;
}
else{ //Usuário não existe: realizar cadastro
couch.uniqid().then((ids) => {
newService._id = ids[0];
couch.insert('petshop',newService).then(
(data,headers,status) => { //Promise resolve: Cadastro concluído
dbInit();
res.end(JSON.stringify({status: "ok"}));
return;
},
(err) => { //Promise reject: Erro no cadastro
res.end(JSON.stringify({status: "Erro na base de dados do servidor"}));
return;
}
)
})
}
break;
case("deletarItem"):
//aqui está o id e o rev desejado
query = json
couch.del('petshop', json.id, json.rev).then(
(data,headers,status) => { //Promise resolve: deleção concluído
dbInit();
console.log('deletei item')
res.end(JSON.stringify({status: "ok"}));
res.redirect('/')
return;
},
(err) => { //Promise reject: Erro ao deletar
console.log('não deletei')
res.end(JSON.stringify({status: "Erro na base de dados do servidor"}));
return;
});
return
break;
case("deletarUser"):
//aqui está o id e o rev desejado
query = json
couch.del('petshop', json.id, json.rev).then(
(data,headers,status) => { //Promise resolve: deleção concluído
dbInit();
console.log('deletei user')
res.end(JSON.stringify({status: "ok"}));
return;
},
(err) => { //Promise reject: Erro ao deletar
console.log('não deletei user')
res.end(JSON.stringify({status: "Erro na base de dados do servidor"}));
return;
});
return
break;
case("deletarServico"):
//aqui está o id e o rev desejado
query = json
couch.del('petshop', json.id, json.rev).then(
(data,headers,status) => { //Promise resolve: deleção concluído
dbInit();
console.log('deletei serviço')
res.end(JSON.stringify({status: "ok"}));
return;
},
(err) => { //Promise reject: Erro ao deletar
console.log('não deletei serviço')
res.end(JSON.stringify({status: "Erro na base de dados do servidor"}));
return;
});
return
break;
default:
res.status(400).end(JSON.stringify({status: "Ação não suportada"}));
return;
break;
}
});
});