<?xml version="1.0" encoding="UTF-8"?>
<?php
// Dynamic sitemap generation
require_once 'functions.php';
header('Content-Type: application/xml; charset=utf-8');

// Get site URL
$protocol = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? 'https' : 'http';
$baseUrl = $protocol . '://' . $_SERVER['HTTP_HOST'];

// Get all apps
$apps = getAllApps();
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <!-- Homepage -->
    <url>
        <loc><?php echo $baseUrl; ?>/index.php</loc>
        <changefreq>daily</changefreq>
        <priority>1.0</priority>
    </url>

    <?php foreach ($apps as $app): ?>
    <!-- App Detail Pages -->
    <url>
        <loc><?php echo $baseUrl; ?>/app-detail.php?url=<?php echo urlencode($app['appUrl']); ?></loc>
        <changefreq>weekly</changefreq>
        <priority>0.8</priority>
    </url>
    <?php endforeach; ?>
</urlset>
