PriceGhost/backend/src/routes/settings.ts
clucraft 2549118555 Add self-hosted ntfy support with authentication
- Add server URL field (defaults to ntfy.sh if blank)
- Add optional username/password for protected servers
- Auth fields only shown when custom server URL is entered
- Database migration for ntfy_server_url, ntfy_username, ntfy_password
- Update CHANGELOG with self-hosted ntfy feature

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-26 21:27:09 -05:00

523 lines
16 KiB
TypeScript

import { Router, Response } from 'express';
import { AuthRequest, authMiddleware } from '../middleware/auth';
import { userQueries } from '../models';
const router = Router();
// All routes require authentication
router.use(authMiddleware);
// Get notification settings
router.get('/notifications', async (req: AuthRequest, res: Response) => {
try {
const userId = req.userId!;
const settings = await userQueries.getNotificationSettings(userId);
if (!settings) {
res.status(404).json({ error: 'User not found' });
return;
}
res.json({
telegram_bot_token: settings.telegram_bot_token || null,
telegram_chat_id: settings.telegram_chat_id || null,
telegram_enabled: settings.telegram_enabled ?? true,
discord_webhook_url: settings.discord_webhook_url || null,
discord_enabled: settings.discord_enabled ?? true,
pushover_user_key: settings.pushover_user_key || null,
pushover_app_token: settings.pushover_app_token || null,
pushover_enabled: settings.pushover_enabled ?? true,
ntfy_topic: settings.ntfy_topic || null,
ntfy_server_url: settings.ntfy_server_url || null,
ntfy_username: settings.ntfy_username || null,
ntfy_password: settings.ntfy_password || null,
ntfy_enabled: settings.ntfy_enabled ?? true,
gotify_url: settings.gotify_url || null,
gotify_app_token: settings.gotify_app_token || null,
gotify_enabled: settings.gotify_enabled ?? true,
});
} catch (error) {
console.error('Error fetching notification settings:', error);
res.status(500).json({ error: 'Failed to fetch notification settings' });
}
});
// Update notification settings
router.put('/notifications', async (req: AuthRequest, res: Response) => {
try {
const userId = req.userId!;
const {
telegram_bot_token,
telegram_chat_id,
telegram_enabled,
discord_webhook_url,
discord_enabled,
pushover_user_key,
pushover_app_token,
pushover_enabled,
ntfy_topic,
ntfy_server_url,
ntfy_username,
ntfy_password,
ntfy_enabled,
gotify_url,
gotify_app_token,
gotify_enabled,
} = req.body;
const settings = await userQueries.updateNotificationSettings(userId, {
telegram_bot_token,
telegram_chat_id,
telegram_enabled,
discord_webhook_url,
discord_enabled,
pushover_user_key,
pushover_app_token,
pushover_enabled,
ntfy_topic,
ntfy_server_url,
ntfy_username,
ntfy_password,
ntfy_enabled,
gotify_url,
gotify_app_token,
gotify_enabled,
});
if (!settings) {
res.status(400).json({ error: 'No settings to update' });
return;
}
res.json({
telegram_bot_token: settings.telegram_bot_token || null,
telegram_chat_id: settings.telegram_chat_id || null,
telegram_enabled: settings.telegram_enabled ?? true,
discord_webhook_url: settings.discord_webhook_url || null,
discord_enabled: settings.discord_enabled ?? true,
pushover_user_key: settings.pushover_user_key || null,
pushover_app_token: settings.pushover_app_token || null,
pushover_enabled: settings.pushover_enabled ?? true,
ntfy_topic: settings.ntfy_topic || null,
ntfy_server_url: settings.ntfy_server_url || null,
ntfy_username: settings.ntfy_username || null,
ntfy_password: settings.ntfy_password || null,
ntfy_enabled: settings.ntfy_enabled ?? true,
gotify_url: settings.gotify_url || null,
gotify_app_token: settings.gotify_app_token || null,
gotify_enabled: settings.gotify_enabled ?? true,
message: 'Notification settings updated successfully',
});
} catch (error) {
console.error('Error updating notification settings:', error);
res.status(500).json({ error: 'Failed to update notification settings' });
}
});
// Test Telegram notification
router.post('/notifications/test/telegram', async (req: AuthRequest, res: Response) => {
try {
const userId = req.userId!;
const settings = await userQueries.getNotificationSettings(userId);
if (!settings?.telegram_bot_token || !settings?.telegram_chat_id) {
res.status(400).json({ error: 'Telegram not configured' });
return;
}
const { sendTelegramNotification } = await import('../services/notifications');
const success = await sendTelegramNotification(
settings.telegram_bot_token,
settings.telegram_chat_id,
{
productName: 'Test Product',
productUrl: 'https://example.com',
type: 'price_drop',
oldPrice: 29.99,
newPrice: 19.99,
currency: 'USD',
}
);
if (success) {
res.json({ message: 'Test notification sent successfully' });
} else {
res.status(500).json({ error: 'Failed to send test notification' });
}
} catch (error) {
console.error('Error sending test Telegram notification:', error);
res.status(500).json({ error: 'Failed to send test notification' });
}
});
// Test Discord notification
router.post('/notifications/test/discord', async (req: AuthRequest, res: Response) => {
try {
const userId = req.userId!;
const settings = await userQueries.getNotificationSettings(userId);
if (!settings?.discord_webhook_url) {
res.status(400).json({ error: 'Discord not configured' });
return;
}
const { sendDiscordNotification } = await import('../services/notifications');
const success = await sendDiscordNotification(settings.discord_webhook_url, {
productName: 'Test Product',
productUrl: 'https://example.com',
type: 'price_drop',
oldPrice: 29.99,
newPrice: 19.99,
currency: 'USD',
});
if (success) {
res.json({ message: 'Test notification sent successfully' });
} else {
res.status(500).json({ error: 'Failed to send test notification' });
}
} catch (error) {
console.error('Error sending test Discord notification:', error);
res.status(500).json({ error: 'Failed to send test notification' });
}
});
// Test Pushover notification
router.post('/notifications/test/pushover', async (req: AuthRequest, res: Response) => {
try {
const userId = req.userId!;
const settings = await userQueries.getNotificationSettings(userId);
if (!settings?.pushover_user_key || !settings?.pushover_app_token) {
res.status(400).json({ error: 'Pushover not configured' });
return;
}
const { sendPushoverNotification } = await import('../services/notifications');
const success = await sendPushoverNotification(
settings.pushover_user_key,
settings.pushover_app_token,
{
productName: 'Test Product',
productUrl: 'https://example.com',
type: 'price_drop',
oldPrice: 29.99,
newPrice: 19.99,
currency: 'USD',
}
);
if (success) {
res.json({ message: 'Test notification sent successfully' });
} else {
res.status(500).json({ error: 'Failed to send test notification' });
}
} catch (error) {
console.error('Error sending test Pushover notification:', error);
res.status(500).json({ error: 'Failed to send test notification' });
}
});
// Test ntfy notification
router.post('/notifications/test/ntfy', async (req: AuthRequest, res: Response) => {
try {
const userId = req.userId!;
const settings = await userQueries.getNotificationSettings(userId);
if (!settings?.ntfy_topic) {
res.status(400).json({ error: 'ntfy not configured' });
return;
}
const { sendNtfyNotification } = await import('../services/notifications');
const success = await sendNtfyNotification(
settings.ntfy_topic,
{
productName: 'Test Product',
productUrl: 'https://example.com',
type: 'price_drop',
oldPrice: 29.99,
newPrice: 19.99,
currency: 'USD',
},
settings.ntfy_server_url,
settings.ntfy_username,
settings.ntfy_password
);
if (success) {
res.json({ message: 'Test notification sent successfully' });
} else {
res.status(500).json({ error: 'Failed to send test notification' });
}
} catch (error) {
console.error('Error sending test ntfy notification:', error);
res.status(500).json({ error: 'Failed to send test notification' });
}
});
// Test Gotify connection (before saving)
router.post('/notifications/test-gotify', async (req: AuthRequest, res: Response) => {
try {
const { url, app_token } = req.body;
if (!url || !app_token) {
res.status(400).json({ error: 'Server URL and app token are required' });
return;
}
const { testGotifyConnection } = await import('../services/notifications');
const result = await testGotifyConnection(url, app_token);
if (result.success) {
res.json({ success: true, message: 'Successfully connected to Gotify server' });
} else {
res.status(400).json({ success: false, error: result.error });
}
} catch (error) {
console.error('Error testing Gotify connection:', error);
res.status(500).json({ error: 'Failed to test Gotify connection' });
}
});
// Test Gotify notification (after saving)
router.post('/notifications/test/gotify', async (req: AuthRequest, res: Response) => {
try {
const userId = req.userId!;
const settings = await userQueries.getNotificationSettings(userId);
if (!settings?.gotify_url || !settings?.gotify_app_token) {
res.status(400).json({ error: 'Gotify not configured' });
return;
}
const { sendGotifyNotification } = await import('../services/notifications');
const success = await sendGotifyNotification(
settings.gotify_url,
settings.gotify_app_token,
{
productName: 'Test Product',
productUrl: 'https://example.com',
type: 'price_drop',
oldPrice: 29.99,
newPrice: 19.99,
currency: 'USD',
}
);
if (success) {
res.json({ message: 'Test notification sent successfully' });
} else {
res.status(500).json({ error: 'Failed to send test notification' });
}
} catch (error) {
console.error('Error sending test Gotify notification:', error);
res.status(500).json({ error: 'Failed to send test notification' });
}
});
// Get AI settings
router.get('/ai', async (req: AuthRequest, res: Response) => {
try {
const userId = req.userId!;
const settings = await userQueries.getAISettings(userId);
if (!settings) {
res.status(404).json({ error: 'User not found' });
return;
}
res.json({
ai_enabled: settings.ai_enabled || false,
ai_verification_enabled: settings.ai_verification_enabled || false,
ai_provider: settings.ai_provider || null,
anthropic_api_key: settings.anthropic_api_key || null,
anthropic_model: settings.anthropic_model || null,
openai_api_key: settings.openai_api_key || null,
openai_model: settings.openai_model || null,
ollama_base_url: settings.ollama_base_url || null,
ollama_model: settings.ollama_model || null,
gemini_api_key: settings.gemini_api_key || null,
gemini_model: settings.gemini_model || null,
});
} catch (error) {
console.error('Error fetching AI settings:', error);
res.status(500).json({ error: 'Failed to fetch AI settings' });
}
});
// Update AI settings
router.put('/ai', async (req: AuthRequest, res: Response) => {
try {
const userId = req.userId!;
const {
ai_enabled,
ai_verification_enabled,
ai_provider,
anthropic_api_key,
anthropic_model,
openai_api_key,
openai_model,
ollama_base_url,
ollama_model,
gemini_api_key,
gemini_model,
} = req.body;
const settings = await userQueries.updateAISettings(userId, {
ai_enabled,
ai_verification_enabled,
ai_provider,
anthropic_api_key,
anthropic_model,
openai_api_key,
openai_model,
ollama_base_url,
ollama_model,
gemini_api_key,
gemini_model,
});
if (!settings) {
res.status(400).json({ error: 'No settings to update' });
return;
}
res.json({
ai_enabled: settings.ai_enabled || false,
ai_verification_enabled: settings.ai_verification_enabled || false,
ai_provider: settings.ai_provider || null,
anthropic_api_key: settings.anthropic_api_key || null,
anthropic_model: settings.anthropic_model || null,
openai_api_key: settings.openai_api_key || null,
openai_model: settings.openai_model || null,
ollama_base_url: settings.ollama_base_url || null,
ollama_model: settings.ollama_model || null,
gemini_api_key: settings.gemini_api_key || null,
gemini_model: settings.gemini_model || null,
message: 'AI settings updated successfully',
});
} catch (error) {
console.error('Error updating AI settings:', error);
res.status(500).json({ error: 'Failed to update AI settings' });
}
});
// Test AI extraction
router.post('/ai/test', async (req: AuthRequest, res: Response) => {
try {
const userId = req.userId!;
const { url } = req.body;
if (!url) {
res.status(400).json({ error: 'URL is required' });
return;
}
const settings = await userQueries.getAISettings(userId);
if (!settings?.ai_enabled) {
res.status(400).json({ error: 'AI extraction is not enabled' });
return;
}
console.log(`[AI Test] Testing URL: ${url} with provider: ${settings.ai_provider}`);
const { extractWithAI } = await import('../services/ai-extractor');
const result = await extractWithAI(url, settings);
console.log(`[AI Test] Result:`, JSON.stringify(result, null, 2));
res.json({
success: !!result.price,
...result,
});
} catch (error) {
console.error('Error testing AI extraction:', error);
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
res.status(500).json({ error: `Failed to test AI extraction: ${errorMessage}` });
}
});
// Test Ollama connection and list available models
router.post('/ai/test-ollama', async (req: AuthRequest, res: Response) => {
try {
const { base_url } = req.body;
if (!base_url) {
res.status(400).json({ error: 'Base URL is required' });
return;
}
// Try to fetch list of models from Ollama
const axios = (await import('axios')).default;
const response = await axios.get(`${base_url}/api/tags`, {
timeout: 10000,
});
const models = response.data?.models || [];
const modelNames = models.map((m: { name: string }) => m.name);
res.json({
success: true,
message: 'Successfully connected to Ollama',
models: modelNames,
});
} catch (error) {
console.error('Error testing Ollama connection:', error);
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
if (errorMessage.includes('ECONNREFUSED')) {
res.status(400).json({
error: 'Cannot connect to Ollama. Make sure Ollama is running.',
success: false,
});
} else {
res.status(500).json({
error: `Failed to connect to Ollama: ${errorMessage}`,
success: false,
});
}
}
});
// Test Gemini API key
router.post('/ai/test-gemini', async (req: AuthRequest, res: Response) => {
try {
const { api_key } = req.body;
if (!api_key) {
res.status(400).json({ error: 'API key is required' });
return;
}
// Test the API key by listing models
const { GoogleGenerativeAI } = await import('@google/generative-ai');
const genAI = new GoogleGenerativeAI(api_key);
// Try to generate a simple response to verify the key works
const model = genAI.getGenerativeModel({ model: 'gemini-2.5-flash-lite' });
await model.generateContent('Say "API key valid" in 3 words or less');
res.json({
success: true,
message: 'Successfully connected to Gemini API',
});
} catch (error) {
console.error('Error testing Gemini connection:', error);
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
if (errorMessage.includes('API_KEY_INVALID') || errorMessage.includes('API key')) {
res.status(400).json({
error: 'Invalid API key. Please check your Gemini API key.',
success: false,
});
} else {
res.status(500).json({
error: `Failed to connect to Gemini: ${errorMessage}`,
success: false,
});
}
}
});
export default router;