| import { db } from "@dokploy/server/db"; | |
| import { notifications } from "@dokploy/server/db/schema"; | |
| import DockerCleanupEmail from "@dokploy/server/emails/emails/docker-cleanup"; | |
| 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"; | |
| export const sendDockerCleanupNotifications = async ( | |
| organizationId: string, | |
| message = "Docker cleanup for dokploy", | |
| ) => { | |
| const date = new Date(); | |
| const unixDate = ~~(Number(date) / 1000); | |
| const notificationList = await db.query.notifications.findMany({ | |
| where: and( | |
| eq(notifications.dockerCleanup, 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( | |
| DockerCleanupEmail({ message, date: date.toLocaleString() }), | |
| ).catch(); | |
| await sendEmailNotification( | |
| email, | |
| "Docker cleanup for dokploy", | |
| template, | |
| ); | |
| } | |
| if (discord) { | |
| const decorate = (decoration: string, text: string) => | |
| `${discord.decoration ? decoration : ""} ${text}`.trim(); | |
| await sendDiscordNotification(discord, { | |
| title: decorate(">", "`β ` Docker Cleanup"), | |
| color: 0x57f287, | |
| fields: [ | |
| { | |
| name: decorate("`π `", "Date"), | |
| value: `<t:${unixDate}:D>`, | |
| inline: true, | |
| }, | |
| { | |
| name: decorate("`β`", "Time"), | |
| value: `<t:${unixDate}:t>`, | |
| inline: true, | |
| }, | |
| { | |
| name: decorate("`β`", "Type"), | |
| value: "Successful", | |
| inline: true, | |
| }, | |
| { | |
| name: decorate("`π`", "Message"), | |
| value: `\`\`\`${message}\`\`\``, | |
| }, | |
| ], | |
| timestamp: date.toISOString(), | |
| footer: { | |
| text: "Dokploy Docker Cleanup Notification", | |
| }, | |
| }); | |
| } | |
| if (gotify) { | |
| const decorate = (decoration: string, text: string) => | |
| `${gotify.decoration ? decoration : ""} ${text}\n`; | |
| await sendGotifyNotification( | |
| gotify, | |
| decorate("β ", "Docker Cleanup"), | |
| `${decorate("π", `Date: ${date.toLocaleString()}`)}` + | |
| `${decorate("π", `Message:\n${message}`)}`, | |
| ); | |
| } | |
| if (telegram) { | |
| await sendTelegramNotification( | |
| telegram, | |
| `<b>β Docker Cleanup</b>\n\n<b>Message:</b> ${message}\n<b>Date:</b> ${format(date, "PP")}\n<b>Time:</b> ${format(date, "pp")}`, | |
| ); | |
| } | |
| if (slack) { | |
| const { channel } = slack; | |
| await sendSlackNotification(slack, { | |
| channel: channel, | |
| attachments: [ | |
| { | |
| color: "#00FF00", | |
| pretext: ":white_check_mark: *Docker Cleanup*", | |
| fields: [ | |
| { | |
| title: "Message", | |
| value: message, | |
| }, | |
| { | |
| title: "Time", | |
| value: date.toLocaleString(), | |
| short: true, | |
| }, | |
| ], | |
| }, | |
| ], | |
| }); | |
| } | |
| } | |
| }; | |