-
Notifications
You must be signed in to change notification settings - Fork 4
/
QueryBuilder.js
324 lines (284 loc) · 8.35 KB
/
QueryBuilder.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
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
'use strict'
var QueryMissingFieldException = require('./Exceptions/QueryMissingFieldException');
var QueryTypeException = require('./Exceptions/QueryTypeException');
var QueryEmptyException = require('./Exceptions/QueryEmptyException');
var moment = require('moment');
/**
* QueryBuilder: For constructing advanced serviceNOW queries
*/
class QueryBuilder{
constructor(){
this.query = [];
this.currentField = '';
}
/**
* Sets the field to operate on
*
* @param {String} fieldName
*/
field(fieldName){
this.currentField = fieldName;
return this;
}
/**
* Sets ordering of field to descending
*/
orderDescending(){
this.query.push('ORDERBYDESC' + this.currentField);
return this;
}
/**
* Sets ordering of field to ascending
*/
orderAscending(){
this.query.push('ORDERBY' + this.currentField);
return this;
}
/**
* Adds new STARTSWITH condition
*
* @param {String} startsWithStr
*/
startsWith(startsWithStr){
return this._addCondition('STARTSWITH', startsWithStr, ['string']);
}
/**
* Adds new ENDSWITH condition
*
* @param {String} endsWithStr
*/
endsWith(endsWithStr){
return this._addCondition('ENDSWITH', endsWithStr, ['string']);;
}
/**
* Adds new LIKE condition
*
* @param {String} containesStr
*/
contains(containesStr){
return this._addCondition('LIKE', containesStr, ['string']);
}
/**
* Adds new NOTLIKE condition
*
* @param {String} notContainesStr
*/
doesNotContain(notContainesStr){
return this._addCondition('NOTLIKE', notContainesStr, ['string']);
}
/**
* Adds new ISEMPTY condition
*/
isEmpty(){
return this._addCondition('ISEMPTY', '', ['string', 'number']);
}
/**
* Adds new ISNOTEMPTY condition
*/
isNotEmpty(){
return this._addCondition('ISNOTEMPTY', '', ['string', 'number']);
}
/**
* Adds new equality condition
*
* @param {String} data
*/
equals(data){
if (typeof data == 'string' || typeof data == 'number'){
return this._addCondition('=', data, ['string', 'number']);
} else if (Array.isArray(data)){
return this._addCondition('IN', data, ['object']);
}
throw new QueryTypeException('Expected string or list type, found: ' + typeof data);
}
/**
* Adds new non equality condition
*
* @param {String} data
*/
notEquals(data){
if (typeof data == 'string' || typeof data == 'number'){
return this._addCondition('!=', data, ['string', 'number']);
} else if (Array.isArray(data)){
return this._addCondition('NOT IN', data, ['object']);
}
throw new QueryTypeException('Expected string or list type, found: ' + typeof data);
}
/**
* Adds new '>' condition
*
* @param {String} greaterThanValue
*/
greaterThan(greaterThanValue){
return this._addComparisonCondition(greaterThanValue, '>');
}
/**
* Adds new '>=' condition
*
* @param {String} greaterThanOrIsValue
*/
greaterThanOrIs(greaterThanOrIsValue){
return this._addComparisonCondition(greaterThanOrIsValue, '>=');
}
/**
* Adds new '<' condition
*
* @param {String} lessThanValue
*/
lessThan(lessThanValue){
return this._addComparisonCondition(lessThanValue, '<');
}
/**
* Adds new '<=' condition
*
* @param {String} lessThanOrIsValue
*/
lessThanOrIs(lessThanOrIsValue){
return this._addComparisonCondition(lessThanOrIsValue, '<=');
}
/**
* Adds new 'BETWEEN' condition
*
* @param {String} startValue
* @param {String} endValue
*/
between(startValue, endValue){
var betweenOperand = '';
if ((typeof startValue == 'number' && typeof endValue == 'number')
|| (typeof startValue == 'string' && typeof endValue == 'string')){
betweenOperand = `${startValue}@${endValue}`;
} else if ((startValue instanceof Date || startValue instanceof moment)
&& (endValue instanceof Date || endValue instanceof moment)){
betweenOperand = `${this._getDateTimeInUTC(startValue)}@${this._getDateTimeInUTC(endValue)}`;
} else {
throw new QueryTypeException('Expected string/date/number type, found: ' + typeof data);
}
return this._addCondition('BETWEEN', betweenOperand, ['string']);
}
/**
* Adds new 'ANYTHING' condition
*/
isAnything(){
return this._addCondition('ANYTHING', '', ['string', 'number']);
}
/**
* Adds new 'IN' condition
*
* @param {Object} data Array to be searched
*/
isOneOf(data){
if (Array.isArray(data)){
return this._addCondition('IN', data.join(','), ['string']);
}
throw new QueryTypeException('Expected array type, found: ' + typeof data);
}
/**
* Adds new 'EMPTYSTRING' condition
*/
isEmptyString(){
return this._addCondition('EMPTYSTRING', '', ['string']);
}
/**
* Adds AND operator
*/
and(){
return this._addLogicalOperator('^');
}
/**
* Addds OR operator
*/
or(){
return this._addLogicalOperator('^OR');
}
/**
* Adds new NQ operator
*/
NQ(){
return this._addLogicalOperator('^NQ');
}
/**
* Adds logical operator to current query string
*
* @param {String} operator
*/
_addLogicalOperator(operator){
this.query.push(operator);
return this;
}
/**
* Adds new condition to current query string
*
* @param {String} operator
* @param {String} operand
* @param {List} types
*/
_addCondition(operator, operand, types){
if (!this.currentField){
throw new QueryMissingFieldException('Conditions requires a field.');
}
if (!types.includes(typeof operand)){
var errorMessage = '';
if (types.length > 1){
errorMessage = 'Invalid type passed. Expected one of: ' + types;
} else {
errorMessage = 'Invalid type passed. Expected: ' + types;
}
throw new QueryTypeException(errorMessage);
}
this.query.push(this.currentField + operator + operand);
return this;
}
/**
* Builds serviceNOW readable the query.
*
* @returns {String} encoded serviceNOW query
*/
build(){
if (this.query.length == 0){
throw new QueryEmptyException('Atleast one condition is required in query.');
}
return this.query.join('');
}
/**
* Converts date/moment object to UTC and formats to ServiceNOW readable date string.
* Also supports moment date objects
*
* @param {Object} dateTime
*
* @returns {String} formatted Date-Time String
*
*/
_getDateTimeInUTC(dateTime){
//Support of Moment Date object
if (dateTime instanceof moment){
return this._formatDateTime(dateTime);
}
return this._formatDateTime(moment(new Date(dateTime.toUTCString().substr(0, 25))));
}
/**
* Formats serviceNOW readable date
*
* @param {moment} momentDate
*
* @returns {String} formatted date string
*
*/
_formatDateTime(momentDate){
return momentDate.format('YYYY-MM-DD hh:mm:ss').toString();
}
/**
* Adds comparison conditions {'>', '<', '>=', '<='}
*
* @param {String} valueToCompare
* @param {String} operator
*/
_addComparisonCondition(valueToCompare, operator){
if (valueToCompare instanceof Date || valueToCompare instanceof moment){
valueToCompare = this._getDateTimeInUTC(valueToCompare);
} else if (!(typeof valueToCompare == 'number' || typeof valueToCompare == 'string')){
throw new QueryTypeException('Expected string/Date/number type, found: ' + typeof valueToCompare);
}
return this._addCondition(operator, valueToCompare, ['number', 'string']);
}
}
module.exports = QueryBuilder;