<?php
// sitemap.php
require_once 'config.php';
require_once 'functions.php';

header('Content-Type: application/xml');

$stmt = $pdo->query("SELECT id, updated_at FROM seeds WHERE status = 'published' ORDER BY id DESC");
$seeds = $stmt->fetchAll();

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <url>
        <loc>https://x5k.ru/</loc>
        <lastmod><?= date('Y-m-d') ?></lastmod>
        <changefreq>daily</changefreq>
        <priority>1.0</priority>
    </url>
    <?php foreach($seeds as $seed): ?>
    <url>
        <loc>https://x5k.ru/seed.php?id=<?= $seed['id'] ?></loc>
        <lastmod><?= date('Y-m-d', strtotime($seed['updated_at'])) ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <?php endforeach; ?>
</urlset>