-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
has-many-through.repository.ts
595 lines (567 loc) · 20.1 KB
/
has-many-through.repository.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
// Copyright IBM Corp. and LoopBack contributors 2019,2020. All Rights Reserved.
// Node module: @loopback/repository
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
import {
constrainDataObject,
constrainFilter,
constrainWhere,
constrainWhereOr,
Count,
DataObject,
Entity,
EntityCrudRepository,
Filter,
Getter,
InvalidPolymorphismError,
Options,
StringKeyOf,
TypeResolver,
Where,
} from '../..';
/**
* CRUD operations for a target repository of a HasManyThrough relation
*
* EXPERIMENTAL: This interface is not stable and may change in the near future.
* Backwards-incompatible changes may be introduced in semver-minor versions.
*/
export interface HasManyThroughRepository<
Target extends Entity,
TargetID,
Through extends Entity,
> {
/**
* Create a target model instance
* @param targetModelData - The target model data
* @param options - Options for the operation
* options.polymorphicType a string or a string array of polymorphic type names
* specify of which concrete model the created instance should be
* @returns A promise which resolves to the newly created target model instance
*/
create(
targetModelData: DataObject<Target>,
options?: Options & {
throughData?: DataObject<Through>;
throughOptions?: Options;
} & {polymorphicType?: string},
): Promise<Target>;
/**
* Find target model instance(s)
* @param filter - A filter object for where, order, limit, etc.
* @param options - Options for the operation
* options.throughOptions.discriminator - target discriminator field on through
* options.polymorphicType a string or a string array of polymorphic type names
* to specify which repositories should are expected to be searched
* It is highly recommended to contain this param especially for
* datasources using deplicated ids across tables
* @returns A promise which resolves with the found target instance(s)
*/
find(
filter?: Filter<Target>,
options?: Options & {
throughOptions?: Options & {discriminator?: string};
} & {polymorphicType?: string | string[]},
): Promise<Target[]>;
/**
* Delete multiple target model instances
* @param where - Instances within the where scope are deleted
* @param options
* options.throughOptions.discriminator - target discriminator field on through
* options.polymorphicType a string or a string array of polymorphic type names
* to specify which repositories should are expected to be searched
* It is highly recommended to contain this param especially for
* datasources using deplicated ids across tables
* @returns A promise which resolves the deleted target model instances
*/
delete(
where?: Where<Target>,
options?: Options & {
throughOptions?: Options & {discriminator?: string};
} & {polymorphicType?: string | string[]},
): Promise<Count>;
/**
* Patch multiple target model instances
* @param dataObject - The fields and their new values to patch
* @param where - Instances within the where scope are patched
* @param options
* options.throughOptions.discriminator - target discriminator field on through
* options.isPolymorphic - whether dataObject is a dictionary
* @returns A promise which resolves the patched target model instances
*/
patch(
dataObject:
| DataObject<Target>
| {[polymorphicType: string]: DataObject<Target>},
where?: Where<Target>,
options?: Options & {
throughOptions?: Options & {discriminator?: string};
} & {isPolymorphic?: boolean},
): Promise<Count>;
/**
* Creates a new many-to-many association to an existing target model instance
* @param targetModelId - The target model ID to link
* @param options
* @returns A promise which resolves to the linked target model instance
*/
link(
targetModelId: TargetID,
options?: Options & {
throughData?: DataObject<Through>;
throughOptions?: Options;
},
): Promise<void>;
/**
* Removes an association to an existing target model instance
* @param targetModelId - The target model to unlink
* @param options
* @returns A promise which resolves to null
*/
unlink(
targetModelId: TargetID,
options?: Options & {
throughOptions?: Options;
},
): Promise<void>;
/**
* Remove all association to an existing target model instance
* @param options
* @return A promise which resolves to void
*/
unlinkAll(
options?: Options & {
throughOptions?: Options;
},
): Promise<void>;
}
/**
* a class for CRUD operations for hasManyThrough relation.
*
* Warning: The hasManyThrough interface is experimental and is subject to change.
* If backwards-incompatible changes are made, a new major version may not be
* released.
*/
export class DefaultHasManyThroughRepository<
TargetEntity extends Entity,
TargetID,
TargetRepository extends EntityCrudRepository<TargetEntity, TargetID>,
ThroughEntity extends Entity,
ThroughID,
ThroughRepository extends EntityCrudRepository<ThroughEntity, ThroughID>,
> implements HasManyThroughRepository<TargetEntity, TargetID, ThroughEntity>
{
constructor(
public getTargetRepository:
| Getter<TargetRepository>
| {
[repoType: string]: Getter<TargetRepository>;
},
public getThroughRepository: Getter<ThroughRepository>,
public getTargetConstraintFromThroughModels: (
throughInstances: ThroughEntity[],
) => DataObject<TargetEntity>,
public getTargetKeys: (throughInstances: ThroughEntity[]) => TargetID[],
public getThroughConstraintFromSource: () => DataObject<ThroughEntity>,
public getTargetIds: (targetInstances: TargetEntity[]) => TargetID[],
public getThroughConstraintFromTarget: (
targetID: TargetID[],
) => DataObject<ThroughEntity>,
public targetResolver: TypeResolver<Entity, typeof Entity>,
public throughResolver: TypeResolver<Entity, typeof Entity>,
) {
if (typeof getTargetRepository === 'function') {
this.getTargetRepositoryDict = {
[targetResolver().name]:
getTargetRepository as Getter<TargetRepository>,
};
} else {
this.getTargetRepositoryDict = getTargetRepository as {
[repoType: string]: Getter<TargetRepository>;
};
}
}
public getTargetRepositoryDict: {
[repoType: string]: Getter<TargetRepository>;
};
async create(
targetModelData: DataObject<TargetEntity>,
options?: Options & {
throughData?: DataObject<ThroughEntity>;
throughOptions?: Options;
} & {polymorphicType?: string},
): Promise<TargetEntity> {
let targetPolymorphicTypeName = options?.polymorphicType;
if (targetPolymorphicTypeName) {
if (!this.getTargetRepositoryDict[targetPolymorphicTypeName]) {
throw new InvalidPolymorphismError(targetPolymorphicTypeName);
}
} else {
if (Object.keys(this.getTargetRepositoryDict).length > 1) {
console.warn(
'It is highly recommended to specify the polymorphicTypes param when using polymorphic types.',
);
}
targetPolymorphicTypeName = this.targetResolver().name;
if (!this.getTargetRepositoryDict[targetPolymorphicTypeName]) {
throw new InvalidPolymorphismError(targetPolymorphicTypeName);
}
}
const targetRepository =
await this.getTargetRepositoryDict[targetPolymorphicTypeName]();
const targetInstance = await targetRepository.create(
targetModelData,
options,
);
await this.link(targetInstance.getId(), options);
return targetInstance;
}
async find(
filter?: Filter<TargetEntity>,
options?: Options & {
throughOptions?: Options & {discriminator?: string};
} & {polymorphicType?: string | string[]},
): Promise<TargetEntity[]> {
const targetDiscriminatorOnThrough = options?.throughOptions?.discriminator;
let targetPolymorphicTypes = options?.polymorphicType;
let allKeys: string[];
if (Object.keys(this.getTargetRepositoryDict).length <= 1) {
allKeys = Object.keys(this.getTargetRepositoryDict);
} else {
if (!targetDiscriminatorOnThrough) {
console.warn(
'It is highly recommended to specify the targetDiscriminatorOnThrough param when using polymorphic types.',
);
}
if (!targetPolymorphicTypes || targetPolymorphicTypes.length === 0) {
console.warn(
'It is highly recommended to specify the polymorphicTypes param when using polymorphic types.',
);
allKeys = Object.keys(this.getTargetRepositoryDict);
} else {
if (typeof targetPolymorphicTypes === 'string') {
targetPolymorphicTypes = [targetPolymorphicTypes];
}
allKeys = [];
new Set(targetPolymorphicTypes!).forEach(element => {
if (Object.keys(this.getTargetRepositoryDict).includes(element)) {
allKeys.push(element);
}
});
}
}
const sourceConstraint = this.getThroughConstraintFromSource();
const throughCategorized: {[concreteType: string]: (ThroughEntity & {})[]} =
{};
const throughRepository = await this.getThroughRepository();
(
await throughRepository.find(
constrainFilter(undefined, sourceConstraint),
options?.throughOptions,
)
).forEach(element => {
let concreteTargetType;
if (!targetDiscriminatorOnThrough) {
concreteTargetType = this.targetResolver().name;
} else {
concreteTargetType = String(
element[targetDiscriminatorOnThrough as StringKeyOf<ThroughEntity>],
);
}
if (!allKeys.includes(concreteTargetType)) {
return;
}
if (!this.getTargetRepositoryDict[concreteTargetType]) {
throw new InvalidPolymorphismError(
concreteTargetType,
targetDiscriminatorOnThrough,
);
}
if (!throughCategorized[concreteTargetType]) {
throughCategorized[concreteTargetType] = [];
}
throughCategorized[concreteTargetType].push(element);
});
let allTargets: TargetEntity[] = [];
for (const key of Object.keys(throughCategorized)) {
const targetRepository = await this.getTargetRepositoryDict[key]();
const targetConstraint = this.getTargetConstraintFromThroughModels(
throughCategorized[key],
);
allTargets = allTargets.concat(
await targetRepository.find(constrainFilter(filter, targetConstraint), {
...options,
polymorphicType: key,
}),
);
}
return allTargets;
}
async delete(
where?: Where<TargetEntity>,
options?: Options & {
throughOptions?: Options & {discriminator?: string};
} & {polymorphicType?: string | string[]},
): Promise<Count> {
const targetDiscriminatorOnThrough = options?.throughOptions?.discriminator;
let targetPolymorphicTypes = options?.polymorphicType;
let allKeys: string[];
if (Object.keys(this.getTargetRepositoryDict).length <= 1) {
allKeys = Object.keys(this.getTargetRepositoryDict);
} else {
if (!targetDiscriminatorOnThrough) {
console.warn(
'It is highly recommended to specify the targetDiscriminatorOnThrough param when using polymorphic types.',
);
}
if (!targetPolymorphicTypes || targetPolymorphicTypes.length === 0) {
console.warn(
'It is highly recommended to specify the polymorphicTypes param when using polymorphic types.',
);
allKeys = Object.keys(this.getTargetRepositoryDict);
} else {
if (typeof targetPolymorphicTypes === 'string') {
targetPolymorphicTypes = [targetPolymorphicTypes];
}
allKeys = [];
new Set(targetPolymorphicTypes!).forEach(element => {
if (Object.keys(this.getTargetRepositoryDict).includes(element)) {
allKeys.push(element);
}
});
}
}
const sourceConstraint = this.getThroughConstraintFromSource();
let totalCount = 0;
const throughCategorized: {[concreteType: string]: (ThroughEntity & {})[]} =
{};
const throughRepository = await this.getThroughRepository();
(
await throughRepository.find(
constrainFilter(undefined, sourceConstraint),
options?.throughOptions,
)
).forEach(element => {
let concreteTargetType;
if (!targetDiscriminatorOnThrough) {
concreteTargetType = this.targetResolver().name;
} else {
concreteTargetType = String(
element[targetDiscriminatorOnThrough as StringKeyOf<ThroughEntity>],
);
}
if (!allKeys.includes(concreteTargetType)) {
return;
}
if (!this.getTargetRepositoryDict[concreteTargetType]) {
throw new InvalidPolymorphismError(
concreteTargetType,
targetDiscriminatorOnThrough,
);
}
if (!throughCategorized[concreteTargetType]) {
throughCategorized[concreteTargetType] = [];
}
throughCategorized[concreteTargetType].push(element);
});
for (const targetKey of Object.keys(throughCategorized)) {
const targetRepository = await this.getTargetRepositoryDict[targetKey]();
if (where) {
// only delete related through models
// TODO(Agnes): this performance can be improved by only fetching related data
// TODO: add target ids to the `where` constraint
const targets = await targetRepository.find({where});
const targetIds = this.getTargetIds(targets);
if (targetIds.length > 0) {
const targetConstraint =
this.getThroughConstraintFromTarget(targetIds);
const constraints = {...targetConstraint, ...sourceConstraint};
await throughRepository.deleteAll(
constrainDataObject(
{},
constraints as DataObject<ThroughEntity>,
) as Where<ThroughEntity>,
options?.throughOptions,
);
}
} else {
// otherwise, delete through models that relate to the sourceId
const targetFkValues = this.getTargetKeys(
throughCategorized[targetKey],
);
// delete through instances that have the targets that are going to be deleted
const throughFkConstraint =
this.getThroughConstraintFromTarget(targetFkValues);
await throughRepository.deleteAll(
constrainWhereOr({}, [
sourceConstraint as Where<ThroughEntity>,
throughFkConstraint as Where<ThroughEntity>,
]),
);
}
// delete target(s)
const targetConstraint = this.getTargetConstraintFromThroughModels(
throughCategorized[targetKey],
);
totalCount +=
(
await targetRepository.deleteAll(
constrainWhere(where, targetConstraint as Where<TargetEntity>),
options,
)
)?.count ?? 0;
}
return {count: totalCount};
}
// only allows patch target instances for now
async patch(
dataObject:
| DataObject<TargetEntity>
| {[polymorphicType: string]: DataObject<TargetEntity>},
where?: Where<TargetEntity>,
options?: Options & {
throughOptions?: Options & {discriminator?: string};
} & {isPolymorphic?: boolean},
): Promise<Count> {
const targetDiscriminatorOnThrough = options?.throughOptions?.discriminator;
const isMultipleTypes = options?.isPolymorphic;
let allKeys: string[];
if (!targetDiscriminatorOnThrough) {
if (Object.keys(this.getTargetRepositoryDict).length > 1) {
console.warn(
'It is highly recommended to specify the targetDiscriminatorOnThrough param when using polymorphic types.',
);
}
}
if (!isMultipleTypes) {
if (Object.keys(this.getTargetRepositoryDict).length > 1) {
console.warn(
'It is highly recommended to specify the isMultipleTypes param and pass in a dictionary of dataobjects when using polymorphic types.',
);
}
allKeys = Object.keys(this.getTargetRepositoryDict);
} else {
allKeys = [];
new Set(Object.keys(dataObject)).forEach(element => {
if (Object.keys(this.getTargetRepositoryDict).includes(element)) {
allKeys.push(element);
}
});
}
const sourceConstraint = this.getThroughConstraintFromSource();
const throughCategorized: {[concreteType: string]: (ThroughEntity & {})[]} =
{};
const throughRepository = await this.getThroughRepository();
(
await throughRepository.find(
constrainFilter(undefined, sourceConstraint),
options?.throughOptions,
)
).forEach(element => {
let concreteTargetType;
if (!targetDiscriminatorOnThrough) {
concreteTargetType = this.targetResolver().name;
} else {
concreteTargetType = String(
element[targetDiscriminatorOnThrough as StringKeyOf<ThroughEntity>],
);
}
if (!allKeys.includes(concreteTargetType)) {
return;
}
if (!this.getTargetRepositoryDict[concreteTargetType]) {
throw new InvalidPolymorphismError(
concreteTargetType,
targetDiscriminatorOnThrough,
);
}
if (!throughCategorized[concreteTargetType]) {
throughCategorized[concreteTargetType] = [];
}
throughCategorized[concreteTargetType].push(element);
});
let updatedCount = 0;
for (const key of Object.keys(throughCategorized)) {
const targetRepository = await this.getTargetRepositoryDict[key]();
const targetConstraint = this.getTargetConstraintFromThroughModels(
throughCategorized[key],
);
updatedCount +=
(
await targetRepository.updateAll(
constrainDataObject(
isMultipleTypes
? (
dataObject as {
[polymorphicType: string]: DataObject<TargetEntity>;
}
)[key]
: (dataObject as DataObject<TargetEntity>),
targetConstraint,
),
constrainWhere(where, targetConstraint as Where<TargetEntity>),
options,
)
)?.count ?? 0;
}
return {count: updatedCount};
}
async link(
targetId: TargetID,
options?: Options & {
throughData?: DataObject<ThroughEntity>;
throughOptions?: Options;
},
): Promise<void> {
const throughRepository = await this.getThroughRepository();
const sourceConstraint = this.getThroughConstraintFromSource();
const targetConstraint = this.getThroughConstraintFromTarget([targetId]);
const constraints = {...targetConstraint, ...sourceConstraint};
await throughRepository.create(
constrainDataObject(
options?.throughData ?? {},
constraints as DataObject<ThroughEntity>,
),
options?.throughOptions,
);
}
async unlink(
targetId: TargetID,
options?: Options & {
throughOptions?: Options;
},
): Promise<void> {
const throughRepository = await this.getThroughRepository();
const sourceConstraint = this.getThroughConstraintFromSource();
const targetConstraint = this.getThroughConstraintFromTarget([targetId]);
const constraints = {...targetConstraint, ...sourceConstraint};
await throughRepository.deleteAll(
constrainDataObject(
{},
constraints as DataObject<ThroughEntity>,
) as Where<ThroughEntity>,
options?.throughOptions,
);
}
async unlinkAll(
options?: Options & {
throughOptions?: Options;
},
): Promise<void> {
const throughRepository = await this.getThroughRepository();
const sourceConstraint = this.getThroughConstraintFromSource();
const throughInstances = await throughRepository.find(
constrainFilter(undefined, sourceConstraint),
options?.throughOptions,
);
const targetFkValues = this.getTargetKeys(throughInstances);
const targetConstraint =
this.getThroughConstraintFromTarget(targetFkValues);
const constraints = {...targetConstraint, ...sourceConstraint};
await throughRepository.deleteAll(
constrainDataObject(
{},
constraints as DataObject<ThroughEntity>,
) as Where<ThroughEntity>,
options?.throughOptions,
);
}
}