-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql.js
174 lines (174 loc) · 3.9 KB
/
sql.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
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Sql = exports.init = void 0;
const mysql = require("mysql2");
let pool;
function init(poolConfig) {
if (!poolConfig)
throw new Error("Missing poolConfig");
if (!pool)
pool = mysql.createPool(poolConfig);
}
exports.init = init;
class Sql {
constructor() {
// https://www.npmjs.com/package/mysql2
this.connection = null;
this.pendingTransaction = false;
this.affectedRows = 0;
this.resultFields = null;
}
static async connect(callback) {
return new Promise(function (resolve, reject) {
pool.getConnection(function (error, connection) {
if (error) {
reject(error);
return;
}
const sql = new Sql();
sql.connection = connection;
function cleanUp() {
if (sql) {
sql.connection = null;
sql.resultFields = null;
}
connection.release();
}
try {
callback(sql)
.then(function (value) {
if (sql.pendingTransaction) {
sql.pendingTransaction = false;
connection.rollback(function () {
cleanUp();
resolve(value);
});
}
else {
cleanUp();
resolve(value);
}
}, function (reason) {
if (sql.pendingTransaction) {
sql.pendingTransaction = false;
connection.rollback(function () {
cleanUp();
reject(reason);
});
}
else {
cleanUp();
reject(reason);
}
});
}
catch (e) {
if (sql.pendingTransaction) {
sql.pendingTransaction = false;
connection.rollback(function () {
cleanUp();
reject(e);
});
}
else {
cleanUp();
reject(e);
}
}
});
});
}
async query(queryStr, values) {
return new Promise((resolve, reject) => {
const callback = (error, results, fields) => {
if (error) {
reject(error);
return;
}
this.affectedRows = parseInt(results.affectedRows) | 0;
this.resultFields = (fields || null);
resolve(results);
};
if (!this.connection)
throw new Error("Null connection");
if (values && values.length)
this.connection.query(queryStr, values, callback);
else
this.connection.query(queryStr, callback);
});
}
async scalar(queryStr, values) {
return new Promise((resolve, reject) => {
const callback = (error, results, fields) => {
if (error) {
reject(error);
return;
}
this.affectedRows = parseInt(results.affectedRows) | 0;
this.resultFields = (fields || null);
if (results) {
const r = results[0];
if (r) {
for (let i in r) {
resolve(r[i]);
return;
}
}
}
resolve(null);
};
if (!this.connection)
throw new Error("Null connection");
if (values && values.length)
this.connection.query(queryStr, values, callback);
else
this.connection.query(queryStr, callback);
});
}
async beginTransaction() {
if (this.pendingTransaction)
throw new Error("There is already an open transaction in this connection");
return new Promise((resolve, reject) => {
if (!this.connection)
throw new Error("Null connection");
this.connection.beginTransaction((error) => {
if (error) {
reject(error);
return;
}
this.pendingTransaction = true;
resolve();
});
});
}
async commit() {
if (!this.pendingTransaction)
return;
return new Promise((resolve, reject) => {
if (!this.connection)
throw new Error("Null connection");
this.connection.commit((error) => {
if (error) {
reject(error);
return;
}
this.pendingTransaction = false;
resolve();
});
});
}
async rollback() {
if (!this.pendingTransaction)
return;
return new Promise((resolve, reject) => {
if (!this.connection)
throw new Error("Null connection");
this.connection.rollback(() => {
this.pendingTransaction = false;
resolve();
});
});
}
}
exports.Sql = Sql;
;