-
Notifications
You must be signed in to change notification settings - Fork 1
/
instructors.js
130 lines (94 loc) · 3.17 KB
/
instructors.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
const fs = require('fs')
const data = require("./data.json")
const { age, date } = require("./utils")
exports.index = function (req, res) {
return res.render('instructors/index', { instructors: data.instructors })
}
exports.show = function (req, res) {
// req.query.id = instructors?id=1
// req.body.id = formulário
// req.params.id = instructors/1 / instructors/:id
const { id } = req.params
const foundInstructors = data.instructors.find(function (instructor) {
return instructor.id == id
})
if (!foundInstructors)
return res.send("Instructor not found!")
const instructor = {
...foundInstructors,
age: age(foundInstructors.birth),
services: foundInstructors.services.split(","),
created_at: new Intl.DateTimeFormat("pt-BR").format(foundInstructors.created_at)
}
return res.render('instructors/show', { instructor })
}
exports.post = function (req, res) {
const keys = Object.keys(req.body)
for (key of keys) {
if (req.body[key] == "")
return res.send(`Preencha o campo ${key}`)
}
let { avatar_url, birth, name, services, gender } = req.body
birth = Date.parse(birth)
const created_at = Date.now()
const id = Number(data.instructors.length + 1)
data.instructors.push({
id,
avatar_url,
name,
birth,
gender,
services,
created_at
})
fs.writeFile("data.json", JSON.stringify(data, null, 2), function (err) {
if (err) return res.send("Write file error")
return res.redirect('/instructors')
})
// return res.send(req.body)
}
exports.edit = function (req, res) {
const { id } = req.params
const foundInstructors = data.instructors.find(function (instructor) {
return instructor.id == id
})
if (!foundInstructors) return res.send("Instructor not found!")
const instructor = {
...foundInstructors,
birth: date(foundInstructors.birth)
}
return res.render('instructors/edit', { instructor })
}
exports.put = function (req, res) {
const { id } = req.body
let index = 0
const foundInstructors = data.instructors.find(function (instructor, foundIndex) {
if (id == instructor.id) {
index = foundIndex
return true
}
})
if (!foundInstructors) return res.send("Instructor not found!")
const instructor = {
...foundInstructors,
...req.body,
birth: Date.parse(req.body.birth),
id: Number(req.body.id)
}
data.instructors[index] = instructor
fs.writeFile('data.json', JSON.stringify(data, null, 2), function (err) {
if (err) return res.send("Write error!")
return res.redirect(`/instructors/${id}`)
})
}
exports.delete = function (req, res) {
const { id } = req.body
const filteredInstructors = data.instructors.filter(function (instructor) {
return instructor.id != id
})
data.instructors = filteredInstructors
fs.writeFile("data.json", JSON.stringify(data, null, 2), function (err) {
if (err) return res.send("Write file error!")
return res.redirect("/instructors")
})
}