<?xml version="1.0" encoding="UTF-8"?>
<?php
/**
 * 蘑菇视频 · 动态Sitemap
 * 域名动态读取，不写死
 */
header('Content-Type: application/xml; charset=UTF-8');
$host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : 'localhost';
$scheme = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
$base = $scheme . '://' . $host;
$today = date('Y-m-d');

$urls = [
  ['loc' => '/',                    'priority' => '1.0', 'changefreq' => 'daily'],
  ['loc' => '/film/',               'priority' => '0.9', 'changefreq' => 'daily'],
  ['loc' => '/story/',              'priority' => '0.9', 'changefreq' => 'daily'],
  ['loc' => '/image-poetry/',       'priority' => '0.8', 'changefreq' => 'weekly'],
  ['loc' => '/ai-filter/',          'priority' => '0.9', 'changefreq' => 'weekly'],
  ['loc' => '/classic-film/',       'priority' => '0.8', 'changefreq' => 'weekly'],
  ['loc' => '/photo-diary/',        'priority' => '0.8', 'changefreq' => 'weekly'],
  ['loc' => '/vintage-workshop/',   'priority' => '0.8', 'changefreq' => 'weekly'],
  ['loc' => '/dark-room/',          'priority' => '0.8', 'changefreq' => 'weekly'],
  ['loc' => '/photographer/',       'priority' => '0.7', 'changefreq' => 'monthly'],
  ['loc' => '/contact/',            'priority' => '0.7', 'changefreq' => 'monthly'],
  ['loc' => '/about/',              'priority' => '0.6', 'changefreq' => 'monthly'],
];
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
        http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<?php foreach($urls as $u): ?>
  <url>
    <loc><?php echo htmlspecialchars($base . $u['loc']); ?></loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq><?php echo $u['changefreq']; ?></changefreq>
    <priority><?php echo $u['priority']; ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
