-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmulheres.js
103 lines (82 loc) · 2.3 KB
/
mulheres.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
const express = require("express")
// iniciando o express
const router = express.Router()
// configurando a primeira parte da rota
const { v4: uuidv4} = require("uuid")
// importando a biblioteca uuid
const conectaBD = require("./bd")
// ligando ao arquivo bd
conectaBD()
// chamando a função que conecta o banco de dados
const Mulher = require("./model")
const app = express()
// iniciando o app
app.use(express.json())
const porta = 3333
// criando a porta
//GET
async function mostraMulheres(request, response) {
try {
const mulheres_vindas_do_bd = await Mulher.find()
response.json(mulheres_vindas_do_bd)
}catch (erro) {
console.log(erro)
}
}
//POST
function criaMulher(request, response){
const novaMulher = {
id: uuidv4(),
nome: request.body.nome,
imagem: request.body.imagem,
minibio: request.body.minibio
}
mulheres.push(novaMulher)
// enviando o cadastro da nova mulher para a lista mulheres
response.json(mulheres)
// resposta com a lista completa atual
}
//PATCH
function corrigeMulher(request, response){
let mulherEncontrada; // Declarada aqui
function encontraMulher(mulher){
if (mulher.id == request.params.id){
return mulher
}
}
mulherEncontrada = mulheres.find(encontraMulher); // Atribuição após a busca
if (request.body.nome){
mulherEncontrada.nome = request.body.nome
}
if (request.body.minibio){
mulherEncontrada.minibio = request.body.minibio
}
if (request.body.imagem){
mulherEncontrada.imagem = request.body.imagem
}
response.json(mulheres)
}
//DELETE
function deletaMulher(request, response){
function todasMenosEla(mulher){
if (mulher.id !== request.params.id) {
return mulher
}
}
const mulheresQueFicam = mulheres.filter(todasMenosEla)
response.json(mulheresQueFicam)
}
//PORTA
function mostraPorta() {
console.log("Servidor criado e rodando na porta ", porta)
}
app.use(router.get('/mulheres', mostraMulheres))
// configurei a rota GET /mulheres
app.use(router.post("/mulheres", criaMulher))
// configurei rota POST /mulheres
app.use(router.patch("/mulheres/:id", corrigeMulher))
// configurei rota PATCH /mulheres/
app.use(router.delete("/mulheres/:id", deletaMulher))
//configurei rota DELETE /mulheres
app.listen(porta, mostraPorta)
// servidor ouvindo a porta