-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.js
39 lines (35 loc) · 1.03 KB
/
functions.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
const fs = require('fs');
// Função de tratamento para resposta da requisição
function repostaRequisicao(res, statusCode, message) {
res.writeHead(statusCode, { 'Content-Type': 'application/json' });
if (message) {
res.end(JSON.stringify(message));
} else {
res.end();
}
}
// Função de tratamento do JSON passado na requisição
function trataJSON(requisicao) {
try {
let cache = JSON.parse(requisicao);
return cache;
} catch (error) {
console.info('[API-HTTP][TRATAR-JSON][ERRO]: Erro ao realizar o tratamento do JSON', error);
return false;
}
}
// Função de leitura de arquivo na persistência
function lerArquivoPersistencia(path) {
try {
let cache = JSON.parse(fs.readFileSync(path));
return cache;
} catch (error) {
console.info('[API-HTTP][ARQUIVO-PERSISTENCIA][ERRO]: Erro ao ler arquivo na persistencia', path);
return false;
}
}
module.exports = {
repostaRequisicao,
trataJSON,
lerArquivoPersistencia
}