mirror of
https://github.com/hexastack/hexabot
synced 2025-02-23 21:04:15 +00:00
112 lines
3.5 KiB
TypeScript
112 lines
3.5 KiB
TypeScript
/*
|
|
* Copyright © 2024 Hexastack. All rights reserved.
|
|
*
|
|
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
|
|
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
|
|
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
|
|
*/
|
|
|
|
import { Injectable } from '@nestjs/common';
|
|
import { EventEmitter2 } from '@nestjs/event-emitter';
|
|
import { InjectModel } from '@nestjs/mongoose';
|
|
import { Document, Model, Query } from 'mongoose';
|
|
|
|
import { BaseRepository, DeleteResult } from '@/utils/generics/base-repository';
|
|
import { TFilterQuery } from '@/utils/types/filter.types';
|
|
|
|
import { NlpValueDto } from '../dto/nlp-value.dto';
|
|
import {
|
|
NLP_VALUE_POPULATE,
|
|
NlpValue,
|
|
NlpValueDocument,
|
|
NlpValueFull,
|
|
NlpValuePopulate,
|
|
} from '../schemas/nlp-value.schema';
|
|
|
|
import { NlpSampleEntityRepository } from './nlp-sample-entity.repository';
|
|
|
|
@Injectable()
|
|
export class NlpValueRepository extends BaseRepository<
|
|
NlpValue,
|
|
NlpValuePopulate,
|
|
NlpValueFull,
|
|
NlpValueDto
|
|
> {
|
|
constructor(
|
|
readonly eventEmitter: EventEmitter2,
|
|
@InjectModel(NlpValue.name) readonly model: Model<NlpValue>,
|
|
private readonly nlpSampleEntityRepository: NlpSampleEntityRepository,
|
|
) {
|
|
super(eventEmitter, model, NlpValue, NLP_VALUE_POPULATE, NlpValueFull);
|
|
}
|
|
|
|
/**
|
|
* Emits an event after a new NLP value is created, bypassing built-in values.
|
|
*
|
|
* @param created - The newly created NLP value document.
|
|
*/
|
|
async postCreate(created: NlpValueDocument): Promise<void> {
|
|
if (!created.builtin) {
|
|
// Bypass builtin entities (probably fixtures)
|
|
this.eventEmitter.emit('hook:nlpValue:create', created);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Emits an event after an NLP value is updated, bypassing built-in values.
|
|
*
|
|
* @param query - The query that was used to update the NLP value.
|
|
* @param updated - The updated NLP value document.
|
|
*/
|
|
async postUpdate(
|
|
_query: Query<
|
|
Document<NlpValue, any, any>,
|
|
Document<NlpValue, any, any>,
|
|
unknown,
|
|
NlpValue,
|
|
'findOneAndUpdate'
|
|
>,
|
|
updated: NlpValue,
|
|
): Promise<void> {
|
|
if (!updated?.builtin) {
|
|
// Bypass builtin entities (probably fixtures)
|
|
this.eventEmitter.emit('hook:nlpValue:update', updated);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Handles deletion of NLP values and associated entities. If the criteria includes an ID,
|
|
* emits an event for each deleted entity.
|
|
*
|
|
* @param _query - The query used to delete the NLP value(s).
|
|
* @param criteria - The filter criteria used to identify the NLP value(s) to delete.
|
|
*/
|
|
async preDelete(
|
|
_query: Query<
|
|
DeleteResult,
|
|
Document<NlpValue, any, any>,
|
|
unknown,
|
|
NlpValue,
|
|
'deleteOne' | 'deleteMany'
|
|
>,
|
|
criteria: TFilterQuery<NlpValue>,
|
|
): Promise<void> {
|
|
if (criteria._id) {
|
|
await this.nlpSampleEntityRepository.deleteMany({ value: criteria._id });
|
|
|
|
const entities = await this.find(
|
|
typeof criteria === 'string' ? { _id: criteria } : criteria,
|
|
);
|
|
entities
|
|
.filter((e) => !e.builtin)
|
|
.map((e) => {
|
|
this.eventEmitter.emit('hook:nlpValue:delete', e);
|
|
});
|
|
} else if (criteria.entity) {
|
|
// Do nothing : cascading deletes coming from Nlp Sample Entity
|
|
} else {
|
|
throw new Error('Attempted to delete a NLP value using unknown criteria');
|
|
}
|
|
}
|
|
}
|