This repository was archived by the owner on Sep 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsql-utils.js
More file actions
184 lines (160 loc) · 4.78 KB
/
sql-utils.js
File metadata and controls
184 lines (160 loc) · 4.78 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
/**
* Created by kbarbounakis on 4/3/15.
*/
/**
* SQL Escape global function
*/
/**
* @param {string} tz
*/
function convertTimezone(tz) {
if (tz === "Z") return 0;
var m = tz.match(/([\+\-\s])(\d\d):?(\d\d)?/);
if (m) {
return (m[1] === '-' ? -1 : 1) * (parseInt(m[2], 10) + ((m[3] ? parseInt(m[3], 10) : 0) / 60)) * 60;
}
return false;
}
function zeroPad(number, length) {
number = number.toString();
while (number.length < length) {
number = '0' + number;
}
return number;
}
function dateToString(date, timeZone) {
var dt = new Date(date);
if (timeZone !== 'local') {
var tz = convertTimezone(timeZone);
dt.setTime(dt.getTime() + (dt.getTimezoneOffset() * 60000));
if (tz !== false) {
dt.setTime(dt.getTime() + (tz * 60000));
}
}
var year = dt.getFullYear();
var month = zeroPad(dt.getMonth() + 1, 2);
var day = zeroPad(dt.getDate(), 2);
var hour = zeroPad(dt.getHours(), 2);
var minute = zeroPad(dt.getMinutes(), 2);
var second = zeroPad(dt.getSeconds(), 2);
var millisecond = zeroPad(dt.getMilliseconds(), 3);
return year + '-' + month + '-' + day + ' ' + hour + ':' + minute + ':' + second + '.' + millisecond;
}
/**
* @param {Buffer} buffer
* @returns {string}
*/
function bufferToString(buffer) {
var hex = '';
try {
hex = buffer.toString('hex');
} catch (err) {
// node v0.4.x does not support hex / throws unknown encoding error
for (var i = 0; i < buffer.length; i++) {
var byte = buffer[i];
hex += zeroPad(byte.toString(16));
}
}
return "X'" + hex+ "'";
}
function objectToValues(object, timeZone) {
var values = [];
for (var key in object) {
if (object.hasOwnProperty(key)) {
var value = object[key];
if(typeof value === 'function') {
continue;
}
values.push(escapeId(key) + ' = ' + escape(value, true, timeZone));
}
}
return values.join(', ');
}
function arrayToList(array, timeZone) {
return array.map(function(v) {
if (Array.isArray(v)) return '(' + arrayToList(v, timeZone) + ')';
return escape(v, true, timeZone);
}).join(', ');
}
function escapeId(val, forbidQualified) {
if (Array.isArray(val)) {
return val.map(function(v) {
return escapeId(v, forbidQualified);
}).join(', ');
}
if (forbidQualified) {
return '`' + val.replace(/`/g, '``') + '`';
}
return '`' + val.replace(/`/g, '``').replace(/\./g, '`.`') + '`';
}
var STR_ESCAPE_REGEXP = /[\0\n\r\b\t\\'"\x1a]/g;
function escape(val, stringifyObjects, timeZone) {
if (typeof val === 'undefined' || val === null) {
return 'NULL';
}
switch (typeof val) {
case 'boolean': return (val) ? 'true' : 'false';
case 'number': return val+'';
}
if (val instanceof Date) {
val = dateToString(val, timeZone || 'local');
}
if (Buffer.isBuffer(val)) {
return bufferToString(val);
}
if (Array.isArray(val)) {
return arrayToList(val, timeZone);
}
if (typeof val === 'object') {
if (stringifyObjects) {
val = val.toString();
} else {
return objectToValues(val, timeZone);
}
}
val = val.replace(STR_ESCAPE_REGEXP, function(s) {
switch(s) {
case "\0": return "\\0";
case "\n": return "\\n";
case "\r": return "\\r";
case "\b": return "\\b";
case "\t": return "\\t";
case "\x1a": return "\\Z";
default: return "\\"+s;
}
});
return "'"+val+"'";
}
function format(sql, values, stringifyObjects, timeZone) {
values = (typeof values === 'undefined' || values === null) ? [] : [].concat(values);
var index = 0;
return sql.replace(/\?\??/g, function(match) {
if (index === values.length) {
return match;
}
var value = values[index++];
return match === '??'
? escapeId(value)
: escape(value, stringifyObjects, timeZone);
});
}
if (typeof exports !== 'undefined') {
/**
* Escapes the given value and returns an equivalent string which is going to be used in SQL expressions.
* @param {*} val
* @returns {*}
*/
module.exports.escape = function(val) {
return escape(val);
};
/**
* Formats the given SQL expression string and replaces parameters with the given parameters, if any.
* e.g. * SELECT * FROM User where username=? with values: ['user1'] etc.
* @param {string} sql
* @param {*=} values
* @returns {*}
*/
module.exports.format = function(sql, values) {
return format(sql, values);
};
}