mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
import CreateBy from "../Types/Database/CreateBy";
|
|
import { OnCreate } from "../Types/Database/Hooks";
|
|
import QueryHelper from "../Types/Database/QueryHelper";
|
|
import DatabaseService from "./DatabaseService";
|
|
import BadDataException from "../../Types/Exception/BadDataException";
|
|
import Model from "../../Models/DatabaseModels/Label";
|
|
import CaptureSpan from "../Utils/Telemetry/CaptureSpan";
|
|
export class Service extends DatabaseService<Model> {
|
|
public constructor() {
|
|
super(Model);
|
|
}
|
|
|
|
@CaptureSpan()
|
|
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();
|