33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
'use server';
|
|
|
|
const GOTIFY_URL = process.env.GOTIFY_URL;
|
|
const GOTIFY_APP_TOKEN = process.env.GOTIFY_APP_TOKEN;
|
|
|
|
export async function sendGotifyNotification(attempts: number, status: 'won' | 'lost', puzzleId: number, genre?: string | null) {
|
|
try {
|
|
const genreText = genre ? `[${genre}] ` : '';
|
|
const title = `Hördle ${genreText}#${puzzleId} ${status === 'won' ? 'Solved!' : 'Failed'}`;
|
|
const message = status === 'won'
|
|
? `Puzzle #${puzzleId} ${genre ? `(${genre}) ` : ''}was solved in ${attempts} attempt(s).`
|
|
: `Puzzle #${puzzleId} ${genre ? `(${genre}) ` : ''}was failed after ${attempts} attempt(s).`;
|
|
|
|
const response = await fetch(`${GOTIFY_URL}/message?token=${GOTIFY_APP_TOKEN}`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({
|
|
title: title,
|
|
message: message,
|
|
priority: 5,
|
|
}),
|
|
});
|
|
|
|
if (!response.ok) {
|
|
console.error('Failed to send Gotify notification:', await response.text());
|
|
}
|
|
} catch (error) {
|
|
console.error('Error sending Gotify notification:', error);
|
|
}
|
|
}
|