import { db } from "@dokploy/server/db"; import { notifications } from "@dokploy/server/db/schema"; import BuildSuccessEmail from "@dokploy/server/emails/emails/build-success"; import type { Domain } from "@dokploy/server/services/domain"; import { renderAsync } from "@react-email/components"; import { format } from "date-fns"; import { and, eq } from "drizzle-orm"; import { sendDiscordNotification, sendEmailNotification, sendGotifyNotification, sendSlackNotification, sendTelegramNotification, } from "./utils"; interface Props { projectName: string; applicationName: string; applicationType: string; buildLink: string; organizationId: string; domains: Domain[]; } export const sendBuildSuccessNotifications = async ({ projectName, applicationName, applicationType, buildLink, organizationId, domains, }: Props) => { const date = new Date(); const unixDate = ~~(Number(date) / 1000); const notificationList = await db.query.notifications.findMany({ where: and( eq(notifications.appDeploy, true), eq(notifications.organizationId, organizationId), ), with: { email: true, discord: true, telegram: true, slack: true, gotify: true, }, }); for (const notification of notificationList) { const { email, discord, telegram, slack, gotify } = notification; if (email) { const template = await renderAsync( BuildSuccessEmail({ projectName, applicationName, applicationType, buildLink, date: date.toLocaleString(), }), ).catch(); await sendEmailNotification(email, "Build success for dokploy", template); } if (discord) { const decorate = (decoration: string, text: string) => `${discord.decoration ? decoration : ""} ${text}`.trim(); await sendDiscordNotification(discord, { title: decorate(">", "`โœ…` Build Success"), color: 0x57f287, fields: [ { name: decorate("`๐Ÿ› ๏ธ`", "Project"), value: projectName, inline: true, }, { name: decorate("`โš™๏ธ`", "Application"), value: applicationName, inline: true, }, { name: decorate("`โ”`", "Type"), value: applicationType, inline: true, }, { name: decorate("`๐Ÿ“…`", "Date"), value: ``, inline: true, }, { name: decorate("`โŒš`", "Time"), value: ``, inline: true, }, { name: decorate("`โ“`", "Type"), value: "Successful", inline: true, }, { name: decorate("`๐Ÿงท`", "Build Link"), value: `[Click here to access build link](${buildLink})`, }, ], timestamp: date.toISOString(), footer: { text: "Dokploy Build Notification", }, }); } if (gotify) { const decorate = (decoration: string, text: string) => `${gotify.decoration ? decoration : ""} ${text}\n`; await sendGotifyNotification( gotify, decorate("โœ…", "Build Success"), `${decorate("๐Ÿ› ๏ธ", `Project: ${projectName}`)}` + `${decorate("โš™๏ธ", `Application: ${applicationName}`)}` + `${decorate("โ”", `Type: ${applicationType}`)}` + `${decorate("๐Ÿ•’", `Date: ${date.toLocaleString()}`)}` + `${decorate("๐Ÿ”—", `Build details:\n${buildLink}`)}`, ); } if (telegram) { const chunkArray = (array: T[], chunkSize: number): T[][] => Array.from({ length: Math.ceil(array.length / chunkSize) }, (_, i) => array.slice(i * chunkSize, i * chunkSize + chunkSize), ); const inlineButton = [ [ { text: "Deployment Logs", url: buildLink, }, ], ...chunkArray(domains, 2).map((chunk) => chunk.map((data) => ({ text: data.host, url: `${data.https ? "https" : "http"}://${data.host}`, })), ), ]; await sendTelegramNotification( telegram, `โœ… Build Success\n\nProject: ${projectName}\nApplication: ${applicationName}\nType: ${applicationType}\nDate: ${format(date, "PP")}\nTime: ${format(date, "pp")}`, inlineButton, ); } if (slack) { const { channel } = slack; await sendSlackNotification(slack, { channel: channel, attachments: [ { color: "#00FF00", pretext: ":white_check_mark: *Build Success*", fields: [ { title: "Project", value: projectName, short: true, }, { title: "Application", value: applicationName, short: true, }, { title: "Type", value: applicationType, short: true, }, { title: "Time", value: date.toLocaleString(), short: true, }, ], actions: [ { type: "button", text: "View Build Details", url: buildLink, }, ], }, ], }); } } };