<?php
header('Content-Type: application/xml; charset=UTF-8');
$protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
$host = $_SERVER['HTTP_HOST'] ?? 'localhost';
$base = $protocol . '://' . $host;
$today = date('Y-m-d');
$urls = [
  ['loc' => '/', 'priority' => '1.0', 'changefreq' => 'daily'],
  ['loc' => '/videos/', 'priority' => '0.9', 'changefreq' => 'daily'],
  ['loc' => '/community/', 'priority' => '0.9', 'changefreq' => 'daily'],
  ['loc' => '/ai-lab/', 'priority' => '0.8', 'changefreq' => 'weekly'],
  ['loc' => '/entertainment/', 'priority' => '0.8', 'changefreq' => 'daily'],
  ['loc' => '/creator/', 'priority' => '0.8', 'changefreq' => 'weekly'],
  ['loc' => '/contact/', 'priority' => '0.7', 'changefreq' => 'monthly'],
  ['loc' => '/about/', 'priority' => '0.7', 'changefreq' => 'monthly'],
  ['loc' => '/selected-videos/', 'priority' => '0.9', 'changefreq' => 'daily'],
  ['loc' => '/sweet-community/', 'priority' => '0.8', 'changefreq' => 'daily'],
  ['loc' => '/creation-center/', 'priority' => '0.8', 'changefreq' => 'weekly'],
  ['loc' => '/ai-toolbox/', 'priority' => '0.8', 'changefreq' => 'weekly'],
  ['loc' => '/emotion-space/', 'priority' => '0.8', 'changefreq' => 'daily'],
];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' . "\n";
foreach ($urls as $url) {
  echo "  <url>\n";
  echo "    <loc>" . htmlspecialchars($base . $url['loc']) . "</loc>\n";
  echo "    <lastmod>" . $today . "</lastmod>\n";
  echo "    <changefreq>" . $url['changefreq'] . "</changefreq>\n";
  echo "    <priority>" . $url['priority'] . "</priority>\n";
  echo "  </url>\n";
}
echo '</urlset>';
?>
