-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathpaginate.ts
812 lines (722 loc) · 33.7 KB
/
paginate.ts
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
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
import { Logger, ServiceUnavailableException } from '@nestjs/common'
import { mapKeys } from 'lodash'
import { stringify } from 'querystring'
import { Brackets, FindOptionsUtils, FindOptionsWhere, ObjectLiteral, Repository, SelectQueryBuilder } from 'typeorm'
import { WherePredicateOperator } from 'typeorm/query-builder/WhereClause'
import { PaginateQuery } from './decorator'
import { addFilter, FilterOperator, FilterSuffix } from './filter'
import {
checkIsEmbedded,
checkIsRelation,
Column,
createRelationSchema,
extractVirtualProperty,
fixColumnAlias,
getPaddedExpr,
getPropertiesByColumnName,
getQueryUrlComponents,
includesAllPrimaryKeyColumns,
isDateColumnType,
isEntityKey,
isFindOperator,
isISODate,
isRepository,
JoinMethod,
MappedColumns,
mergeRelationSchema,
Order,
positiveNumberOrDefault,
RelationSchema,
RelationSchemaInput,
SortBy,
} from './helper'
const logger: Logger = new Logger('nestjs-paginate')
export { FilterOperator, FilterSuffix }
export class Paginated<T> {
data: T[]
meta: {
itemsPerPage: number
totalItems?: number
currentPage?: number
totalPages?: number
sortBy: SortBy<T>
searchBy: Column<T>[]
search: string
select: string[]
filter?: {
[column: string]: string | string[]
}
cursor?: string
}
links: {
first?: string
previous?: string
current: string
next?: string
last?: string
}
}
export enum PaginationType {
LIMIT_AND_OFFSET = 'limit',
TAKE_AND_SKIP = 'take',
CURSOR = 'cursor',
}
// We use (string & {}) to maintain autocomplete while allowing any string
// see https://github.com/microsoft/TypeScript/issues/29729
export interface PaginateConfig<T> {
relations?: RelationSchemaInput<T>
sortableColumns: Column<T>[]
nullSort?: 'first' | 'last'
searchableColumns?: Column<T>[]
// eslint-disable-next-line @typescript-eslint/ban-types
select?: (Column<T> | (string & {}))[]
maxLimit?: number
defaultSortBy?: SortBy<T>
defaultLimit?: number
where?: FindOptionsWhere<T> | FindOptionsWhere<T>[]
filterableColumns?: Partial<MappedColumns<T, (FilterOperator | FilterSuffix)[] | true>>
loadEagerRelations?: boolean
withDeleted?: boolean
paginationType?: PaginationType
relativePath?: boolean
origin?: string
ignoreSearchByInQueryParam?: boolean
ignoreSelectInQueryParam?: boolean
multiWordSearch?: boolean
defaultJoinMethod?: JoinMethod
joinMethods?: Partial<MappedColumns<T, JoinMethod>>
}
export enum PaginationLimit {
NO_PAGINATION = -1,
COUNTER_ONLY = 0,
DEFAULT_LIMIT = 20,
DEFAULT_MAX_LIMIT = 100,
}
function generateWhereStatement<T>(
queryBuilder: SelectQueryBuilder<T>,
obj: FindOptionsWhere<T> | FindOptionsWhere<T>[]
) {
const toTransform = Array.isArray(obj) ? obj : [obj]
return toTransform.map((item) => flattenWhereAndTransform(queryBuilder, item).join(' AND ')).join(' OR ')
}
function flattenWhereAndTransform<T>(
queryBuilder: SelectQueryBuilder<T>,
obj: FindOptionsWhere<T>,
separator = '.',
parentKey = ''
) {
return Object.entries(obj).flatMap(([key, value]) => {
if (obj.hasOwnProperty(key)) {
const joinedKey = parentKey ? `${parentKey}${separator}${key}` : key
if (typeof value === 'object' && value !== null && !isFindOperator(value)) {
return flattenWhereAndTransform(queryBuilder, value as FindOptionsWhere<T>, separator, joinedKey)
} else {
const property = getPropertiesByColumnName(joinedKey)
const { isVirtualProperty, query: virtualQuery } = extractVirtualProperty(queryBuilder, property)
const isRelation = checkIsRelation(queryBuilder, property.propertyPath)
const isEmbedded = checkIsEmbedded(queryBuilder, property.propertyPath)
const alias = fixColumnAlias(
property,
queryBuilder.alias,
isRelation,
isVirtualProperty,
isEmbedded,
virtualQuery
)
const whereClause = queryBuilder['createWhereConditionExpression'](
queryBuilder['getWherePredicateCondition'](alias, value)
)
const allJoinedTables = queryBuilder.expressionMap.joinAttributes.reduce(
(acc, attr) => {
acc[attr.alias.name] = true
return acc
},
{} as Record<string, boolean>
)
const allTablesInPath = property.column.split('.').slice(0, -1)
const tablesToJoin = allTablesInPath.map((table, idx) => {
if (idx === 0) {
return table
}
return [...allTablesInPath.slice(0, idx), table].join('.')
})
tablesToJoin.forEach((table) => {
const pathSplit = table.split('.')
const fullPath =
pathSplit.length === 1
? ''
: `_${pathSplit
.slice(0, -1)
.map((p) => p + '_rel')
.join('_')}`
const tableName = pathSplit[pathSplit.length - 1]
const tableAliasWithProperty = `${queryBuilder.alias}${fullPath}.${tableName}`
const joinTableAlias = `${queryBuilder.alias}${fullPath}_${tableName}_rel`
const baseTableAlias = allJoinedTables[joinTableAlias]
if (baseTableAlias) {
return
} else {
queryBuilder.leftJoin(tableAliasWithProperty, joinTableAlias)
}
})
return whereClause
}
}
})
}
function fixCursorValue(value: any): any {
if (isISODate(value)) {
return new Date(value)
}
return value
}
export async function paginate<T extends ObjectLiteral>(
query: PaginateQuery,
repo: Repository<T> | SelectQueryBuilder<T>,
config: PaginateConfig<T>
): Promise<Paginated<T>> {
const dbType = (isRepository(repo) ? repo.manager : repo).connection.options.type
const isMySqlOrMariaDb = ['mysql', 'mariadb'].includes(dbType)
const metadata = isRepository(repo) ? repo.metadata : repo.expressionMap.mainAlias.metadata
const page = positiveNumberOrDefault(query.page, 1, 1)
const defaultLimit = config.defaultLimit || PaginationLimit.DEFAULT_LIMIT
const maxLimit = config.maxLimit || PaginationLimit.DEFAULT_MAX_LIMIT
const isPaginated = !(
query.limit === PaginationLimit.COUNTER_ONLY ||
(query.limit === PaginationLimit.NO_PAGINATION && maxLimit === PaginationLimit.NO_PAGINATION)
)
const limit =
query.limit === PaginationLimit.COUNTER_ONLY
? PaginationLimit.COUNTER_ONLY
: isPaginated === true
? maxLimit === PaginationLimit.NO_PAGINATION
? query.limit ?? defaultLimit
: query.limit === PaginationLimit.NO_PAGINATION
? defaultLimit
: Math.min(query.limit ?? defaultLimit, maxLimit)
: defaultLimit
const generateNullCursor = (): string => {
return 'A' + '0'.repeat(15) // null values should be looked up last, so use the smallest prefix
}
const generateDateCursor = (value: number, direction: 'ASC' | 'DESC'): string => {
const finalValue = direction === 'ASC' ? Math.pow(10, 15) - value : value
return 'V' + String(finalValue).padStart(15, '0')
}
const generateNumberCursor = (value: number, direction: 'ASC' | 'DESC'): string => {
const integerLength = 11
const decimalLength = 4 // sorting is not possible if the decimal point exceeds 4 digits
const maxIntegerDigit = Math.pow(10, integerLength)
const fixedScale = Math.pow(10, decimalLength)
const absValue = Math.abs(value)
const scaledValue = Math.round(absValue * fixedScale)
const integerPart = Math.floor(scaledValue / fixedScale)
const decimalPart = scaledValue % fixedScale
let integerPrefix: string
let decimalPrefix: string
let finalInteger: number
let finalDecimal: number
if (direction === 'ASC') {
if (value < 0) {
integerPrefix = 'Y'
decimalPrefix = 'V'
finalInteger = integerPart
finalDecimal = decimalPart
} else if (value === 0) {
integerPrefix = 'X'
decimalPrefix = 'X'
finalInteger = 0
finalDecimal = 0
} else {
integerPrefix = integerPart === 0 ? 'X' : 'V' // X > V
decimalPrefix = decimalPart === 0 ? 'X' : 'V' // X > V
finalInteger = integerPart === 0 ? 0 : maxIntegerDigit - integerPart
finalDecimal = decimalPart === 0 ? 0 : fixedScale - decimalPart
}
} else {
// DESC
if (value < 0) {
integerPrefix = integerPart === 0 ? 'N' : 'M' // N > M
decimalPrefix = decimalPart === 0 ? 'X' : 'V' // X > V
finalInteger = integerPart === 0 ? 0 : maxIntegerDigit - integerPart
finalDecimal = decimalPart === 0 ? 0 : fixedScale - decimalPart
} else if (value === 0) {
integerPrefix = 'N'
decimalPrefix = 'X'
finalInteger = 0
finalDecimal = 0
} else {
integerPrefix = 'V'
decimalPrefix = 'V'
finalInteger = integerPart
finalDecimal = decimalPart
}
}
return (
integerPrefix +
String(finalInteger).padStart(integerLength, '0') +
decimalPrefix +
String(finalDecimal).padStart(decimalLength, '0')
)
}
const generateCursor = (item: T, sortBy: SortBy<T>): string => {
return sortBy
.map(([column, direction]) => {
const value = fixCursorValue(item[column])
const columnMeta = metadata.columns.find(
(col) => col.propertyName === getPropertiesByColumnName(column).propertyName
)
const isDateColumn = columnMeta && isDateColumnType(columnMeta.type)
if (value === null) {
return generateNullCursor()
}
if (isDateColumn) {
return generateDateCursor(value.getTime(), direction)
} else {
const numericValue = Number(value)
return generateNumberCursor(numericValue, direction)
}
})
.join('')
}
const getDateColumnExpression = (alias: string, dbType: string): string => {
switch (dbType) {
case 'mysql':
case 'mariadb':
return `UNIX_TIMESTAMP(${alias}) * 1000`
case 'postgres':
return `EXTRACT(EPOCH FROM ${alias}) * 1000`
case 'sqlite':
return `(STRFTIME('%s', ${alias}) + (STRFTIME('%f', ${alias}) - STRFTIME('%S', ${alias}))) * 1000`
default:
return alias
}
}
const logAndThrowException = (msg: string) => {
logger.debug(msg)
throw new ServiceUnavailableException(msg)
}
if (config.sortableColumns.length < 1) {
logAndThrowException("Missing required 'sortableColumns' config.")
}
const sortBy = [] as SortBy<T>
if (query.sortBy) {
for (const order of query.sortBy) {
if (isEntityKey(config.sortableColumns, order[0]) && ['ASC', 'DESC'].includes(order[1])) {
sortBy.push(order as Order<T>)
}
}
}
if (!sortBy.length) {
sortBy.push(...(config.defaultSortBy || [[config.sortableColumns[0], 'ASC']]))
}
const searchBy: Column<T>[] = []
let [items, totalItems]: [T[], number] = [[], 0]
const queryBuilder = isRepository(repo) ? repo.createQueryBuilder('__root') : repo
if (isRepository(repo) && !config.relations && config.loadEagerRelations === true) {
if (!config.relations) {
FindOptionsUtils.joinEagerRelations(queryBuilder, queryBuilder.alias, repo.metadata)
}
}
if (isPaginated) {
config.paginationType = config.paginationType || PaginationType.TAKE_AND_SKIP
// Allow user to choose between limit/offset and take/skip, or cursor-based pagination.
// However, using limit/offset can cause problems when joining one-to-many etc.
if (config.paginationType === PaginationType.LIMIT_AND_OFFSET) {
queryBuilder.limit(limit).offset((page - 1) * limit)
} else if (config.paginationType === PaginationType.TAKE_AND_SKIP) {
queryBuilder.take(limit).skip((page - 1) * limit)
} else if (config.paginationType === PaginationType.CURSOR) {
queryBuilder.take(limit)
const padLength = 15
const integerLength = 11
const decimalLength = 4
const fixedScale = Math.pow(10, 4)
const maxIntegerDigit = Math.pow(10, 11)
const generateNullCursorExpr = (): string => {
const zeroPaddedExpr = getPaddedExpr('0', padLength, dbType)
const prefix = 'A'
return isMySqlOrMariaDb ? `CONCAT('${prefix}', ${zeroPaddedExpr})` : `'${prefix}' || ${zeroPaddedExpr}`
}
const generateDateCursorExpr = (columnExpr: string, direction: 'ASC' | 'DESC'): string => {
const safeExpr = `COALESCE(${columnExpr}, 0)`
const sqlExpr = direction === 'ASC' ? `POW(10, ${padLength}) - ${safeExpr}` : safeExpr
const paddedExpr = getPaddedExpr(sqlExpr, padLength, dbType)
const zeroPaddedExpr = getPaddedExpr('0', padLength, dbType)
const prefixNull = 'A'
const prefixValue = 'V'
return isMySqlOrMariaDb
? `CASE
WHEN ${columnExpr} IS NULL THEN CONCAT('${prefixNull}', ${zeroPaddedExpr})
ELSE CONCAT('${prefixValue}', ${paddedExpr})
END`
: `CASE
WHEN ${columnExpr} IS NULL THEN '${prefixNull}' || ${zeroPaddedExpr}
ELSE '${prefixValue}' || ${paddedExpr}
END`
}
const generateNumberCursorExpr = (columnExpr: string, direction: 'ASC' | 'DESC'): string => {
const safeExpr = `COALESCE(${columnExpr}, 0)`
const absSafeExpr = `ABS(${safeExpr})`
const scaledExpr = `ROUND(${absSafeExpr} * ${fixedScale}, 0)`
const intExpr = `FLOOR(${scaledExpr} / ${fixedScale})`
const decExpr = `(${scaledExpr} % ${fixedScale})`
const reversedIntExpr = `(${maxIntegerDigit} - ${intExpr})`
const reversedDecExpr = `(${fixedScale} - ${decExpr})`
const paddedIntExpr = getPaddedExpr(intExpr, integerLength, dbType)
const paddedDecExpr = getPaddedExpr(decExpr, decimalLength, dbType)
const reversedIntPaddedExpr = getPaddedExpr(reversedIntExpr, integerLength, dbType)
const reversedDecPaddedExpr = getPaddedExpr(reversedDecExpr, decimalLength, dbType)
const zeroPaddedIntExpr = getPaddedExpr('0', integerLength, dbType)
const zeroPaddedDecExpr = getPaddedExpr('0', decimalLength, dbType)
const concat = (parts: string[]): string =>
isMySqlOrMariaDb ? `CONCAT(${parts.join(', ')})` : parts.join(' || ')
if (direction === 'ASC') {
return `CASE
WHEN ${columnExpr} IS NULL THEN ${generateNullCursorExpr()}
WHEN ${columnExpr} < 0 THEN ${concat(["'Y'", paddedIntExpr, "'V'", paddedDecExpr])}
WHEN ${columnExpr} = 0 THEN ${concat(["'X'", zeroPaddedIntExpr, "'X'", zeroPaddedDecExpr])}
WHEN ${columnExpr} > 0 AND ${intExpr} = 0 AND ${decExpr} > 0 THEN ${concat([
"'X'",
zeroPaddedIntExpr,
"'V'",
reversedDecPaddedExpr,
])}
WHEN ${columnExpr} > 0 AND ${intExpr} > 0 AND ${decExpr} = 0 THEN ${concat([
"'V'",
reversedIntPaddedExpr,
"'X'",
zeroPaddedDecExpr,
])}
WHEN ${columnExpr} > 0 AND ${intExpr} > 0 AND ${decExpr} > 0 THEN ${concat([
"'V'",
reversedIntPaddedExpr,
"'V'",
reversedDecPaddedExpr,
])}
END`
} else {
return `CASE
WHEN ${columnExpr} IS NULL THEN ${generateNullCursorExpr()}
WHEN ${columnExpr} < 0 AND ${intExpr} > 0 AND ${decExpr} > 0 THEN ${concat([
"'M'",
reversedIntPaddedExpr,
"'V'",
reversedDecPaddedExpr,
])}
WHEN ${columnExpr} < 0 AND ${intExpr} > 0 AND ${decExpr} = 0 THEN ${concat([
"'M'",
reversedIntPaddedExpr,
"'X'",
zeroPaddedDecExpr,
])}
WHEN ${columnExpr} < 0 AND ${intExpr} = 0 AND ${decExpr} > 0 THEN ${concat([
"'N'",
zeroPaddedIntExpr,
"'V'",
reversedDecPaddedExpr,
])}
WHEN ${columnExpr} = 0 THEN ${concat(["'N'", zeroPaddedIntExpr, "'X'", zeroPaddedDecExpr])}
WHEN ${columnExpr} > 0 THEN ${concat(["'V'", paddedIntExpr, "'V'", paddedDecExpr])}
END`
}
}
const cursorExpressions = sortBy.map(([column, direction]) => {
const columnProperties = getPropertiesByColumnName(column)
const alias = fixColumnAlias(columnProperties, queryBuilder.alias)
const columnMeta = metadata.columns.find((col) => col.propertyName === columnProperties.propertyName)
const isDateColumn = columnMeta && isDateColumnType(columnMeta.type)
const columnExpr = isDateColumn ? getDateColumnExpression(alias, dbType) : alias
return isDateColumn
? generateDateCursorExpr(columnExpr, direction)
: generateNumberCursorExpr(columnExpr, direction)
})
const cursorExpression =
cursorExpressions.length > 1
? isMySqlOrMariaDb
? `CONCAT(${cursorExpressions.join(', ')})`
: cursorExpressions.join(' || ')
: cursorExpressions[0]
queryBuilder.addSelect(cursorExpression, 'cursor')
if (query.cursor) {
queryBuilder.andWhere(`${cursorExpression} < :cursor`, { cursor: query.cursor })
}
isMySqlOrMariaDb ? queryBuilder.orderBy('`cursor`', 'DESC') : queryBuilder.orderBy('cursor', 'DESC') // since cursor is a reserved word in mysql, wrap it in backticks to recognize it as an alias
}
}
if (config.withDeleted) {
queryBuilder.withDeleted()
}
let filterJoinMethods = {}
if (query.filter) {
filterJoinMethods = addFilter(queryBuilder, query, config.filterableColumns)
}
const joinMethods = { ...filterJoinMethods, ...config.joinMethods }
// Add the relations specified by the config, or used in the currently
// filtered filterable columns.
if (config.relations || Object.keys(filterJoinMethods).length) {
const relationsSchema = mergeRelationSchema(
createRelationSchema(config.relations),
createRelationSchema(Object.keys(joinMethods))
)
addRelationsFromSchema(queryBuilder, relationsSchema, config, joinMethods)
}
if (config.paginationType !== PaginationType.CURSOR) {
let nullSort: string | undefined
if (config.nullSort) {
if (isMySqlOrMariaDb) {
nullSort = config.nullSort === 'last' ? 'IS NULL' : 'IS NOT NULL'
} else {
nullSort = config.nullSort === 'last' ? 'NULLS LAST' : 'NULLS FIRST'
}
}
for (const order of sortBy) {
const columnProperties = getPropertiesByColumnName(order[0])
const { isVirtualProperty } = extractVirtualProperty(queryBuilder, columnProperties)
const isRelation = checkIsRelation(queryBuilder, columnProperties.propertyPath)
const isEmbeded = checkIsEmbedded(queryBuilder, columnProperties.propertyPath)
let alias = fixColumnAlias(columnProperties, queryBuilder.alias, isRelation, isVirtualProperty, isEmbeded)
if (isMySqlOrMariaDb) {
if (isVirtualProperty) {
alias = `\`${alias}\``
}
if (nullSort) {
queryBuilder.addOrderBy(`${alias} ${nullSort}`)
}
queryBuilder.addOrderBy(alias, order[1])
} else {
if (isVirtualProperty) {
alias = `"${alias}"`
}
queryBuilder.addOrderBy(alias, order[1], nullSort as 'NULLS FIRST' | 'NULLS LAST' | undefined)
}
}
}
// When we partial select the columns (main or relation) we must add the primary key column otherwise
// typeorm will not be able to map the result.
let selectParams =
config.select && query.select && !config.ignoreSelectInQueryParam
? config.select.filter((column) => query.select.includes(column))
: config.select
if (!includesAllPrimaryKeyColumns(queryBuilder, query.select)) {
selectParams = config.select
}
if (selectParams?.length > 0 && includesAllPrimaryKeyColumns(queryBuilder, selectParams)) {
const cols: string[] = selectParams.reduce((cols, currentCol) => {
const columnProperties = getPropertiesByColumnName(currentCol)
const isRelation = checkIsRelation(queryBuilder, columnProperties.propertyPath)
cols.push(fixColumnAlias(columnProperties, queryBuilder.alias, isRelation))
return cols
}, [])
queryBuilder.select(cols)
}
if (config.where && isRepository(repo)) {
const baseWhereStr = generateWhereStatement(queryBuilder, config.where)
queryBuilder.andWhere(`(${baseWhereStr})`)
}
if (config.searchableColumns) {
if (query.searchBy && !config.ignoreSearchByInQueryParam) {
for (const column of query.searchBy) {
if (isEntityKey(config.searchableColumns, column)) {
searchBy.push(column)
}
}
} else {
searchBy.push(...config.searchableColumns)
}
}
if (query.search && searchBy.length) {
queryBuilder.andWhere(
new Brackets((qb: SelectQueryBuilder<T>) => {
// Explicitly handle the default case - multiWordSearch defaults to false
const useMultiWordSearch = config.multiWordSearch ?? false
if (!useMultiWordSearch) {
// Strict search mode (default behavior)
for (const column of searchBy) {
const property = getPropertiesByColumnName(column)
const { isVirtualProperty, query: virtualQuery } = extractVirtualProperty(qb, property)
const isRelation = checkIsRelation(qb, property.propertyPath)
const isEmbedded = checkIsEmbedded(qb, property.propertyPath)
const alias = fixColumnAlias(
property,
qb.alias,
isRelation,
isVirtualProperty,
isEmbedded,
virtualQuery
)
const condition: WherePredicateOperator = {
operator: 'ilike',
parameters: [alias, `:${property.column}`],
}
if (['postgres', 'cockroachdb'].includes(queryBuilder.connection.options.type)) {
condition.parameters[0] = `CAST(${condition.parameters[0]} AS text)`
}
qb.orWhere(qb['createWhereConditionExpression'](condition), {
[property.column]: `%${query.search}%`,
})
}
} else {
// Multi-word search mode
const searchWords = query.search.split(' ').filter((word) => word.length > 0)
searchWords.forEach((searchWord, index) => {
qb.andWhere(
new Brackets((subQb: SelectQueryBuilder<T>) => {
for (const column of searchBy) {
const property = getPropertiesByColumnName(column)
const { isVirtualProperty, query: virtualQuery } = extractVirtualProperty(
subQb,
property
)
const isRelation = checkIsRelation(subQb, property.propertyPath)
const isEmbedded = checkIsEmbedded(subQb, property.propertyPath)
const alias = fixColumnAlias(
property,
subQb.alias,
isRelation,
isVirtualProperty,
isEmbedded,
virtualQuery
)
const condition: WherePredicateOperator = {
operator: 'ilike',
parameters: [alias, `:${property.column}_${index}`],
}
if (['postgres', 'cockroachdb'].includes(queryBuilder.connection.options.type)) {
condition.parameters[0] = `CAST(${condition.parameters[0]} AS text)`
}
subQb.orWhere(subQb['createWhereConditionExpression'](condition), {
[`${property.column}_${index}`]: `%${searchWord}%`,
})
}
})
)
})
}
})
)
}
if (query.limit === PaginationLimit.COUNTER_ONLY) {
totalItems = await queryBuilder.getCount()
} else if (isPaginated && config.paginationType !== PaginationType.CURSOR) {
;[items, totalItems] = await queryBuilder.getManyAndCount()
} else {
items = await queryBuilder.getMany()
}
const sortByQuery = sortBy.map((order) => `&sortBy=${order.join(':')}`).join('')
const searchQuery = query.search ? `&search=${query.search}` : ''
const searchByQuery =
query.searchBy && searchBy.length && !config.ignoreSearchByInQueryParam
? searchBy.map((column) => `&searchBy=${column}`).join('')
: ''
// Only expose select in meta data if query select differs from config select
const isQuerySelected = selectParams?.length !== config.select?.length
const selectQuery = isQuerySelected ? `&select=${selectParams.join(',')}` : ''
const filterQuery = query.filter
? '&' +
stringify(
mapKeys(query.filter, (_param, name) => 'filter.' + name),
'&',
'=',
{ encodeURIComponent: (str) => str }
)
: ''
const options = `&limit=${limit}${sortByQuery}${searchQuery}${searchByQuery}${selectQuery}${filterQuery}`
let path: string = null
if (query.path !== null) {
// `query.path` does not exist in RPC/WS requests and is set to null then.
const { queryOrigin, queryPath } = getQueryUrlComponents(query.path)
if (config.relativePath) {
path = queryPath
} else if (config.origin) {
path = config.origin + queryPath
} else {
path = queryOrigin + queryPath
}
}
const buildLink = (p: number): string => path + '?page=' + p + options
const reversedSortBy = sortBy.map(([col, dir]) => [col, dir === 'ASC' ? 'DESC' : 'ASC'] as Order<T>)
const buildLinkForCursor = (cursor: string | undefined, isReversed: boolean = false): string => {
let adjustedOptions = options
if (isReversed && sortBy.length > 0) {
adjustedOptions = `&limit=${limit}${reversedSortBy
.map((order) => `&sortBy=${order.join(':')}`)
.join('')}${searchQuery}${searchByQuery}${selectQuery}${filterQuery}`
}
return path + adjustedOptions.replace(/^./, '?') + (cursor ? `&cursor=${cursor}` : '')
}
const itemsPerPage = limit === PaginationLimit.COUNTER_ONLY ? totalItems : isPaginated ? limit : items.length
const totalItemsForMeta = limit === PaginationLimit.COUNTER_ONLY || isPaginated ? totalItems : items.length
const totalPages = isPaginated ? Math.ceil(totalItems / limit) : 1
const results: Paginated<T> = {
data: items,
meta: {
itemsPerPage: config.paginationType === PaginationType.CURSOR ? items.length : itemsPerPage,
totalItems: config.paginationType === PaginationType.CURSOR ? undefined : totalItemsForMeta,
currentPage: config.paginationType === PaginationType.CURSOR ? undefined : page,
totalPages: config.paginationType === PaginationType.CURSOR ? undefined : totalPages,
sortBy,
search: query.search,
searchBy: query.search ? searchBy : undefined,
select: isQuerySelected ? selectParams : undefined,
filter: query.filter,
cursor: config.paginationType === PaginationType.CURSOR ? query.cursor : undefined,
},
// If there is no `path`, don't build links.
links:
path !== null
? config.paginationType === PaginationType.CURSOR
? {
previous: items.length
? buildLinkForCursor(generateCursor(items[0], reversedSortBy), true)
: undefined,
current: buildLinkForCursor(query.cursor),
next: items.length
? buildLinkForCursor(generateCursor(items[items.length - 1], sortBy))
: undefined,
}
: {
first: page == 1 ? undefined : buildLink(1),
previous: page - 1 < 1 ? undefined : buildLink(page - 1),
current: buildLink(page),
next: page + 1 > totalPages ? undefined : buildLink(page + 1),
last: page == totalPages || !totalItems ? undefined : buildLink(totalPages),
}
: ({} as Paginated<T>['links']),
}
return Object.assign(new Paginated<T>(), results)
}
export function addRelationsFromSchema<T>(
queryBuilder: SelectQueryBuilder<T>,
schema: RelationSchema<T>,
config: PaginateConfig<T>,
joinMethods: Partial<MappedColumns<T, JoinMethod>>
): void {
const defaultJoinMethod = config.defaultJoinMethod ?? 'leftJoinAndSelect'
const createQueryBuilderRelations = (
prefix: string,
relations: RelationSchema,
alias?: string,
parentRelation?: string
) => {
Object.keys(relations).forEach((relationName) => {
const joinMethod =
joinMethods[parentRelation ? `${parentRelation}.${relationName}` : relationName] ?? defaultJoinMethod
queryBuilder[joinMethod](`${alias ?? prefix}.${relationName}`, `${alias ?? prefix}_${relationName}_rel`)
// Check whether this is a non-terminal node with a relation schema to load
const relationSchema = relations[relationName]
if (
typeof relationSchema === 'object' &&
relationSchema !== null &&
Object.keys(relationSchema).length > 0
) {
createQueryBuilderRelations(
relationName,
relationSchema,
`${alias ?? prefix}_${relationName}_rel`,
parentRelation ? `${parentRelation}.${relationName}` : relationName
)
}
})
}
createQueryBuilderRelations(queryBuilder.alias, schema)
}