<?php
header('Content-type: application/xml; charset=utf-8');
$baseUrl = "https://vogue-et-flots.fr";
$boats = json_decode(file_get_contents('data/boats.json'), true);
$mouillages = json_decode(file_get_contents('data/mouillages.json'), true);
$itineraries = json_decode(file_get_contents('data/itineraries.json'), true);
$today = date('Y-m-d');

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <url>
        <loc><?php echo $baseUrl; ?>/</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>daily</changefreq>
        <priority>1.0</priority>
    </url>
    <url>
        <loc><?php echo $baseUrl; ?>/blog</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?php echo $baseUrl; ?>/faq</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?php echo $baseUrl; ?>/loueurs-professionnels</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?php echo $baseUrl; ?>/contact</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.5</priority>
    </url>
    <url>
        <loc><?php echo $baseUrl; ?>/a-propos</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.7</priority>
    </url>
    <url>
        <loc><?php echo $baseUrl; ?>/mentions-legales</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.3</priority>
    </url>
    <url>
        <loc><?php echo $baseUrl; ?>/cgu</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.3</priority>
    </url>
    <url>
        <loc><?php echo $baseUrl; ?>/confidentialite</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.3</priority>
    </url>
    <?php foreach ($boats as $boat): ?>
    <url>
        <loc><?php echo $baseUrl; ?>/bateau/<?php echo $boat['slug']; ?></loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.8</priority>
    </url>
    <?php endforeach; ?>
    <?php
    $popular_cities = ['marseille', 'nice', 'ajaccio', 'cannes', 'la-rochelle', 'hyeres', 'saint-malo', 'arcachon', 'toulon', 'brest', 'biarritz'];
    foreach ($popular_cities as $slug): ?>
    <url>
        <loc><?php echo $baseUrl; ?>/location-bateau/<?php echo $slug; ?></loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.9</priority>
    </url>
    <url>
        <loc><?php echo $baseUrl; ?>/blog/guide-location-bateau-<?php echo $slug; ?></loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.7</priority>
    </url>
    <?php endforeach; ?>
    <?php
    if (is_array($mouillages)) {
        foreach ($mouillages as $spot): ?>
    <url>
        <loc><?php echo $baseUrl; ?>/mouillage/<?php echo $spot['slug']; ?></loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.9</priority>
    </url>
    <?php
        endforeach;
    } ?>
    <?php
    if (is_array($itineraries)) {
        foreach ($itineraries as $itinerary): ?>
    <url>
        <loc><?php echo $baseUrl; ?>/itineraire-croisiere/<?php echo $itinerary['slug']; ?></loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.9</priority>
    </url>
    <?php
        endforeach;
    } ?>
</urlset>
