This repository was archived by the owner on Jul 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpostgresql-query.js
More file actions
executable file
·429 lines (361 loc) · 11.1 KB
/
Copy pathpostgresql-query.js
File metadata and controls
executable file
·429 lines (361 loc) · 11.1 KB
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
'use strict';
//
// Node.js modules sand 3rd party libs.
//
var lib = {
pg: require('pg')
};
//
// Public API
//
module.exports = {
config: config,
query: query,
queryOne: queryOne,
queryInsert: queryInsert,
queryUpdate: queryUpdate,
beginTransaction: pgTransaction
};
//
// Internal connection pool.
//
var pool;
//
// Prepare module for querying.
//
function config(options) {
options = options || {};
options.user = options.username = options.username || 'postgres';
options.password = options.password || '';
options.host = options.host || '127.0.0.1';
options.port = options.port || 5432;
options.database = options.database || 'postgres';
if (options.ssl === true) {
options.ssl = { rejectUnauthorized: false };
}
pool = new lib.pg.Pool(options);
}
//
// Query a database with parameters and get results in a callback function.
// Or run multiple queries in specified order and get all results in a finalCallback functions.
//
// query(sql, values, callback)
//
// query('SELECT * FROM albums WHERE artist_id = $1', 47, function (err, albums) {
//
// });
//
// query(tasks, finalCallback)
//
// query([
// ['SELECT * FROM albums WHERE artist_id = $1', 47],
// ['SELECT * FROM genres WHERE artist_id = $1 AND mood = $2', [47, 'sad']],
// ['SELECT * FROM comments WHERE artist_id = $1', [47]]
// ], function (err, albums, genres, comments) {
//
// });
//
function query() {
var args = Array.prototype.slice.call(arguments);
var tasks = args[0];
var callback = args[args.length - 1];
var isMultiQueryMode = Array.isArray(tasks);
var hasCallback = isFunction(callback);
var sqlQuery;
var sqlValues;
pool.connect(function (err, client, done) {
if (err && hasCallback) {
return callback(err, null);
}
if (isMultiQueryMode) {
queryTasks(client, done, tasks, function () {
done();
if (hasCallback) {
callback.apply(null, arguments);
}
});
} else {
sqlQuery = tasks;
sqlValues = hasCallback ? args.slice(1, args.length - 1) : args.slice(1);
client.query(sqlQuery, flatArray(sqlValues), function (err, result) {
done();
var rows = (result && Array.isArray(result.rows)) ? result.rows : [];
if (hasCallback) {
callback(err, rows);
}
});
}
});
}
//
// Query a database and use only the first row.
//
function queryOne(sql, values, callback) {
query(sql, values, function (err, rows) {
if (typeof callback === 'function') {
callback(err, rows[0]);
}
});
}
//
// Run INSERT query built by buildInsertQuery()
// and get result in a callback function.
//
function queryInsert(data, callback) {
var q = buildInsertQuery(data);
queryOne(q.sql, q.values, callback);
}
//
// Run UPDATE query built by buildUpdateQuery()
// and get result in a callback function.
//
function queryUpdate(data, callback) {
var q = buildUpdateQuery(data);
queryOne(q.sql, q.values, callback);
}
//
// Query builder for INSERT statement.
//
// buildInsertQuery({
// table: 'user',
// fields: {
// first_name: 'John',
// last_name: 'Doe',
// email: 'example@example.com'
// },
// returnValue: 'user_id'
// });
//
// Returns:
// {
// sql: 'INSERT INTO user ( first_name, last_name, email ) VALUES ( $1, $2, $3 ) RETURNING user_id',
// values: ['John', 'Doe', 'example@example.com']
// }
//
function buildInsertQuery(data) {
var sql = 'INSERT INTO ' + data.table + ' ( ';
var fields = Object.keys(data.fields);
var pIndex = 0;
var values = [];
fields.forEach(function (field, i) {
var isLastField = (fields.length === i + 1);
sql += field + (isLastField ? ' ' : ', ');
});
sql += ') VALUES ( ';
fields.forEach(function (field, i) {
var isLastField = (fields.length === i + 1);
var val = data.fields[field];
if (field === 'sort_order' && val === 'auto') {
sql += '(SELECT COALESCE(MAX(sort_order), 0) + 1 FROM ' + data.table + ')';
} else {
sql += '$' + (pIndex += 1);
values.push(val);
}
sql += isLastField ? ' ' : ', ';
});
sql += ')';
if (data.returnValue) {
sql += ' RETURNING ' + data.returnValue;
}
return { sql : sql, values: values };
}
//
// Query builder for UPDATE statement.
//
// buildUpdateQuery({
// table: 'user',
// fields: {
// first_name: 'John',
// last_name: 'Doe',
// email: 'example@example.com'
// },
// where: {
// userId: 47
// }
// });
//
// Returns:
// {
// sql: 'UPDATE user SET first_name = $1, last_name = $2, email = $3 WHERE id = $4',
// values: ['John', 'Doe', 'example@example.com', 47]
// }
//
function buildUpdateQuery(data) {
var sql = 'UPDATE ' + data.table + ' SET ';
var fields = Object.keys(data.fields);
var where = Object.keys(data.where);
var values = [];
fields.forEach(function (field, i) {
var pIndex = i + 1;
var isLastField = (fields.length === pIndex);
var val = data.fields[field];
if (isObject(val) && Object.keys(val).length) {
// Concatanate JSON data instead of replacing it.
sql += field + ' = ' + field + ' || $' + pIndex;
} else {
sql += field + ' = $' + pIndex;
}
sql += isLastField ? ' ' : ', ';
values.push(val);
});
sql += ' WHERE ';
where.forEach(function (field, i) {
var pIndex = fields.length + i + 1;
var isLastField = (where.length === i + 1);
sql += field + ' = $' + pIndex + (isLastField ? ' ' : ' AND ');
values.push(data.where[field]);
});
if (data.returnValue) {
sql += ' RETURNING ' + data.returnValue;
}
return { sql: sql, values: values };
}
//
// Run multiple SQL queries in specified order and
// get all results in a finalCallback function.
//
// Note: In order for this function to be usable during transactions
// client.end() isn't automatically called when finalCallback function is present.
//
function queryTasks(client, done, tasks, finalCallback) {
var hasFinalCallback = isFunction(finalCallback);
var count = tasks.length;
var results = [];
function runQuery(index) {
if (index >= count) {
if (hasFinalCallback) {
finalCallback.apply(null, [null].concat(results));
} else {
done();
}
} else {
var task = tasks[index];
var sqlQuery, sqlParams;
if (isObject(task)) {
var q = task.where ? buildUpdateQuery(task) : buildInsertQuery(task);
sqlQuery = q.sql;
sqlParams = q.values;
} else {
sqlQuery = task[0];
sqlParams = flatArray(task.slice(1));
}
function internalCallback(err, result) {
var rows = (result && Array.isArray(result.rows)) ? result.rows : [];
// Insert/Update statments doesn't
// return more than one row right?
if (isObject(task) && rows.length === 1) {
rows = rows[0];
}
if (err) {
if (hasFinalCallback) {
results.push(rows);
finalCallback.apply(null, [err].concat(results));
} else {
done();
}
} else {
if (sqlQuery !== 'BEGIN') {
results.push(rows);
}
runQuery(index + 1);
}
}
client.query(sqlQuery, sqlParams, internalCallback);
}
}
runQuery(0);
}
//
// Better wrapper for transactions.
//
function pgTransaction(callback) {
var ended = false;
function rollbackFromPool(client, done, cb) {
ended = true;
client.query('ROLLBACK', function (err) {
done();
if (err) {
console.error(new Date(), '=> ERROR: postgresql-query transaction > client.query ROLLBACK', err);
}
if (isFunction(cb)) {
cb(err, null);
}
});
}
function commitCurrentTransaction(client, done, cb) {
ended = true;
client.query('COMMIT', function (err) {
done();
if (err) {
console.error(new Date(), '=> ERROR: postgresql-query transaction > client.query COMMIT', err);
}
if (isFunction(cb)) {
cb(err, null);
}
});
}
if (isFunction(callback)) {
pool.connect(function (err, client, done) {
if (err) {
console.error(new Date(), '=> ERROR: postgresql-query transaction > pool.connect()', err);
return callback(err);
}
var transactionObject = {
rollback: function (cb) {
rollbackFromPool(client, done, cb);
},
commit: function (cb) {
commitCurrentTransaction(client, done, cb);
},
query: function (tasks, cb) {
tasks = Array.isArray(tasks) ? tasks : [tasks];
if (!ended) {
queryTasks(client, done, tasks, cb);
}
}
};
client.query('BEGIN', function (err) {
if (err) {
done();
ended = true;
console.error(new Date(), '=> ERROR: postgresql-query transaction > client.query BEGIN', err);
return callback(err);
}
callback(null, transactionObject);
});
});
}
}
//
// Convert any number of multi-diemensional array-like objects
// into a single flat array.
//
// Example:
// flatArray(1, 2, [3, 4, [5]], '6', ['7'], { num: 8 }, [9], 10);
// => [1, 2, 3, 4, 5, '6', '7', { num: 8 }, 9, 10]
//
function flatArray() {
var flat = [], i, arg, isArrayLike;
for (i = 0; i < arguments.length; i += 1) {
arg = arguments[i];
isArrayLike = arg && typeof arg === 'object' && arg.length !== undefined;
if (isArrayLike) {
flat = flat.concat(flatArray.apply(null, arg));
} else {
flat.push(arg);
}
}
return flat;
}
//
// Check if variable is a valid object.
//
function isObject(obj) {
return Object.prototype.toString.call(obj) === '[object Object]';
}
//
// Check if variable is a valid function.
//
function isFunction(obj) {
return typeof obj === 'function';
}