File size: 1,449 Bytes
3464008
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import { getCorsHeaders, isDisallowedOrigin } from '../_cors.js';
import { jsonResponse } from '../_json-response.js';
import { readJsonFromUpstash } from '../_upstash-json.js';

export const config = { runtime: 'edge' };

const REDIS_KEY = 'supply_chain:hormuz_tracker:v1';

let cached = null;
let cachedAt = 0;
const CACHE_TTL = 1_800_000; // 30 min

let negUntil = 0;
const NEG_TTL = 60_000;

async function fetchData() {
  const now = Date.now();
  if (cached && now - cachedAt < CACHE_TTL) return cached;
  if (now < negUntil) return null;
  let data;
  try { data = await readJsonFromUpstash(REDIS_KEY); } catch { data = null; }
  if (!data) {
    negUntil = now + NEG_TTL;
    return null;
  }
  cached = data;
  cachedAt = now;
  return data;
}

export default async function handler(req) {
  const corsHeaders = getCorsHeaders(req, 'GET, OPTIONS');
  if (req.method === 'OPTIONS') {
    return new Response(null, { status: 204, headers: corsHeaders });
  }
  if (isDisallowedOrigin(req)) {
    return jsonResponse({ error: 'Origin not allowed' }, 403, corsHeaders);
  }
  const data = await fetchData();
  if (!data) {
    return jsonResponse({ error: 'Hormuz tracker data temporarily unavailable' }, 503, {
      'Cache-Control': 'no-cache, no-store', ...corsHeaders,
    });
  }
  return jsonResponse(data, 200, {
    'Cache-Control': 'public, s-maxage=1800, stale-while-revalidate=3600, stale-if-error=7200',
    ...corsHeaders,
  });
}