mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import PostgresDatabase from '../Infrastructure/PostgresDatabase';
|
|
import Model from 'Model/Models/Label';
|
|
import DatabaseService, { OnCreate } from './DatabaseService';
|
|
import CreateBy from '../Types/Database/CreateBy';
|
|
import QueryHelper from '../Types/Database/QueryHelper';
|
|
import BadDataException from 'Common/Types/Exception/BadDataException';
|
|
|
|
export class Service extends DatabaseService<Model> {
|
|
public constructor(postgresDatabase?: PostgresDatabase) {
|
|
super(Model, postgresDatabase);
|
|
}
|
|
|
|
protected override async onBeforeCreate(
|
|
createBy: CreateBy<Model>
|
|
): Promise<OnCreate<Model>> {
|
|
let existingProjectWithSameNameCount: number = 0;
|
|
|
|
existingProjectWithSameNameCount = (
|
|
await this.countBy({
|
|
query: {
|
|
name: QueryHelper.findWithSameText(createBy.data.name!),
|
|
projectId: createBy.props.tenantId!,
|
|
},
|
|
props: {
|
|
isRoot: true,
|
|
},
|
|
})
|
|
).toNumber();
|
|
|
|
if (existingProjectWithSameNameCount > 0) {
|
|
throw new BadDataException(
|
|
'Label with the same name already exists in this project.'
|
|
);
|
|
}
|
|
|
|
return Promise.resolve({ createBy, carryForward: null });
|
|
}
|
|
}
|
|
export default new Service();
|