mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
110 lines
2.6 KiB
TypeScript
110 lines
2.6 KiB
TypeScript
import { db } from "@dokploy/server/db";
|
|
import { notifications } from "@dokploy/server/db/schema";
|
|
import DokployRestartEmail from "@dokploy/server/emails/emails/dokploy-restart";
|
|
import { renderAsync } from "@react-email/components";
|
|
import { eq } from "drizzle-orm";
|
|
import {
|
|
sendDiscordNotification,
|
|
sendEmailNotification,
|
|
sendGotifyNotification,
|
|
sendSlackNotification,
|
|
sendTelegramNotification,
|
|
} from "./utils";
|
|
|
|
export const sendDokployRestartNotifications = async () => {
|
|
const date = new Date();
|
|
const unixDate = ~~(Number(date) / 1000);
|
|
const notificationList = await db.query.notifications.findMany({
|
|
where: eq(notifications.dokployRestart, true),
|
|
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(
|
|
DokployRestartEmail({ date: date.toLocaleString() }),
|
|
).catch();
|
|
await sendEmailNotification(email, "Dokploy Server Restarted", template);
|
|
}
|
|
|
|
if (discord) {
|
|
const decorate = (decoration: string, text: string) =>
|
|
`${discord.decoration ? decoration : ""} ${text}`.trim();
|
|
|
|
await sendDiscordNotification(discord, {
|
|
title: decorate(">", "`✅` Dokploy Server Restarted"),
|
|
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,
|
|
},
|
|
],
|
|
timestamp: date.toISOString(),
|
|
footer: {
|
|
text: "Dokploy Restart Notification",
|
|
},
|
|
});
|
|
}
|
|
|
|
if (gotify) {
|
|
const decorate = (decoration: string, text: string) =>
|
|
`${gotify.decoration ? decoration : ""} ${text}`.trim();
|
|
await sendGotifyNotification(
|
|
gotify,
|
|
decorate("✅", "Dokploy Server Restarted"),
|
|
`${decorate("🕒", `Date: ${date.toLocaleString()}`)}`,
|
|
);
|
|
}
|
|
|
|
if (telegram) {
|
|
await sendTelegramNotification(
|
|
telegram,
|
|
`
|
|
<b>✅ Dokploy Server Restarted</b>
|
|
<b>Time:</b> ${date.toLocaleString()}
|
|
`,
|
|
);
|
|
}
|
|
|
|
if (slack) {
|
|
const { channel } = slack;
|
|
await sendSlackNotification(slack, {
|
|
channel: channel,
|
|
attachments: [
|
|
{
|
|
color: "#00FF00",
|
|
pretext: ":white_check_mark: *Dokploy Server Restarted*",
|
|
fields: [
|
|
{
|
|
title: "Time",
|
|
value: date.toLocaleString(),
|
|
short: true,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|
|
}
|
|
}
|
|
};
|