<?php
header('Content-Type: application/xml; charset=utf-8');
date_default_timezone_set('Asia/Bangkok');
$host = $_SERVER['HTTP_HOST'] ?? '';
$scheme = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
$origin = $host ? $scheme . '://' . $host : '';
$today = date('Y-m-d');
$namespace = 'http://' . 'www.sitemaps' . '.org/schemas/sitemap/0.9';
$urls = ['/', '/about/', '/videos/', '/stories/', '/team/', '/media/', '/download/', '/contact/', '/faq/', '/privacy/'];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="<?php echo htmlspecialchars($namespace, ENT_QUOTES, 'UTF-8'); ?>">
<?php foreach ($urls as $url): ?>
  <url>
    <loc><?php echo htmlspecialchars($origin . $url, ENT_QUOTES, 'UTF-8'); ?></loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>daily</changefreq>
    <priority><?php echo $url === '/' ? '1.0' : '0.8'; ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
