mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-01-11 19:56:44 +00:00
53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
import CreateBy from "../Types/Database/CreateBy";
|
|
import { OnCreate } from "../Types/Database/Hooks";
|
|
import DatabaseService from "./DatabaseService";
|
|
import ArrayUtil from "../../Utils/Array";
|
|
import { BrightColors } from "../../Types/BrandColors";
|
|
import BadDataException from "../../Types/Exception/BadDataException";
|
|
import ObjectID from "../../Types/ObjectID";
|
|
import Model from "../../Models/DatabaseModels/TelemetryService";
|
|
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>> {
|
|
createBy.data.telemetryServiceToken = ObjectID.generate();
|
|
|
|
// select a random color.
|
|
createBy.data.serviceColor = ArrayUtil.selectItemByRandom(BrightColors);
|
|
|
|
return {
|
|
carryForward: null,
|
|
createBy: createBy,
|
|
};
|
|
}
|
|
|
|
@CaptureSpan()
|
|
public async getTelemetryDataRetentionInDays(
|
|
telemetryServiceId: ObjectID,
|
|
): Promise<number> {
|
|
const project: Model | null = await this.findOneById({
|
|
id: telemetryServiceId,
|
|
select: {
|
|
retainTelemetryDataForDays: true,
|
|
},
|
|
props: {
|
|
isRoot: true,
|
|
},
|
|
});
|
|
|
|
if (!project) {
|
|
throw new BadDataException("Project not found");
|
|
}
|
|
|
|
return project.retainTelemetryDataForDays || 15; // default is 15 days.
|
|
}
|
|
}
|
|
|
|
export default new Service();
|