mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-01-16 23:00:51 +00:00
174 lines
5.7 KiB
TypeScript
174 lines
5.7 KiB
TypeScript
import Team from "../../Models/DatabaseModels/Team";
|
|
import ObjectID from "../../Types/ObjectID";
|
|
import DeleteBy from "../Types/Database/DeleteBy";
|
|
import { OnCreate, OnDelete } from "../Types/Database/Hooks";
|
|
import DatabaseService from "./DatabaseService";
|
|
import Model from "../../Models/DatabaseModels/AlertOwnerTeam";
|
|
import TeamService from "./TeamService";
|
|
import AlertFeedService from "./AlertFeedService";
|
|
import { AlertFeedEventType } from "../../Models/DatabaseModels/AlertFeed";
|
|
import { Gray500, Red500 } from "../../Types/BrandColors";
|
|
import AlertService from "./AlertService";
|
|
import WorkspaceNotificationRule from "../../Models/DatabaseModels/WorkspaceNotificationRule";
|
|
import WorkspaceNotificationRuleService from "./WorkspaceNotificationRuleService";
|
|
import NotificationRuleEventType from "../../Types/Workspace/NotificationRules/EventType";
|
|
import logger from "../Utils/Logger";
|
|
import CaptureSpan from "../Utils/Telemetry/CaptureSpan";
|
|
|
|
export class Service extends DatabaseService<Model> {
|
|
public constructor() {
|
|
super(Model);
|
|
}
|
|
|
|
@CaptureSpan()
|
|
protected override async onBeforeDelete(
|
|
deleteBy: DeleteBy<Model>,
|
|
): Promise<OnDelete<Model>> {
|
|
const itemsToDelete: Model[] = await this.findBy({
|
|
query: deleteBy.query,
|
|
limit: deleteBy.limit,
|
|
skip: deleteBy.skip,
|
|
props: {
|
|
isRoot: true,
|
|
},
|
|
select: {
|
|
alertId: true,
|
|
projectId: true,
|
|
teamId: true,
|
|
},
|
|
});
|
|
|
|
return {
|
|
carryForward: {
|
|
itemsToDelete: itemsToDelete,
|
|
},
|
|
deleteBy: deleteBy,
|
|
};
|
|
}
|
|
|
|
@CaptureSpan()
|
|
protected override async onDeleteSuccess(
|
|
onDelete: OnDelete<Model>,
|
|
_itemIdsBeforeDelete: Array<ObjectID>,
|
|
): Promise<OnDelete<Model>> {
|
|
const deleteByUserId: ObjectID | undefined =
|
|
onDelete.deleteBy.deletedByUser?.id || onDelete.deleteBy.props.userId;
|
|
|
|
const itemsToDelete: Model[] = onDelete.carryForward.itemsToDelete;
|
|
|
|
for (const item of itemsToDelete) {
|
|
const alertId: ObjectID | undefined = item.alertId;
|
|
const projectId: ObjectID | undefined = item.projectId;
|
|
const teamId: ObjectID | undefined = item.teamId;
|
|
|
|
if (alertId && teamId && projectId) {
|
|
const team: Team | null = await TeamService.findOneById({
|
|
id: teamId,
|
|
select: {
|
|
name: true,
|
|
},
|
|
props: {
|
|
isRoot: true,
|
|
},
|
|
});
|
|
|
|
if (team && team.name) {
|
|
const alertNumber: number | null = await AlertService.getAlertNumber({
|
|
alertId: alertId,
|
|
});
|
|
await AlertFeedService.createAlertFeedItem({
|
|
alertId: alertId,
|
|
projectId: projectId,
|
|
alertFeedEventType: AlertFeedEventType.OwnerTeamRemoved,
|
|
displayColor: Red500,
|
|
feedInfoInMarkdown: `👨🏻👩🏻👦🏻 Removed team **${team.name}** from the [Alert ${alertNumber}](${(await AlertService.getAlertLinkInDashboard(projectId!, alertId!)).toString()}) as the owner.`,
|
|
userId: deleteByUserId || undefined,
|
|
workspaceNotification: {
|
|
sendWorkspaceNotification: true,
|
|
notifyUserId: deleteByUserId || undefined,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
return onDelete;
|
|
}
|
|
|
|
@CaptureSpan()
|
|
public override async onCreateSuccess(
|
|
onCreate: OnCreate<Model>,
|
|
createdItem: Model,
|
|
): Promise<Model> {
|
|
// add alert feed.
|
|
|
|
const alertId: ObjectID | undefined = createdItem.alertId;
|
|
const projectId: ObjectID | undefined = createdItem.projectId;
|
|
const teamId: ObjectID | undefined = createdItem.teamId;
|
|
const createdByUserId: ObjectID | undefined =
|
|
createdItem.createdByUserId || onCreate.createBy.props.userId;
|
|
|
|
if (alertId && teamId && projectId) {
|
|
const team: Team | null = await TeamService.findOneById({
|
|
id: teamId,
|
|
select: {
|
|
name: true,
|
|
},
|
|
props: {
|
|
isRoot: true,
|
|
},
|
|
});
|
|
|
|
if (team && team.name) {
|
|
const alertNumber: number | null = await AlertService.getAlertNumber({
|
|
alertId: alertId,
|
|
});
|
|
|
|
await AlertFeedService.createAlertFeedItem({
|
|
alertId: alertId,
|
|
projectId: projectId,
|
|
alertFeedEventType: AlertFeedEventType.OwnerTeamAdded,
|
|
displayColor: Gray500,
|
|
feedInfoInMarkdown: `👨🏻👩🏻👦🏻 Added team **${team.name}** to the [Alert ${alertNumber}](${(await AlertService.getAlertLinkInDashboard(projectId!, alertId!)).toString()}) as the owner.`,
|
|
userId: createdByUserId || undefined,
|
|
workspaceNotification: {
|
|
sendWorkspaceNotification: true,
|
|
notifyUserId: createdByUserId || undefined,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
// get notification rule where inviteOwners is true.
|
|
const notificationRules: Array<WorkspaceNotificationRule> =
|
|
await WorkspaceNotificationRuleService.getNotificationRulesWhereInviteOwnersIsTrue(
|
|
{
|
|
projectId: projectId!,
|
|
notificationFor: {
|
|
alertId: alertId,
|
|
},
|
|
notificationRuleEventType: NotificationRuleEventType.Alert,
|
|
},
|
|
);
|
|
|
|
logger.debug(`Notification Rules for Alert Owner Teams`);
|
|
logger.debug(notificationRules);
|
|
|
|
WorkspaceNotificationRuleService.inviteTeamsBasedOnRulesAndWorkspaceChannels(
|
|
{
|
|
notificationRules: notificationRules,
|
|
projectId: projectId!,
|
|
workspaceChannels: await AlertService.getWorkspaceChannelForAlert({
|
|
alertId: alertId!,
|
|
}),
|
|
teamIds: [teamId!],
|
|
},
|
|
).catch((error: Error) => {
|
|
logger.error(error);
|
|
});
|
|
|
|
return createdItem;
|
|
}
|
|
}
|
|
|
|
export default new Service();
|