<?php
/**
 * Dynamic Sitemap Generator
 * Tự động tạo sitemap từ database
 */

header('Content-Type: application/xml; charset=utf-8');

require_once __DIR__ . '/data/database.php';

$base_url = 'https://kbbetvn.net';
$today = date('Y-m-d');

// Lấy tất cả bài viết từ database
try {
    $post = new Post();
    $posts = $post->getAll('published');
} catch (Exception $e) {
    $posts = [];
}

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <!-- Trang chủ -->
    <url>
        <loc><?php echo $base_url; ?>/</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>daily</changefreq>
        <priority>1.0</priority>
    </url>
    
    <!-- Giới thiệu -->
    <url>
        <loc><?php echo $base_url; ?>/gioi-thieu-kbbet</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    
    <!-- Thông tin -->
    <url>
        <loc><?php echo $base_url; ?>/huong-dan-kbbet</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.8</priority>
    </url>
    
    <!-- Liên hệ -->
    <url>
        <loc><?php echo $base_url; ?>/lien-he-kbbet</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.6</priority>
    </url>
    
    <!-- Tin mới -->
    <url>
        <loc><?php echo $base_url; ?>/tin-tuc-kbbet</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>daily</changefreq>
        <priority>0.9</priority>
    </url>
    
    <!-- Tra cứu -->
    <url>
        <loc><?php echo $base_url; ?>/tim-kiem-kbbet</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.5</priority>
    </url>
    
    <!-- Chính sách bảo mật -->
    <url>
        <loc><?php echo $base_url; ?>/bao-mat</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.4</priority>
    </url>
    
    <!-- Điều khoản sử dụng -->
    <url>
        <loc><?php echo $base_url; ?>/dieu-khoan</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.4</priority>
    </url>
    
    <!-- Chơi có trách nhiệm -->
    <url>
        <loc><?php echo $base_url; ?>/choi-co-trach-nhiem</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.4</priority>
    </url>
    
    <!-- Miễn trừ trách nhiệm -->
    <url>
        <loc><?php echo $base_url; ?>/mien-tru</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.4</priority>
    </url>
    
    <!-- Bài viết từ Database -->
<?php foreach ($posts as $p): 
    $lastmod = date('Y-m-d', strtotime($p['updated_at'] ?? $p['created_at']));
?>
    <url>
        <loc><?php echo $base_url; ?>/doc/<?php echo htmlspecialchars($p['slug']); ?></loc>
        <lastmod><?php echo $lastmod; ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.7</priority>
    </url>
<?php endforeach; ?>
</urlset>

