<?php
header('Content-Type: application/xml; charset=utf-8');

require_once __DIR__ . '/includes/functions.php';

$businesses = getBusinesses();
$active = array_filter($businesses, fn($b) => ($b['status'] ?? 'active') === 'active');

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <url>
        <loc>https://bizopsnet.online/</loc>
        <changefreq>daily</changefreq>
        <priority>1.0</priority>
    </url>
    <url>
        <loc>https://bizopsnet.online/search.php</loc>
        <changefreq>daily</changefreq>
        <priority>0.8</priority>
    </url>
    <?php foreach ($active as $biz): ?>
    <url>
        <loc>https://bizopsnet.online/business.php?id=<?= urlencode($biz['id']) ?></loc>
        <lastmod><?= date('Y-m-d', strtotime($biz['updated_at'] ?? $biz['created_at'] ?? 'now')) ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.6</priority>
    </url>
    <?php endforeach; ?>
</urlset>
