forked from mlaanderson/database-js-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
137 lines (125 loc) · 3.28 KB
/
index.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
var pg = require('pg');
var m_connection = Symbol('connection');
var m_transaction = Symbol('transaction');
class PostgreSQL {
constructor(connection) {
this[m_connection] = connection;
this[m_transaction] = false;
}
/**
* Queries the database
* @param {string} sql
* @returns {Promise<Array<any>>}
*/
query(sql) {
var self = this;
return new Promise((resolve, reject) => {
self[m_connection].query(sql, (error, data) => {
if (error) {
reject(error);
} else if (data.rows) {
resolve(JSON.parse(JSON.stringify(data.rows)));
} else {
resolve(data);
}
});
});
}
/**
* Executes the sql on the database
* @param {string} sql
* @returns {Promise<Array<any>>}
*/
execute(sql) {
return this.query(sql);
}
/**
* Closes the database
* @returns {Promise}
*/
close() {
var self = this;
return new Promise((resolve, reject) => {
self[m_connection].end((err) => {
if (err) {
reject(err);
} else {
resolve();
}
});
});
}
isTransactionSupported() {
return true;
}
inTransaction() {
return this[m_transaction];
}
beginTransaction() {
var self = this;
if (this.inTransaction() == true) {
return Promise.resolve(false);
}
return new Promise((resolve, reject) => {
this.execute('BEGIN')
.then(() => {
self[m_transaction] = true;
resolve(true);
})
.catch(error => {
reject(error);
});
});
}
commit() {
var self = this;
if (this.inTransaction() == false) {
return Promise.resolve(false);
}
return new Promise((resolve, reject) => {
this.execute('COMMIT')
.then(() => {
self[m_transaction] = false;
resolve(true);
})
.catch(error => {
reject(error);
})
});
}
rollback() {
var self = this;
if (this.inTransaction() == false) {
return Promise.resolve(false);
}
return new Promise((resolve, reject) => {
this.execute('ROLLBACK')
.then(() => {
self[m_transaction] = false;
resolve(true);
})
.catch(error => {
reject(error);
})
});
}
}
/**
* Opens a connection
* @param {{Hostname: string, Port: number, Username: string, Password: string, Database: string}} connection
* @returns {PostgreSQL}
*/
function OpenConnection(connection) {
let base = new pg.Client({
host: connection.Hostname || 'localhost',
port: parseInt(connection.Port) || 5432,
user: connection.Username,
password: connection.Password,
database: connection.Database
});
base.connect();
return new PostgreSQL(base);
}
module.exports = {
open: OpenConnection
};