-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdataProvider.js
76 lines (62 loc) · 1.69 KB
/
dataProvider.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
const { Pool } = require('pg')
const auth = require("./auth.json");
const jsonMan = require("./jsonMan.js");
const test = require("./testingMethods.js");
const pool = new Pool({
host: 'localhost',
database: auth.db,
user: auth.dbuser,
password: auth.dbpass,
port:5432,
max: 20,
idleTimeoutMillis: 30000,
connectionTimeoutMillis: 2000,
})
module.exports = {
test: async () => {
let client = await pool.connect();
let res = await client.query('SELECT NOW()');
client.release();
console.log(res);
},
add: async (table, information) => {
try{
let query = `SELECT * FROM information_schema.columns WHERE TABLE_NAME = '${table}';`;
let client = await pool.connect();
let res = await client.query(query);
let values = "";
for(let row of information){
values = jsonMan.valueConverter(row);
query = `INSERT INTO ${table} VALUES(${values})`;
await client.query(query);
}
client.release();
}catch(e){
test.errorLog(e);
test.errorLog(query);
}
},
retrieve: async (table, pk, key) => {
try{
let query = `SELECT * FROM ${table} WHERE ${pk} = '${key}';`;
let client = await pool.connect();
let res = await client.query(query);
client.release();
return res;
}catch(e){
test.errorLog(e);
test.errorLog(query);
}
},
custom: async query => {
try{
let client = await pool.connect();
let res = await client.query(query);
client.release();
return res;
}catch(e){
test.errorLog(e);
test.errorLog(query);
}
}
}