-
Notifications
You must be signed in to change notification settings - Fork 2
/
postgres-sql-adaptor.js
279 lines (235 loc) · 8.59 KB
/
postgres-sql-adaptor.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
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
/*
* Copyright 2013 Jive Software
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var q = require('q');
q.longStackSupport = true;
var jive = require('jive-sdk');
var flat = require('flat');
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Public API
function PostgresSqlAdaptor(schemaProvider) {
this.schemaProvider = schemaProvider;
}
module.exports = PostgresSqlAdaptor;
PostgresSqlAdaptor.prototype.createUpdateSQL = createUpdateSQL;
PostgresSqlAdaptor.prototype.createInsertSQL = createInsertSQL;
PostgresSqlAdaptor.prototype.createSelectSQL = createSelectSQL;
PostgresSqlAdaptor.prototype.createDeleteSQL = createDeleteSQL;
PostgresSqlAdaptor.prototype.hydrateResults = hydrateResults;
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Private
function isValue(value) {
return value || typeof value === 'number';
}
function throwError(detail) {
var error = new Error(detail);
jive.logger.error(error.stack);
throw error;
}
function sanitize(key) {
return key.replace('.', '_');
}
function hydrate(row) {
var toUnflatten = {};
var needFlatten;
/*** 1 of 3 - VARIABLE FOR STORING OAUTH KEY IF FOUND ***/
var oauthKey = null;
for (var dataKey in row) {
if (row.hasOwnProperty(dataKey)) {
var value = row[dataKey];
if (isValue(value) ) {
if ( value.indexOf && value.indexOf('<__@> ') == 0 ) {
value = value.split('<__@> ')[1];
value = JSON.parse(value);
needFlatten = true;
}
toUnflatten[dataKey] = value;
/*** 2 of 3 - IF KEY IS "oauth" THEN WE HOLD ONTO THE RAW VALUE ***/
if (dataKey === "oauth") {
oauthKey = value;
} // end if
}
}
}
var obj = toUnflatten;
if (needFlatten) {
obj = flat.unflatten(toUnflatten, {'delimiter': '_'});
/*** 3 of 3 - ADDED OPTION FOR OAUTH KEYS STORED IN JSON STRUCTURES, WHICH FLATTEN CORRUPTS TO "access" : {token : "xxxxx" } rather than preserve access_token; ***/
if (oauthKey) {
obj["oauth"] = oauthKey;
} // end if
} // end if
delete obj[""];
return obj;
}
function buildQueryArguments(collectionID, data, key) {
var self = this;
var keys = [], values = [], sanitized = {}, dataToSave = {};
var collectionSchema = self.schemaProvider.getTableSchema(collectionID);
if (typeof data === 'object') {
for (var k in collectionSchema) {
if (!collectionSchema.hasOwnProperty(k)) {
continue;
}
var keyParts = k !== '_id' ? k.split('_') : [k];
var entry = data;
var notFound = false;
for (var kp in keyParts) {
if (entry) {
entry = entry[ keyParts[kp]];
} else {
notFound = true;
break;
}
}
if (!notFound) {
dataToSave[k] = typeof entry === 'object' ? '<__@> ' + JSON.stringify(entry, null, 4) : entry;
}
}
} else {
dataToSave[key] = data;
dataToSave['_id'] = '' + key;
}
for (var dataKey in dataToSave) {
if (dataToSave.hasOwnProperty(dataKey)) {
var value = dataToSave[dataKey];
if (dataKey.indexOf('.') > -1) {
var originalKey = dataKey;
dataKey = sanitize(dataKey);
sanitized[dataKey] = originalKey;
}
if (isValue(value)) {
keys.push("\"" + dataKey + "\"");
if (typeof value == 'object') {
value = JSON.stringify(value);
}
values.push(isValue(value) ? "'" + value + "'" : 'null');
}
}
}
return {
keys : keys,
values : values
};
}
function createUpdateSQL(collectionID, data, key) {
var self = this;
// try to update first
var structure = buildQueryArguments.call(self, collectionID, data, key);
var values = structure.values;
var keys = structure.keys;
if (values.length < 1) {
throwError("cannot insert empty data");
}
var sql = "update \"" + collectionID + "\" set";
for ( var i = 0 ; i < keys.length; i++ ) {
sql += " " + keys[i] + "= " + values[i]
+ ( ( i < keys.length - 1 ) ? "," : "");
}
sql += " where _id='" + key + "'";
return sql;
}
function createInsertSQL(collectionID, data, key) {
var self = this;
var structure = buildQueryArguments.call(self, collectionID, data, key);
var values = structure.values;
var keys = structure.keys;
if (values.length < 1) {
var error = new Error("cannot insert empty data");
jive.logger.error(error.stack);
}
var sql = "insert into \"" + collectionID + "\" ( " + keys.join(',') + " ) " +
"values ( " + values.join(',') + ")";
return sql;
}
function createSelectSQL(collectionID, criteria, limit) {
var where = [];
var self = this;
if ( criteria ) {
for ( var dataKey in criteria ) {
if ( criteria.hasOwnProperty(dataKey) ) {
var original = dataKey;
dataKey = sanitize(dataKey);
var tableSchema = self.schemaProvider.getTableSchema(collectionID);
if ( tableSchema && tableSchema[dataKey]) {
var value = criteria[original];
if ( typeof value == 'object') {
var $gt = value['$gt'];
var $gte = value['$gte'];
var $lt = value['$lt'];
var $lte = value['$lte'];
var $in = value['$in'];
dataKey = "\"" + dataKey + "\"";
var subClauses = [];
if ( $gt ) {
subClauses.push( dataKey + " > '" + $gt + "'");
}
if ( $gte ) {
subClauses.push( dataKey + " >= '" + $gte + "'");
}
if ( $lt ) {
subClauses.push( dataKey + " < '" + $lt + "'" );
}
if ( $lte ) {
subClauses.push( dataKey + " <= '" + $lte + "'" );
}
if ( $in ) {
var ins = [];
$in.forEach( function(i) {
ins.push("'" + i + "'");
});
subClauses.push( dataKey + " in (" + ins.join(',') + ")" );
}
where.push( "(" + subClauses.join(' AND ') + ")");
} else {
dataKey = "\"" + dataKey + "\"";
var whereClause = dataKey + " = '" + value + "'";
where.push(whereClause);
}
} else {
throwError(collectionID + "." + dataKey + " does not exist");
}
}
}
}
var sql = "select * from \"" + collectionID + "\" ";
if ( where.length > 0 ) {
sql += "where " + where.join(' AND ');
}
if ( limit ) {
sql += " limit " + limit;
}
return sql;
}
function createDeleteSQL(collectionID, key ) {
if ( key ) {
return "delete from \"" + collectionID + "\" where _id = '" + key + "'";
} else {
return "delete from \"" + collectionID + "\"";
}
}
function hydrateResults(r) {
var results = [];
// build a json structure from the results, based on '_' delimiter
if (r.rows['indexOf']) {
r.rows.forEach( function(row) {
var obj = hydrate(row);
results.push(obj);
});
} else {
results.push(hydrate(r.rows));
}
return results;
}