-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathQueryBuilder.js
More file actions
636 lines (568 loc) · 17.7 KB
/
QueryBuilder.js
File metadata and controls
636 lines (568 loc) · 17.7 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
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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
/**
* @license
* Copyright CERN and copyright holders of ALICE O2. This software is
* distributed under the terms of the GNU General Public License v3 (GPL
* Version 3), copied verbatim in the file "COPYING".
*
* See http://alice-o2.web.cern.ch/license for full licensing information.
*
* In applying this license CERN does not waive the privileges and immunities
* granted to it by virtue of its status as an Intergovernmental Organization
* or submit itself to any jurisdiction.
*/
const { Op } = require('sequelize');
/**
* Sequelize implementation of the WhereQueryBuilder.
*/
class WhereQueryBuilder {
/**
* Creates a new `WhereQueryBuilder` instance.
*
* @param {QueryBuilder} queryBuilder The include expression.
* @param {string} column The target column.
*/
constructor(queryBuilder, column) {
this.queryBuilder = queryBuilder;
this.column = column;
this.notFlag = false;
}
/**
* Sets an exact match filter using the provided value.
*
* @param {*} value The required value.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
is(value) {
let operation;
if (this.notFlag) {
operation = { [value === null ? Op.not : Op.ne]: value };
} else {
operation = { [value === null ? Op.is : Op.eq]: value };
}
return this._op(operation);
}
/**
* Sets an exact match filter using:
* * the provided value
* or
* * if value is null
*
* @param {*} value The required value.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
isOrNull(value) {
let operation;
if (this.notFlag) {
operation = { [Op.or]: { [Op.is]: null, [Op.ne]: value } };
} else {
operation = { [Op.or]: { [Op.is]: null, [Op.eq]: value } };
}
return this._op(operation);
}
/**
* Sets an **AND** match filter using the provided values.
*
* @param {...any} values The required values.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
allOf(...values) {
let operation;
if (this.notFlag) {
operation = { [Op.notIn]: values };
} else {
operation = { [Op.and]: values };
}
return this._op(operation);
}
/**
* Sets an **OR** match filter using the provided values.
*
* @param {...any} values The required values.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
oneOf(...values) {
let operation;
if (this.notFlag) {
operation = { [Op.notIn]: values };
} else {
operation = { [Op.in]: values };
}
return this._op(operation);
}
/**
* Set a max range limit using the provided value
*
* @param {*} max the upper limit criteria
* @param {boolean} strict if true, the comparison is exclusive, else it will be inclusive (equality match)
*
* @return {void}
*/
lowerThan(max, strict) {
if (this.notFlag) {
this.notFlag = !this.notFlag;
this.greaterThan(max, !strict);
this.notFlag = !this.notFlag;
} else if (strict) {
this._op({ [Op.lt]: max });
} else {
this._op({ [Op.lte]: max });
}
}
/**
* Set a min range limit using the provided value
*
* @param {*} min the lower limit criteria
* @param {boolean} strict if true, the comparison is exclusive, else it will be inclusive (equality match)
*
* @return {void}
*/
greaterThan(min, strict) {
if (this.notFlag) {
this.notFlag = !this.notFlag;
this.lowerThan(min, !strict);
this.notFlag = !this.notFlag;
} else if (strict) {
this._op({ [Op.gt]: min });
} else {
this._op({ [Op.gte]: min });
}
}
/**
* Set a min range limit using the provided value OR null (useful when 0 is stored as null)
*
* @param {*} min the lower limit criteria
* @param {boolean} strict if true, the comparison is exclusive, else it will be inclusive (equality match)
*
* @return {void}
*/
greaterThanOrNull(min, strict) {
if (this.notFlag) {
this.notFlag = !this.notFlag;
this.lowerThan(min, !strict);
this.notFlag = !this.notFlag;
return;
}
const operation = {
[Op.or]: [
{ [Op.is]: null },
{ [strict ? Op.gt : Op.gte]: min },
],
};
this._op(operation);
}
/**
* Set a max range limit using the provided value OR null (useful when 0 is stored as null)
*
* @param {*} max the upper limit criteria
* @param {boolean} strict if true, the comparison is exclusive, else it will be inclusive (equality match)
*
* @return {void}
*/
lowerThanOrNull(max, strict) {
if (this.notFlag) {
this.notFlag = !this.notFlag;
this.greaterThan(max, !strict);
this.notFlag = !this.notFlag;
return;
}
const operation = {
[Op.or]: [
{ [Op.is]: null },
{ [strict ? Op.lt : Op.lte]: max },
],
};
this._op(operation);
}
/**
* Set the next filter condition according to a comparison operator ("<", "<=", ">=", ">", "=")
*
* @param {"<"|"<="|"="|">="|">"} operator the operator to apply
* @param {*} limit the limit to compare to
*
* @return {void}
*/
applyOperator(operator, limit) {
switch (operator) {
case '<':
this.lowerThan(limit, true);
break;
case '<=':
this.lowerThan(limit, false);
break;
case '=':
this.is(limit);
break;
case '>=':
this.greaterThan(limit, false);
break;
case '>':
this.greaterThan(limit, true);
break;
default:
throw new Error(`Unhandled operator: ${operator}`);
}
}
/**
* Sets an range match filter using the provided values, note that this is an **inclusive** filter.
*
* @param {*} start The start value.
* @param {*} end The end value.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
between(start, end) {
let operation;
if (this.notFlag) {
operation = { [Op.notBetween]: [start, end] };
} else {
operation = { [Op.between]: [start, end] };
}
return this._op(operation);
}
/**
* Sets the **NOT** flag to `true` for the next filter condition.
*
* @returns {WhereQueryBuilder} The current WhereQueryBuilder instance.
*/
not() {
this.notFlag = true;
return this;
}
/**
* Sets a starts with filter using the provided value.
*
* @param {symbol} value The start value.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
startsWith(value) {
let condition;
if (this.notFlag) {
condition = {
[Op.notLike]: `${value}%`,
};
} else {
condition = {
[Op.startsWith]: value,
};
}
return this._op(condition);
}
/**
* Sets a ends with filter using the provided value.
*
* @param {symbol} value The end value.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
endsWith(value) {
let condition;
if (this.notFlag) {
condition = {
[Op.notLike]: `%${value}`,
};
} else {
condition = {
[Op.endsWith]: value,
};
}
return this._op(condition);
}
/**
* Sets a substring filter using the provided value.
*
* @param {string} value The required value.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
substring(value) {
let condition;
if (this.notFlag) {
condition = {
[Op.notLike]: `%${value}%`,
};
} else {
condition = {
[Op.substring]: value,
};
}
return this._op(condition);
}
/**
* Set a substring filter (or) on all the given values
*
* @param {string[]} values The required value.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
oneOfSubstrings(values) {
let condition;
if (!this.notFlag) {
condition = {
[Op.or]: values.map((value) => ({
[Op.substring]: `%${value}%`,
})),
};
} else {
condition = {
[Op.and]: values.map((value) => ({
[Op.not]: {
[Op.substring]: `%${value}%`,
},
})),
};
}
return this._op(condition);
}
/**
* Set a substring filter (and) on all the given values
*
* @param {string[]} values The required value.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
allOfSubstrings(values) {
let condition;
if (!this.notFlag) {
condition = {
[Op.and]: values.map((value) => ({
[Op.substring]: `%${value}%`,
})),
};
} else {
condition = {
[Op.or]: values.map((value) => ({
[Op.not]: {
[Op.substring]: `%${value}%`,
},
})),
};
}
return this._op(condition);
}
/**
* Sets the operation.
*
* @param {Object} operation The Sequelize operation to use as where filter.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
_op(operation) {
this.queryBuilder.andWhere(this.column, operation);
return this.queryBuilder;
}
}
/**
* Sequelize implementation of the WhereAssociationQueryBuilder.
*/
class WhereAssociationQueryBuilder extends WhereQueryBuilder {
/**
* Creates a new `WhereQueryBuilder` instance.
*
* @param {Sequelize} sequelize the sequelize implementation
* @param {QueryBuilder} queryBuilder The include expression.
* @param {string} association The target association.
* @param {string} column The target column.
*/
constructor(sequelize, queryBuilder, association, column) {
super(queryBuilder, column);
this._sequelize = sequelize;
this.association = association;
}
/**
* Sets the operation.
*
* @param {Object} operation The Sequelize operation to use as where filter.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
_op(operation) {
this.queryBuilder.include({
association: this.association,
required: true,
where: {
[this.column]: operation,
},
});
return this.queryBuilder;
}
}
/**
* Sequelize implementation of the QueryBuilder.
*/
class QueryBuilder {
/**
* Creates a new `QueryBuilder` instance.
* @param {Sequelize} sequelize the sequelize implementation
*/
constructor(sequelize) {
this._sequelize = sequelize;
this.options = { where: {}, replacements: {} };
}
/**
* Include association
*
* @param {object|function<sequelize, object>} expression The include expression.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
include(expression) {
if (!this.options.include) {
this.options.include = [];
}
this.options.include.push(expression.call?.(null, this._sequelize) ?? expression);
return this;
}
/**
* The numbers of items to return.
*
* @param {number} number The numbers of items to return.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
limit(number) {
this.options.limit = number;
return this;
}
/**
* The number of items to skip before starting to collect the result set.
*
* @param {number} number The number of items to skip.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
offset(number) {
this.options.offset = number;
return this;
}
/**
* Set the order of elements.
*
* @param {string} column The column to order by.
* @param {string} direction The direction to order by.
* @param {string} table Optional associated table to perform ordering operation on.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
orderBy(column, direction, table = null) {
if (typeof column === 'function') {
column = column(this._sequelize);
}
if (!this.options.order) {
this.options.order = [];
}
this.options.order.push(table ? [table, column, direction] : [column, direction]);
return this;
}
/**
* Add expression to group by clause
* @param {string|function<sequelize, *>} expression group by expression
* @return {QueryBuilder} this
*/
groupBy(expression) {
if (!this.options.group) {
this.options.group = [];
}
this.options.group.push(expression.call?.(null, this._sequelize) ?? expression);
return this;
}
/**
* Add new attribute to result
* @param {object} attributeDefinition attribute definition
* @param {string|function<sequelize, *>} [attributeDefinition.query] sql definition of attribute, e.g. function or subquery
* @param {string} [attributeDefinition.alias] alias for the attribute
* @return {QueryBuilder} this
*/
includeAttribute({ query, alias }) {
if (!this.options.attributes) {
this.options.attributes = { include: [] };
}
this.options.attributes.include.push([
typeof query === 'function' ? query(this._sequelize) : this._sequelize.literal(query),
alias,
]);
return this;
}
/**
* Generic Key-Value pair setter.
*
* @param {*} key The key to set.
* @param {*} value The value of the key.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
set(key, value) {
this.options[key] = typeof value === 'function' ? value(this._sequelize) : value;
return this;
}
/**
* Sets the Sequelize model.
*
* @param {string|Model} model The Sequelize model to reference.
* @returns {QueryBuilder} The current QueryBuilder instance.
*/
setModel(model) {
this.model = typeof model === 'string' ? this._sequelize.models[model] : model;
return this;
}
/**
* Returns the implementation specific query.
*
* @returns {Object} Implementation specific query.
*/
toImplementation() {
return this.options;
}
/**
* Adds a filter on the given subject.
*
* @param {string|Object} subject The target subject.
* @returns {WhereQueryBuilder} The WhereQueryBuilder instance.
*/
where(subject) {
return new WhereQueryBuilder(this, subject);
}
/**
* Add a condition to the currently building where clauses using AND operation
*
* @param {string|function|Object} subject the subject on which where condition must be applied or the full criteria expression
* @param {Object|undefined} [criteria] the criteria of the where condition. If undefined, the subject is expected to contain the full
* criteria
*
* @return {QueryBuilder} fluent interface
*/
andWhere(subject, criteria) {
if (!this.options.where[Op.and]) {
this.options.where[Op.and] = [];
}
if (typeof subject === 'function') {
subject = subject(this._sequelize);
}
let fullCriteria;
if (criteria === undefined) {
fullCriteria = subject;
} else if (typeof subject === 'string') {
fullCriteria = { [subject]: criteria };
} else {
fullCriteria = this._sequelize.where(subject, criteria);
}
this.options.where[Op.and].push(fullCriteria);
return this;
}
/**
* Add a literal expression to the current where condition ("AND")
*
* @param {string} expression the literal where condition
* @param {Object} replacements the replacement text for the literal (global to all the query builder). Placeholders in literal
* (prefixed by ":") will be replaced by the value at the corresponding key
* @return {QueryBuilder} fluent interface
*/
literalWhere(expression, replacements) {
if (!this.options.where[Op.and]) {
this.options.where[Op.and] = [];
}
this.options.where[Op.and].push(this._sequelize.literal(expression));
for (const key in replacements) {
this.options.replacements[key] = replacements[key];
}
return this;
}
/**
* Adds a filter on the given association with a column value pair.
*
* @param {string} association The target association.
* @param {string} column The target column.
* @returns {WhereAssociationQueryBuilder} The current QueryBuilder instance.
*/
whereAssociation(association, column) {
return new WhereAssociationQueryBuilder(this._sequelize, this, association, column);
}
}
exports.QueryBuilder = QueryBuilder;