<?php
// Generate sitemap for footer links
$footerLinksFile = dirname(__FILE__) . '/data/footer-links.json';
$footerLinks = [];
if (file_exists($footerLinksFile)) {
    $footerLinks = json_decode(file_get_contents($footerLinksFile), true) ?: [];
}

header('Content-Type: application/xml');
echo '<?xml version="1.0" encoding="UTF-8"?>';
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';
echo '<url><loc>https://' . $_SERVER['HTTP_HOST'] . '/</loc><changefreq>daily</changefreq><priority>1.0</priority></url>';

foreach ($footerLinks as $link) {
    if (!empty($link['url'])) {
        echo '<url>';
        echo '<loc>' . htmlspecialchars($link['url']) . '</loc>';
        echo '<changefreq>weekly</changefreq>';
        echo '<priority>0.8</priority>';
        echo '</url>';
    }
}

echo '</urlset>';
?>
