feat(hail-recon): Hail Recon integration — storm intel panel, hail history, auto storm mode, address monitoring

This commit is contained in:
Satyam-Rastogi
2026-05-18 15:50:59 +05:30
parent 912967fa3a
commit 9e2173fd43
13 changed files with 893 additions and 3 deletions
+71
View File
@@ -0,0 +1,71 @@
/**
* Proxies Hail Recon API calls from the browser.
* Solves CORS and keeps credentials server-side.
*
* Usage: GET /api/hail-proxy?endpoint=ImpactDatesForLatLong&Lat=33.055&Long=-96.752&Months=12
* POST /api/hail-proxy?endpoint=AddressMonitoringImport2g (body = JSON payload)
*/
const BASE_URL = 'https://maps.interactivehailmaps.com/ExternalApi';
const ALLOWED_ENDPOINTS = new Set([
'ImpactDatesForLatLong',
'ImpactDatesForAddressMarker',
'AddressMonitoringImport2g',
]);
export default async function handler(req, res) {
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS');
res.setHeader('Access-Control-Allow-Headers', 'Content-Type');
if (req.method === 'OPTIONS') {
return res.status(200).end();
}
const { endpoint, ...params } = req.query;
if (!endpoint || !ALLOWED_ENDPOINTS.has(endpoint)) {
return res.status(400).json({ error: 'Invalid or missing endpoint' });
}
const accessKey = process.env.HAIL_RECON_ACCESS_KEY;
const accessSecret = process.env.HAIL_RECON_ACCESS_SECRET;
if (!accessKey || !accessSecret) {
return res.status(500).json({ error: 'Hail Recon credentials not configured' });
}
const credentials = Buffer.from(`${accessKey}:${accessSecret}`).toString('base64');
const authHeader = `Basic ${credentials}`;
try {
let response;
if (req.method === 'POST') {
response = await fetch(`${BASE_URL}/${endpoint}`, {
method: 'POST',
headers: {
'Authorization': authHeader,
'Content-Type': 'application/json',
},
body: JSON.stringify(req.body),
});
} else {
const qs = new URLSearchParams(params).toString();
const url = `${BASE_URL}/${endpoint}${qs ? `?${qs}` : ''}`;
response = await fetch(url, {
headers: { 'Authorization': authHeader },
});
}
const contentType = response.headers.get('content-type') || '';
const data = contentType.includes('application/json')
? await response.json()
: await response.text();
return res.status(response.status).json(data);
} catch (err) {
return res.status(502).json({ error: 'Failed to reach Hail Recon API', detail: err.message });
}
}
+40
View File
@@ -0,0 +1,40 @@
/**
* Returns current storm status — polled by the frontend every 60 seconds.
* Storm is considered "active" if an event was received within the last 24 hours.
*
* Response: { stormActive: boolean, event: StormEvent | null, checkedAt: number }
*/
import { kv } from '@vercel/kv';
const STORM_ACTIVE_WINDOW_MS = 24 * 60 * 60 * 1000; // 24 hours
export default async function handler(req, res) {
res.setHeader('Cache-Control', 'no-store');
if (req.method !== 'GET') {
return res.status(405).json({ error: 'Method not allowed' });
}
try {
const event = await kv.get('lastStormEvent');
const stormActive = !!event &&
typeof event.receivedAt === 'number' &&
(Date.now() - event.receivedAt) < STORM_ACTIVE_WINDOW_MS;
return res.status(200).json({
stormActive,
event: stormActive ? event : null,
checkedAt: Date.now(),
});
} catch (err) {
// KV not configured (local dev without env vars) — return inactive
console.warn('[hail-status] KV unavailable:', err.message);
return res.status(200).json({
stormActive: false,
event: null,
checkedAt: Date.now(),
});
}
}
+39
View File
@@ -0,0 +1,39 @@
/**
* Receives POST from Hail Recon when a monitored address is hailed.
* Stores the storm event in Vercel KV so /api/hail-status can serve it.
*
* Configure in Hail Recon dashboard:
* Webhook URL: https://yourapp.vercel.app/api/hail-webhook?secret=YOUR_WEBHOOK_SECRET
*/
import { kv } from '@vercel/kv';
export default async function handler(req, res) {
if (req.method !== 'POST') {
return res.status(405).json({ error: 'Method not allowed' });
}
const secret = process.env.HAIL_RECON_WEBHOOK_SECRET;
if (secret && req.query.secret !== secret) {
return res.status(401).json({ error: 'Unauthorized' });
}
const payload = req.body || {};
const stormEvent = {
address: payload.address || payload.street || 'Unknown address',
city: payload.city || '',
state: payload.state || 'TX',
zip: payload.zip || '',
hailSize: payload.hailSize || payload.hail_size || payload.size || null,
stormDate: payload.stormDate || payload.storm_date || payload.date || new Date().toISOString(),
markerId: payload.markerId || payload.AddressMarker_id || null,
receivedAt: Date.now(),
};
await kv.set('lastStormEvent', stormEvent);
console.log('[hail-webhook] Storm event stored:', stormEvent);
return res.status(200).json({ ok: true, received: stormEvent });
}