<?php
// Автоматическая генерация sitemap.xml
// Доступ: https://lobanova-rg.ru/sitemap.xml

// Подключаем каталог
require_once 'index.php';

header('Content-Type: application/xml; charset=utf-8');

$base_url = 'https://' . $_SERVER['HTTP_HOST'];
$pages = array(
    '' => array('changefreq' => 'daily', 'priority' => '1.0'),
    '?page=custom' => array('changefreq' => 'weekly', 'priority' => '0.5'),
    '?page=about' => array('changefreq' => 'monthly', 'priority' => '0.5'),
    '?page=workshop' => array('changefreq' => 'monthly', 'priority' => '0.6'),
    '?page=contacts' => array('changefreq' => 'monthly', 'priority' => '0.4'),
    '?page=blog' => array('changefreq' => 'weekly', 'priority' => '0.5'),
);

// Добавляем товары
foreach ($catalog as $item) {
    if ($item['status'] === 'В продаже' || $item['status'] === 'Скоро в продаже') {
        $pages['?page=product&article=' . $item['article']] = array(
            'changefreq' => 'weekly',
            'priority' => '0.8'
        );
    }
}

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach ($pages as $url => $meta): ?>
    <url>
        <loc><?php echo $base_url . '/' . $url; ?></loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq><?php echo $meta['changefreq']; ?></changefreq>
        <priority><?php echo $meta['priority']; ?></priority>
    </url>
<?php endforeach; ?>
</urlset>