-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask.js
242 lines (218 loc) · 6.37 KB
/
task.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
const readline = require('readline-sync')
const db = require('./db')
const util = require('util')
const query = util.promisify(db.connection.query).bind(db.connection)
function getSingleTaskById(getTaskId) {
console.log('\n===== BUSCAR TAREFA =====')
getTaskId = readline.questionInt(
'\nQual o id da tarefa que você quer buscar?\n',
{
limitMessage:
'Desculpe, esse campo aceita apenas números inteiros... Tente novamente...'
}
)
db.connection.connect(async function (err) {
if (err) {
console.log('Não há conexão com o banco de dados...')
throw err
} else {
let rowFoundTask = []
rowFoundTask = await query(
`SELECT content, isDone FROM todo WHERE id IN (${getTaskId})`
)
if (rowFoundTask.length != 0) {
for (let index = 0; index < rowFoundTask.length; index++) {
console.log(
`\n===== TAREFA =====\n\n` +
'Conteúdo da tarefa:\n ' +
rowFoundTask[index].content +
'\nStatus da tarefa:\n ' +
rowFoundTask[index].isDone
)
}
} else {
console.log(
'\nNão existe essa tarefa no banco de dados... Tente novamente...'
)
}
}
db.connection.end()
})
}
function getAllTasks() {
console.log('\n===== LISTAR TAREFAS =====')
db.connection.connect(async function (err) {
try {
let rowAllFoundTasks = []
rowAllFoundTasks = await query('SELECT * FROM todo')
if (rowAllFoundTasks != 0) {
console.log('\n===== TAREFAS =====')
for (let index = 0; index < rowAllFoundTasks.length; index++) {
console.log(
`\n==== Tarefa ${index + 1} ====\n` +
'\nConteúdo da tarefa:\n ' +
rowAllFoundTasks[index].content +
'\nStatus da tarefa:\n ' +
rowAllFoundTasks[index].isDone
)
}
} else {
console.log(
'\nNão existe tarefas no banco de dados... Tente novamente...'
)
}
} catch (e) {
console.log('Não há conexão com o banco de dados...')
throw err
} finally {
db.connection.end()
}
})
}
function createTask(newContent, newStatus) {
console.log('\n===== ADICIONAR TAREFA =====')
do {
newContent = readline.question('\nQual o conteúdo da tarefa?\n')
if (newContent == '') {
console.log('O texto não pode ser vazio... Tente novamente...')
}
} while (newContent == '')
readline.setDefaultOptions({
limit: ['1', '2', '3']
})
newStatus = readline.question(
'\nQual o status da tarefa? [1 - Pendente | 2 - Em andamento | 3 - Completo]\n',
{
limitMessage:
'Desculpe, esse campo aceita apenas números inteiros de 1 até 3... Tente novamente...'
}
)
switch (newStatus) {
case '1':
newStatus = 'Pendente'
break
case '2':
newStatus = 'Em andamento'
break
case '3':
newStatus = 'Completo'
}
db.connection.connect(function (err) {
if (err) {
console.log('Não há conexão com o banco de dados...')
throw err
} else {
query(
`INSERT INTO todo(content, isDone) VALUES ('${newContent}', '${newStatus}')`,
function (err, result) {
if (err) {
console.log(
'Não foi possível inserir novas tarefas no banco de dados...'
)
throw err
} else {
console.log(
`Nova tarefa com o ID ${result.insertId} foi adicionada.`
)
}
}
)
}
db.connection.end()
})
}
function updateTask(updateTaskId, newContent, newStatus) {
console.log('\n===== ALTERAR TAREFA =====')
updateTaskId = readline.questionInt(
'\nQual o id da tarefa que você quer atualizar?\n',
{
limitMessage:
'Desculpe, esse campo aceita apenas números inteiros... Tente novamente...'
}
)
do {
newContent = readline.question('\nQual o novo conteúdo da tarefa?\n')
if (newContent == '') {
console.log('O texto não pode ser vazio... Tente novamente...')
}
} while (newContent == '')
readline.setDefaultOptions({
limit: ['1', '2', '3']
})
newStatus = readline.question(
'\nQual o novo status da tarefa? [1 - Pendente | 2 - Em andamento | 3 - Completo]\n',
{
limitMessage:
'Desculpe, esse campo aceita apenas números inteiros de 1 até 3... Tente novamente...'
}
)
switch (newStatus) {
case '1':
newStatus = 'Pendente'
break
case '2':
newStatus = 'Em andamento'
break
case '3':
newStatus = 'Completo'
}
db.connection.connect(async function (err) {
if (err) {
console.log('Não há conexão com o banco de dados...')
throw err
} else {
let rowUpdateTask = []
;(rowUpdateTask = await query(
`SELECT content, isDone FROM todo WHERE id IN (${updateTaskId})`
)),
query(
`UPDATE todo SET content='${newContent}', isDone='${newStatus}' WHERE id='${updateTaskId}'`
)
if (rowUpdateTask.length != 0) {
console.log(`A tarefa com o ID ${updateTaskId} foi atualizada.`)
} else {
console.log(
`\nNão existe essa tarefa no banco de dados com o ID = ${updateTaskId}... Tente novamente...`
)
}
}
db.connection.end()
})
}
function deleteTaskById(deleteTaskId) {
console.log('\n===== DELETAR TAREFA =====')
deleteTaskId = readline.questionInt(
'\nQual o id da tarefa que você quer deletar?\n',
{
limitMessage:
'Desculpe, esse campo aceita apenas números inteiros... Tente novamente...'
}
)
db.connection.connect(async function (err) {
if (err) {
console.log('Não há conexão com o banco de dados...')
throw err
} else {
let rowUpdateTask = []
;(rowUpdateTask = await query(
`SELECT content, isDone FROM todo WHERE id IN (${deleteTaskId})`
)),
query(`DELETE FROM todo WHERE id='${deleteTaskId}'`)
if (rowUpdateTask.length != 0) {
console.log(`A tarefa com o ID ${deleteTaskId} foi removida.`)
} else {
console.log(
`\nNão existe essa tarefa no banco de dados com o ID = ${deleteTaskId}... Tente novamente...`
)
}
}
db.connection.end()
})
}
module.exports = {
getSingleTaskById,
getAllTasks,
createTask,
updateTask,
deleteTaskById
}