wulf-pulse/app/api/zabbix/public-ip/route.ts
lorentz c518eefdb2 feat: Morning NOC Summary adaptive card for Teams
- Add MorningSummaryService with Zabbix aggregation and adaptive card builder
- Add webhook delivery system with Teams incoming webhooks
- Add admin UI at /admin/morning-summary for webhook/config management
- Add API routes: /send, /test, /webhooks, /webhooks/[id], /config, /history
- Register morning-summary cron job in SyncScheduler (Mon-Fri 6:30 AM)
- Add outages_only filter (Unavailable triggers only)
- Fix host resolution: use getTriggerEnabledHosts to exclude disabled hosts
- Fix resolved events: event.get value:1 scoped to window with r_eventid filter
- Remove emojis from fact rows and section headers in card
- Remove Open Zabbix button (duplicate of View Problems)
- Add migrations: morning_summary_config + morning_summaries tables
- Add outages_only column to morning_summary_config
2026-03-11 09:34:51 -04:00

21 lines
559 B
TypeScript

/**
* GET /api/zabbix/public-ip
* Returns the server's current public IP address.
*/
import { NextResponse } from 'next/server';
export async function GET() {
try {
const res = await fetch('https://ipinfo.io/json', {
headers: { Accept: 'application/json' },
cache: 'no-store',
signal: AbortSignal.timeout(5000),
});
if (!res.ok) throw new Error(`ipinfo ${res.status}`);
const data = await res.json();
return NextResponse.json({ ip: data.ip ?? null });
} catch {
return NextResponse.json({ ip: null });
}
}