Neues Settings-Feld "Discord-Ping" unter der Webhook-URL: User-ID, @everyone oder @here. Wird jeder Webhook-Nachricht vorangestellt, damit Discord wirklich pingt statt nur still in den Kanal zu schreiben. Eine nackte Zahl wird als <@id> verpackt (nur so pingt eine User-Erwaehnung); @everyone/@here und fertige <@...>-Mentions gehen unveraendert durch. Default leer = Verhalten wie bisher. 5 neue Tests (Normalisierung + Content-Prefix).
59 lines
1.8 KiB
TypeScript
59 lines
1.8 KiB
TypeScript
import { logger } from "./logger";
|
|
|
|
export interface NotifyPayload {
|
|
title: string;
|
|
message: string;
|
|
mention?: string;
|
|
}
|
|
|
|
const NOTIFY_TIMEOUT_MS = 5000;
|
|
const WEBHOOK_USERNAME = "Real-Debrid Downloader";
|
|
|
|
export function isNotifyUrlValid(url: string): boolean {
|
|
return /^https?:\/\/\S+$/i.test(String(url || "").trim());
|
|
}
|
|
|
|
// Accepts a bare Discord user ID (wrapped as <@id> so it actually pings),
|
|
// @everyone/@here, or an already-formed <@...>/<@&...> mention as-is.
|
|
export function normalizeDiscordMention(raw: string): string {
|
|
const text = String(raw || "").trim();
|
|
if (!text) {
|
|
return "";
|
|
}
|
|
if (/^\d{5,}$/.test(text)) {
|
|
return `<@${text}>`;
|
|
}
|
|
return text;
|
|
}
|
|
|
|
export function buildNotifyRequest(url: string, payload: NotifyPayload): { url: string; init: RequestInit } {
|
|
const mention = normalizeDiscordMention(payload.mention || "");
|
|
const content = `${mention ? `${mention} ` : ""}**${payload.title}**\n${payload.message}`.slice(0, 2000);
|
|
return {
|
|
url: String(url || "").trim(),
|
|
init: {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ username: WEBHOOK_USERNAME, content })
|
|
}
|
|
};
|
|
}
|
|
|
|
export async function sendNotification(url: string, payload: NotifyPayload, fetchFn: typeof fetch = fetch): Promise<boolean> {
|
|
if (!isNotifyUrlValid(url)) {
|
|
return false;
|
|
}
|
|
try {
|
|
const request = buildNotifyRequest(url, payload);
|
|
const response = await fetchFn(request.url, { ...request.init, signal: AbortSignal.timeout(NOTIFY_TIMEOUT_MS) });
|
|
if (!response.ok) {
|
|
logger.warn(`Benachrichtigung fehlgeschlagen (HTTP ${response.status}): ${payload.title}`);
|
|
return false;
|
|
}
|
|
return true;
|
|
} catch (error) {
|
|
logger.warn(`Benachrichtigung fehlgeschlagen: ${String(error)}`);
|
|
return false;
|
|
}
|
|
}
|