<?php
// sitemap.php - مولد خريطة الموقع

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

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

$apps = $pdo->query("SELECT slug, updated_at, type FROM apps ORDER BY updated_at DESC")->fetchAll();

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <url>
        <loc><?php echo $site_config['url']; ?>/</loc>
        <changefreq>daily</changefreq>
        <priority>1.0</priority>
    </url>
    <url>
        <loc><?php echo $site_config['url']; ?>/games</loc>
        <changefreq>daily</changefreq>
        <priority>0.9</priority>
    </url>
    <url>
        <loc><?php echo $site_config['url']; ?>/apps</loc>
        <changefreq>daily</changefreq>
        <priority>0.9</priority>
    </url>
    <?php foreach ($apps as $app): ?>
    <url>
        <loc><?php echo $site_config['url']; ?>/app/<?php echo $app['slug']; ?></loc>
        <lastmod><?php echo date('Y-m-d', strtotime($app['updated_at'])); ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority><?php echo $app['type'] === 'game' ? '0.8' : '0.7'; ?></priority>
    </url>
    <?php endforeach; ?>
</urlset>
