-
Notifications
You must be signed in to change notification settings - Fork 3
/
Builder.js
526 lines (470 loc) · 10.5 KB
/
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
517
518
519
520
521
522
523
524
525
526
'use strict'
const { ioc } = require('@adonisjs/fold')
const { Macroable } = require('macroable')
const Promise = require('bluebird')
const LengthPaginator = require('./Paginators/LengthAwarePaginator')
const CursorPaginator = require('./Paginators/CursorPaginator')
const CE = require('./Exceptions')
const { filter } = require('lodash')
/**
* @typedef {import('@adonisjs/lucid/src/Lucid/Model')} Model
* @typedef {import('./Drivers/Abstract')} EngineDriver
*/
class Builder extends Macroable {
/**
* Create a new search builder instance.
*
* @param {Model} model
* @param {String} query
* @param {Function} callback
*
* @return {void}
*/
constructor (model, query = null) {
super()
/**
* @todo Prefix all internal proprierties with underscore
*/
this.model = model
this.query = query
this.index = null
this.limit = null
this._rules = []
/**
* Keep track of all statements added to the builder, with variable a schema
* that depends on the `grouping` and `type` of the statement.
*/
this._statements = []
/**
* Internal flags used by the builder to create `where` statements.
*/
this._boolFlag = 'and'
this._notFlag = false
/**
* Reference to the global scopes iterator. A fresh instance
* needs to be used for each query
*/
this._scopesIterator = this.model.constructor.$globalSearchableScopes.iterator()
}
/**
* This method will apply all the global searchable query scopes
* to the builder.
*
* @method _applyScopes
*
* @private
*/
_applyScopes () {
this._scopesIterator.execute(this)
return this
}
/**
* Get all rules.
*
* @return {Array}
*/
get rules () {
return this._rules
}
/**
* Get all statements.
*
* @return {Array}
*/
get statements () {
return this._statements
}
/**
* Specify a custom index to perform this search on.
*
* @chainable
*
* @param {String} index
*
* @returns {Builder} this
*/
within (index) {
this.index = index
return this
}
/**
* Add a search rule to the search query.
*
* @chainable
*
* @param {String} ruleClass
*
* @return {Builder} this
*/
rule (ruleClass) {
let modelRules = this.model.constructor.searchableRules()
if (typeof modelRules === 'string') {
modelRules = [ modelRules ]
}
if (modelRules.includes(ruleClass) === false) {
throw CE.LogicalException.ruleNotSupported(ruleClass)
}
// Override every pre-existing rule
// @todo check if we need to support multiple rules at same time
this._rules = [ruleClass]
return this
}
/**
* Helper to get or set the `boolFlag` value.
*
* @param {String} value
*
* @return {*}
*/
_bool (value) {
if (arguments.length === 1) {
this._boolFlag = value
return this
}
const ret = this._boolFlag
this._boolFlag = 'and'
return ret
}
/**
* Helper to get or set the `notFlag` value.
*
* @chainable
*
* @param {Boolean} value
*
* @return {*}
*/
_not (value) {
if (arguments.length === 1) {
this._notFlag = value
return this
}
const ret = this._notFlag
this._notFlag = false
return ret
}
/**
* Adds a `where` clause to the query.
*
* @chainbale
*
* @param {String|Function} field
* @param {String} operator
* @param {*} value
*
* @return {Builder} this
*/
where (field, operator, value) {
/**
* Check if the column is a function, in which case it's
* a where statement group.
*/
if (typeof field === 'function') {
return this.whereWrapped(field)
}
const stmt = {
grouping: 'where',
type: 'whereBasic',
field,
operator,
value,
not: this._not(),
bool: this._bool()
}
/**
* Mutates the statement if we are searching for something
* "that is different than whatever" to apply the equal operator
* and invert the `not` flag
*/
if (['!=', '<>'].includes(operator)) {
Object.assign(stmt, {
operator: '=',
not: !stmt.not
})
}
this._statements.push(stmt)
return this
}
/**
* Adds an `or where` clause to the query.
*
* @chainbale
*
* @param {String|Function} field
* @param {String} operator
* @param {*} value
*
* @return {Builder} this
*/
orWhere () {
return this._bool('or').where.apply(this, arguments)
}
/**
* Adds an `not where` clause to the query.
*
* @chainbale
*
* @param {String|Function} field
* @param {String} operator
* @param {*} value
*
* @return {Builder} this
*/
whereNot () {
return this._not(true).where.apply(this, arguments)
}
/**
* Adds an `or not where` clause to the query.
*
* @chainbale
*
* @param {String|Function} field
* @param {String} operator
* @param {*} value
*
* @return {Builder} this
*/
orWhereNot () {
return this._bool('or').whereNot.apply(this, arguments)
}
/**
* Adds an `advanced where` clause to the query.
*
* @chainbale
*
* @param {Function} callback
*
* @return {Builder}
*/
whereWrapped (callback) {
this._statements.push({
grouping: 'where',
type: 'whereWrapped',
value: this._compileCallback(callback),
not: this._not(),
bool: this._bool()
})
return this
}
/**
* Compiles the callback function as new builder instance.
*
* @param {Function} callback
*
* @return {Builder}
*/
_compileCallback (callback) {
const builder = new this.constructor(this.model)
return () => {
callback.call(builder, builder)
return builder
}
}
/**
* Set the "limit" for the search query.
*
* @chainbale
*
* @param {Number} limit
*
* @return {Builder} this
*/
take (limit) {
this.limit = limit
return this
}
/**
* Set the "limit" for the search query.
*
* @alias take
*
* @param {Number} limit
*
* @return {Builder} this
*/
limit (limit) {
return this.take(limit)
}
/**
* Add an "order" for the search query.
*
* @chainable
*
* @param {String} field
* @param {String} direction
*
* @return {Builder} this
*/
orderBy (field, direction = 'asc') {
this._statements.push({
grouping: 'order',
type: 'orderByBasic',
value: field,
direction
})
return this
}
/**
* Add an aggregation to the search query.
*
* @chainable
*
* @param {String} method
* @param {String} field
*
* @return {Builder} this
*/
aggregate (method, field) {
this._statements.push({
grouping: 'aggregate',
type: 'aggregateBasic',
method,
value: field
})
return this
}
/**
* Get the raw results of the search.
*
* @return {*}
*/
raw () {
this._applyScopes()
return this.engine().search(this)
}
/**
* Get the raw results of the search.
*
* @return {Collection}
*/
keys () {
this._applyScopes()
return this.engine().keys(this)
}
/**
* Get the results of the search.
*
* @return {Collection}
*/
get () {
this._applyScopes()
return this.engine().get(this)
}
/**
* Check if some search rule was applied.
*
* @return {Boolean}
*/
hasRules () {
return !!this._rules.length
}
/**
* Build all search rules to query the index.
*
* @return {Array} Query rules
*/
buildRules () {
const queryArray = []
this._rules.forEach(ruleClass => {
let SearchRule = ioc.use(ruleClass)
queryArray.push((new SearchRule(this)).buildQuery())
})
return queryArray
}
/**
* Paginate the given query into a simple paginator.
*
* @param {Number} [page = 1]
* @param {Number} [limit = 20]
*
* @return {*}
*/
paginate (page = 1, limit = 20) {
/**
* Make sure `page` and `limit` are both integers.
*/
if (Number.isInteger(page) === false || Number.isInteger(limit) === false) {
throw CE.InvalidArgumentException.invalidParameter(
`Both page and limit must be an integer`
)
}
/**
* Apply all the scopes before fetching data
*/
this._applyScopes()
/**
* Clear any previously set limit to not conflict with the pagination
* and get the engine to run the query throught
*/
this.take(null)
const engine = this.engine()
return engine.paginate(this, page, limit).then(
rawResults => {
return Promise.all([
engine.map(this, rawResults, this.model),
engine.getTotalCount(rawResults)
]).spread((results, total) => {
return new LengthPaginator(results, total, page, limit)
})
}
)
}
/**
* Paginate the given query after the given cursor (forward only).
*
* @param {String} cursor (opaque)
* @param {Number} [limit = 20]
*/
paginateAfter (cursor = null, limit = 20) {
/**
* Make sure `limit` is integer.
*/
if (Number.isInteger(limit) === false) {
throw CE.InvalidArgumentException.invalidParameter(
`Limit must an integer`
)
}
/**
* Apply all the scopes before fetching data
*/
this._applyScopes()
/**
* Clear any previously set limit to not conflict with the pagination
* and get the engine to run the query throught
*/
this.take(null)
const engine = this.engine()
/**
* Enforce default sorting if none given.
* This is required to build cursors and be prepared for pagination.
*/
if (filter(this.statements, ['grouping', 'order']).length === 0) {
this.orderBy(this.model.constructor.getSearchableKeyName())
}
const decodedCursor = cursor ? CursorPaginator.decodeCursor(cursor) : null
return engine.paginateAfter(this, decodedCursor, limit + 1).then(
rawResults => {
return Promise.all([
engine.map(this, rawResults, this.model),
engine.getTotalCount(rawResults),
engine.cursors(this)
]).spread((results, total, cursorColumns) => {
const paginator = new CursorPaginator(results, total, cursor, limit)
paginator.setCursorColumns(cursorColumns)
return paginator
})
}
)
}
/**
* Get the engine that should handle the query.
*
* @return {EngineDriver}
*/
engine () {
return this.model.searchableUsing()
}
}
Builder._macros = {}
Builder._getters = {}
module.exports = Builder