-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.js
79 lines (64 loc) · 2.04 KB
/
database.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
const {readFile, writeFile} = require('fs');
const {promisify} = require('util');
const readFileAsync = promisify(readFile);
const writeFileAsync = promisify(writeFile);
class Database {
constructor(){
this.NOME_ARQUIVO = 'herois.json';
}
async obterDadosArquivo () {
const arquivo = await readFileAsync(this.NOME_ARQUIVO, 'utf8');
const res = JSON.parse(arquivo.toString());
return res;
}
async escreverArquivo(data){
await writeFileAsync(this.NOME_ARQUIVO, JSON.stringify(data));
return true;
}
async cadastrar(heroi){
const data = await this.obterDadosArquivo();
const heroiWithId = heroi;
const newData = [
...data,
heroiWithId
]
const response = await this.escreverArquivo(newData);
return response;
}
async listar(id){
const dados = await this.obterDadosArquivo();
const dadosFiltrados = dados.filter(item => (id ? (item.id === id): true));
return dadosFiltrados;
}
async remover(id){
if(!id)
return await this.escreverArquivo([]);
const dados = await this.obterDadosArquivo();
const index = dados.findIndex(item => item.id === parseInt(id));
if(index === -1)
throw Error('O heroi informado não existe');
dados.splice(index, 1);
return await this.escreverArquivo(dados);
}
async atualizar(id, newDados){
const dados = await this.obterDadosArquivo();
const index = dados.findIndex(item => item.id === parseInt(id));
if(index === -1 )
throw Error('O heroi informado não existe');
const atual = dados[index];
newDados = {
...newDados,
id
}
const objetoAtualizar = {
...atual,
...newDados
}
dados.splice(index, 1);
return await this.escreverArquivo([
...dados,
objetoAtualizar
]);
}
}
module.exports = new Database();