<?php
/**
 * 蘑菇影视 - 动态Sitemap
 * 域名动态获取，禁止硬编码
 */
header('Content-Type: application/xml; charset=UTF-8');

$scheme = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
$host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : 'localhost';
$baseUrl = $scheme . '://' . $host;
$today = date('Y-m-d');

$urls = [
  ['loc' => '/', 'priority' => '1.0', 'changefreq' => 'daily'],
  ['loc' => '/industrial/', 'priority' => '0.9', 'changefreq' => 'daily'],
  ['loc' => '/loft/', 'priority' => '0.9', 'changefreq' => 'daily'],
  ['loc' => '/creative/', 'priority' => '0.9', 'changefreq' => 'daily'],
  ['loc' => '/ai-workshop/', 'priority' => '0.8', 'changefreq' => 'weekly'],
  ['loc' => '/creator/', 'priority' => '0.8', 'changefreq' => 'weekly'],
  ['loc' => '/contact/', 'priority' => '0.7', 'changefreq' => 'monthly'],
  ['loc' => '/photo-diary/', 'priority' => '0.8', 'changefreq' => 'daily'],
  ['loc' => '/loft-guide/', 'priority' => '0.8', 'changefreq' => 'daily'],
  ['loc' => '/darkroom/', 'priority' => '0.7', 'changefreq' => 'weekly'],
  ['loc' => '/metal-art/', 'priority' => '0.8', 'changefreq' => 'weekly'],
  ['loc' => '/warehouse-stories/', 'priority' => '0.7', 'changefreq' => 'weekly'],
];

echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"' . "\n";
echo '        xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">' . "\n";

foreach ($urls as $url) {
    echo "  <url>\n";
    echo "    <loc>" . htmlspecialchars($baseUrl . $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>';
?>
