-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathquery-builder.js
516 lines (463 loc) · 13.6 KB
/
query-builder.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
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
const QueryMissingFieldException = require('./exceptions/query-missing-field-exception');
const QueryTypeException = require('./exceptions/query-type-exception');
const QueryEmptyException = require('./exceptions/query-empty-exception');
/**
* @typedef {'year'|'month'|'week'|'day'|'hour'} RelativeToField
*/
/**
* @private
*/
class RelativeDateBuilder {
/**
* @param {QueryBuilder} parent Parent builder
* @param {string} quantifier Relationship between base and n
* @param {number} n Number of unit
* @param {RelativeToField} unit Unit of time
*/
constructor(parent, quantifier, n, unit) {
this.parent = parent;
this.quantifier = quantifier.toLocaleUpperCase();
this.n = n;
this.unit = unit;
}
/**
* Complete the condition and return control to the parent QueryBuilder.
* @param {string} field to compare against current field
* @returns {QueryBuilder} parent
*/
before(field) {
this.parent._addCondition(`${this.quantifier}THAN`, `${field}@${this.unit}@before@${this.n}`, ['string']);
return this.parent;
}
}
/**
* QueryBuilder: For constructing advanced ServiceNow queries
*/
class QueryBuilder {
constructor() {
this.query = [];
this.currentField = '';
}
/**
* Sets the field to operate on
*
* @param {string} fieldName Field name to operate on
* @returns {this} this
*/
field(fieldName) {
this.currentField = fieldName;
return this;
}
/**
* Sets ordering of field to descending
* @returns {this} this
*/
orderDescending() {
this.query.push('ORDERBYDESC' + this.currentField);
return this;
}
/**
* Sets ordering of field to ascending
* @returns {this} this
*/
orderAscending() {
this.query.push('ORDERBY' + this.currentField);
return this;
}
/**
* Adds new STARTSWITH condition
*
* @param {string} startsWithStr Substring to check
* @returns {this} this
*/
startsWith(startsWithStr) {
return this._addCondition('STARTSWITH', startsWithStr, ['string']);
}
/**
* Adds new ENDSWITH condition
*
* @param {String} endsWithStr Substring to check
* @returns {this} this
*/
endsWith(endsWithStr) {
return this._addCondition('ENDSWITH', endsWithStr, ['string']);
}
/**
* Adds new LIKE condition
*
* @param {String} containsStr Substring to check
* @returns {this} this
*/
contains(containsStr) {
return this._addCondition('LIKE', containsStr, ['string']);
}
/**
* Adds new NOTLIKE condition
*
* @param {String} notContainsStr Substring to check
* @returns {this} this
*/
doesNotContain(notContainsStr) {
return this._addCondition('NOTLIKE', notContainsStr, ['string']);
}
/**
* Adds new ISEMPTY condition
* @returns {this} this
*/
isEmpty() {
return this._addCondition('ISEMPTY', '', ['string']);
}
/**
* Adds new ISNOTEMPTY condition
* @returns {this} this
*/
isNotEmpty() {
return this._addCondition('ISNOTEMPTY', '', ['string']);
}
/**
* Adds new equality condition
*
* @param {string|number|string[]|number[]} data Value to check equality to
* @returns {this} this
* @throws {QueryTypeException}
*/
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, ['string', 'number']);
}
throw new QueryTypeException('Expected string or list type, found: ' + typeof data);
}
/**
* Adds new non equality condition
*
* @param {string|number|string[]|number[]} data Value to check inequality to
* @returns {this} this
* @throws {QueryTypeException}
*/
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, ['string', 'number']);
}
throw new QueryTypeException('Expected string or list type, found: ' + typeof data);
}
/**
* Adds new '>' condition
*
* @param {string|number|Date} greaterThanValue Value to compare against
* @returns {this} this
*/
greaterThan(greaterThanValue) {
return this._addComparisonCondition(greaterThanValue, '>');
}
/**
* Adds new '>=' condition
*
* @param {string|number|Date} greaterThanOrIsValue Value to compare against
* @returns {this} this
*/
greaterThanOrIs(greaterThanOrIsValue) {
return this._addComparisonCondition(greaterThanOrIsValue, '>=');
}
/**
* Adds new '<' condition
*
* @param {string|number|Date} lessThanValue Value to compare against
* @returns {this} this
*/
lessThan(lessThanValue) {
return this._addComparisonCondition(lessThanValue, '<');
}
/**
* Adds new '<=' condition
*
* @param {string|number|Date} lessThanOrIsValue Value to compare against
* @returns {this} this
*/
lessThanOrIs(lessThanOrIsValue) {
return this._addComparisonCondition(lessThanOrIsValue, '<=');
}
/**
* Adds new 'BETWEEN' condition
*
* @param {T} startValue Start value to compare against
* @param {T} endValue End value to compare against
* @template {string|number|Date} T
* @returns {this} this
* @throws {QueryTypeException}
*/
between(startValue, endValue) {
let betweenOperand = '';
if ((typeof startValue === 'number' && typeof endValue === 'number')
|| (typeof startValue === 'string' && typeof endValue === 'string')) {
betweenOperand = `${startValue}@${endValue}`;
} else if ((startValue instanceof Date)
&& (endValue instanceof Date)) {
betweenOperand = `${this._getDateTimeInUTC(startValue)}@${this._getDateTimeInUTC(endValue)}`;
} else {
throw new QueryTypeException('Expected string/date/number type, found: startValue:'
+ typeof startValue + ', endValue:'
+ typeof endValue);
}
return this._addCondition('BETWEEN', betweenOperand, ['string']);
}
/**
* Adds new 'ANYTHING' condition
* @returns {this} this
*/
isAnything() {
return this._addCondition('ANYTHING', '', ['string']);
}
/**
* Adds new 'IN' condition
*
* @param {string[]|number[]} data Array of strings to compare against
* @returns {this} this
* @throws {QueryTypeException}
*/
isOneOf(data) {
if (Array.isArray(data)) {
return this._addCondition('IN', data, ['string', 'number']);
}
throw new QueryTypeException('Expected array type, found: ' + typeof data);
}
/**
* Adds new 'NOT IN' condition
*
* @param {string[]|number[]} data Array of strings to compare against
* @returns {this} this
* @throws {QueryTypeException}
*/
isNoneOf(data) {
if (Array.isArray(data)) {
return this._addCondition('NOT IN', data, ['string', 'number']);
}
throw new QueryTypeException('Expected array type, found: ' + typeof data);
}
/**
* Adds new 'EMPTYSTRING' condition
* @returns {this} this
*/
isEmptyString() {
return this._addCondition('EMPTYSTRING', '', ['string']);
}
/**
* Adds new 'SAMEAS' condition
* @param {string} field string name of compared field
* @returns {this} this
*/
isSameAs(field) {
return this._addCondition('SAMEAS', field, ['string']);
}
/**
* Adds new 'NSAMEAS' condition
* @param {string} field string name of compared field
* @returns {this} this
*/
isNotSameAs(field) {
return this._addCondition('NSAMEAS', field, ['string']);
}
/**
* Adds new 'GT_FIELD' condition
*
* @param {string} field name of field to compare against
* @returns {this} this
*/
greaterThanField(field) {
return this._addComparisonCondition(field, 'GT_FIELD');
}
/**
* Adds new 'GT_OR_EQUALS_FIELD' condition
*
* @param {string} field name of field to compare against
* @returns {this} this
*/
greaterThanOrEqualToField(field) {
return this._addComparisonCondition(field, 'GT_OR_EQUALS_FIELD');
}
/**
* Adds new 'LT_FIELD' condition
*
* @param {string} field name of field to compare against
* @returns {this} this
*/
lessThanField(field) {
return this._addComparisonCondition(field, 'LT_FIELD');
}
/**
* Adds new 'LT_OR_EQUALS_FIELD' condition
*
* @param {string} field name of field to compare against
* @returns {this} this
*/
lessThanOrEqualToField(field) {
return this._addComparisonCondition(field, 'LT_OR_EQUALS_FIELD');
}
/**
* @typedef {'year'|'month'|'hour'|'minute'} RelativeToNow
*/
/**
* Adds new 'RELATIVEGT' condition
* @param {number} n number of unit
* @param {RelativeToNow} unit of time (year, month, hour, minute)
* @returns {this} this
*/
since(n, unit) {
if (!(typeof n === 'number' && typeof unit === 'string')) {
throw new QueryTypeException(`Expected (number, string); got (${typeof n}, ${typeof unit})`);
}
return this._addCondition('RELATIVEGT', `@${unit}@ago@${n}`, ['string']);
}
/**
* Adds new 'RELATIVELT' condition
* @param {number} n number of unit
* @param {RelativeToNow} unit of time (year, month, hour, minute)
* @returns {this} this
*/
notSince(n, unit) {
if (!(typeof n === 'number' && typeof unit === 'string')) {
throw new QueryTypeException(`Expected (number, string); got (${typeof n}, ${typeof unit})`);
}
return this._addCondition('RELATIVELT', `@${unit}@ago@${n}`, ['string']);
}
/**
* Adds new two-step fluent 'MORETHAN' condition
* @param {number} n number of unit
* @param {RelativeToField} unit of time (year, month, week, day, hour)
* @returns {RelativeDateBuilder} builder object supporting .before(field) -> original builder
*/
isMoreThan(n, unit) {
if (!(typeof n === 'number' && typeof unit === 'string')) {
throw new QueryTypeException(`Expected (number, string); got (${typeof n}, ${typeof unit})`);
}
return new RelativeDateBuilder(this, 'MORE', n, unit);
}
/**
* Adds new two-step fluent 'LESSTHAN' condition
* @param {number} n number of unit
* @param {RelativeToField} unit of time (year, month, week, day, hour)
* @returns {RelativeDateBuilder} builder object supporting .before(field) -> original builder
*/
isLessThan(n, unit) {
if (!(typeof n === 'number' && typeof unit === 'string')) {
throw new QueryTypeException(`Expected (number, string); got (${typeof n}, ${typeof unit})`);
}
return new RelativeDateBuilder(this, 'LESS', n, unit);
}
/**
* Adds AND operator
* @returns {this} this
*/
and() {
return this._addLogicalOperator('^');
}
/**
* Adds OR operator
* @returns {this} this
*/
or() {
return this._addLogicalOperator('^OR');
}
/**
* Adds new NQ operator
* @returns {this} this
*/
nq() {
return this._addLogicalOperator('^NQ');
}
/**
* Adds logical operator to current query string
*
* @param {string} operator Operator to add
* @returns {this} this
* @private
*/
_addLogicalOperator(operator) {
this.query.push(operator);
return this;
}
/**
* Adds new condition to current query string
*
* @param {string} operator Operator for condition
* @param {string|number|string[]|number[]} operand Operand for condition
* @param {string[]} types Supported types
* @returns {this} this
* @private
*/
_addCondition(operator, operand, types) {
if (!this.currentField) {
throw new QueryMissingFieldException('Conditions requires a field.');
}
if (Array.isArray(operand)) {
operand.forEach(v => this._validateType(v, types));
operand = operand.join(',');
} else {
this._validateType(operand, types);
}
this.query.push(this.currentField + operator + operand);
return this;
}
/**
* Validate that the value is of one of the specified types or an array of the same
*
* @param {any} val Value to validate
* @param {string[]} types Type names supported
* @throws {QueryTypeException} Throws if value is not a supported type
* @private
*/
_validateType(val, types) {
if (!types.includes(typeof val)) {
let errorMessage = '';
if (types.length > 1) {
errorMessage = 'Invalid type passed. Expected one of: ' + types;
} else {
errorMessage = 'Invalid type passed. Expected: ' + types;
}
throw new QueryTypeException(errorMessage);
}
}
/**
* Builds ServiceNow readable query
*
* @returns {string} Prepared ServiceNow query
* @throws {QueryEmptyException}
*/
build() {
if (this.query.length === 0) {
throw new QueryEmptyException('At least one condition is required in query.');
}
return this.query.join('');
}
/**
* Converts date/moment object to UTC and formats to ServiceNOW readable date string.
*
* @param {Date} dateTime Date object to convert
* @returns {string} formatted Date-Time string
* @private
*/
_getDateTimeInUTC(dateTime) {
// 2020-01-01T12:12:12.000Z -> 2020-01-01 12:12:12
return dateTime.toISOString().replace('T', ' ').replace('Z', '').split('.')[0];
}
/**
* Adds comparison conditions {'>', '<', '>=', '<='}
*
* @param {string|number|string|Date} valueToCompare Value to compare against
* @param {string} operator Operator with which to compare
* @returns {this} this
* @throws {QueryTypeException}
*/
_addComparisonCondition(valueToCompare, operator) {
if (valueToCompare instanceof Date) {
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;