import ModelQuery, {ModelQueryResult, WhereTest} from "./ModelQuery"; import Model from "./Model"; import ModelFactory from "./ModelFactory"; export default abstract class ModelRelation { protected readonly model: S; protected readonly foreignFactory: ModelFactory; protected readonly query: ModelQuery; protected readonly filters: ModelFilter[] = []; protected cachedModels?: R; protected constructor(model: S, foreignFactory: ModelFactory) { this.model = model; this.foreignFactory = foreignFactory; this.query = this.foreignFactory.select(); } public abstract clone(): ModelRelation; public constraint(queryModifier: QueryModifier): this { queryModifier(this.query); return this; } public filter(modelFilter: ModelFilter): this { this.filters.push(modelFilter); return this; } public abstract getModelID(): any; protected abstract async compute(query: ModelQuery): Promise; public async get(): Promise { if (this.cachedModels === undefined) { this.cachedModels = await this.compute(this.query); } return this.cachedModels; } public getOrFail(): R { if (!this.cachedModels) throw new Error('Models were not fetched'); return this.cachedModels; } public abstract async eagerLoad(relations: ModelRelation[]): Promise>; public abstract async populate(models: ModelQueryResult): Promise; } export class OneModelRelation extends ModelRelation { protected readonly dbProperties: RelationDatabaseProperties; constructor(model: S, foreignFactory: ModelFactory, dbProperties: RelationDatabaseProperties) { super(model, foreignFactory); this.dbProperties = dbProperties; } public clone(): OneModelRelation { return new OneModelRelation(this.model, this.foreignFactory, this.dbProperties); } public getModelID() { return this.model[this.dbProperties.localKey]; } protected async compute(query: ModelQuery): Promise { this.query.where(this.dbProperties.foreignKey, this.getModelID()); return await query.first(); } public async get(): Promise { const model = await super.get(); if (model) { for (const filter of this.filters) { if (!(await filter(model))) { return null; } } } return model; } public async eagerLoad(relations: ModelRelation[]): Promise> { this.query.where( this.dbProperties.foreignKey, relations.map(r => r.getModelID()).filter(id => id !== null && id !== undefined), WhereTest.IN ); return await this.query.get(); } public async populate(models: ModelQueryResult): Promise { this.cachedModels = models.filter(m => m[this.dbProperties.foreignKey] === this.getModelID())[0] || null; } } export class ManyModelRelation extends ModelRelation { protected readonly dbProperties: RelationDatabaseProperties; constructor(model: S, foreignFactory: ModelFactory, dbProperties: RelationDatabaseProperties) { super(model, foreignFactory); this.dbProperties = dbProperties; } public clone(): ManyModelRelation { return new ManyModelRelation(this.model, this.foreignFactory, this.dbProperties); } public cloneReduceToOne(): OneModelRelation { return new OneModelRelation(this.model, this.foreignFactory, this.dbProperties); } public getModelID(): any { return this.model[this.dbProperties.localKey]; } protected async compute(query: ModelQuery): Promise { this.query.where(this.dbProperties.foreignKey, this.getModelID()); return await query.get(); } public async get(): Promise { let models = await super.get(); for (const filter of this.filters) { const newModels = []; for (const model of models) { if (await filter(model)) { newModels.push(model); } } models = newModels; } return models; } public async eagerLoad(relations: ModelRelation[]): Promise> { this.query.where( this.dbProperties.foreignKey, relations.map(r => r.getModelID()).filter(id => id !== null && id !== undefined), WhereTest.IN ); return await this.query.get(); } public async populate(models: ModelQueryResult): Promise { this.cachedModels = models.filter(m => m[this.dbProperties.foreignKey] === this.getModelID); } } export class ManyThroughModelRelation extends ModelRelation { protected readonly dbProperties: PivotRelationDatabaseProperties; constructor(model: S, foreignFactory: ModelFactory, dbProperties: PivotRelationDatabaseProperties) { super(model, foreignFactory); this.dbProperties = dbProperties; this.query .leftJoin(`${this.dbProperties.pivotTable} as pivot`) .on(`pivot.${this.dbProperties.foreignPivotKey}`, `${this.foreignFactory.table}.${this.dbProperties.foreignKey}`); } public clone(): ManyThroughModelRelation { return new ManyThroughModelRelation(this.model, this.foreignFactory, this.dbProperties); } public getModelID(): any { return this.model[this.dbProperties.localKey]; } protected async compute(query: ModelQuery): Promise { this.query.where(`pivot.${this.dbProperties.localPivotKey}`, this.getModelID()); return await query.get(); } public async get(): Promise { let models = await super.get(); for (const filter of this.filters) { const newModels = []; for (const model of models) { if (await filter(model)) { newModels.push(model); } } models = newModels; } return models; } public async eagerLoad(relations: ModelRelation[]): Promise> { this.query.where( `pivot.${this.dbProperties.localPivotKey}`, relations.map(r => r.getModelID()), WhereTest.IN); this.query.pivot(`pivot.${this.dbProperties.localPivotKey}`, `pivot.${this.dbProperties.foreignPivotKey}`); return await this.query.get(); } public async populate(models: ModelQueryResult): Promise { const ids = models.pivot! .filter(p => p[this.dbProperties.localPivotKey] === this.getModelID()) .map(p => p[this.dbProperties.foreignPivotKey]); this.cachedModels = models.filter(m => ids.indexOf(m[this.dbProperties.foreignKey]) >= 0); } } export type QueryModifier = (query: ModelQuery) => ModelQuery; export type ModelFilter = (model: O) => boolean | Promise; export type RelationDatabaseProperties = { localKey: string; foreignKey: string; }; export type PivotRelationDatabaseProperties = RelationDatabaseProperties & { pivotTable: string; localPivotKey: string; foreignPivotKey: string; };