<?php
header('Content-Type: application/xml');
echo '<?xml version="1.0" encoding="UTF-8"?>';
echo '<?xml-stylesheet type="text/xsl" href="sitemap.xsl"?>'; // İsteğe bağlı: okunabilir XSL stil sayfası
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <?php
    define('SECURE_ACCESS', true);
    require_once 'includes/db_connection.php';
    require_once 'includes/functions.php'; // url() fonksiyonu için
    require_once 'includes/blog_functions.php'; // get_blog_posts() fonksiyonu için
    
    // Tüm yayınlanmış blog yazılarını çek
    $posts = get_blog_posts(['status' => 'published'], 99999, 0, 'updated_at', 'DESC');
    
    foreach ($posts as $post) {
        $post_url = url('blog-post.php?slug=' . htmlspecialchars($post['slug']));
        $lastmod = date('Y-m-d', strtotime($post['updated_at']));
        ?>
        <url>
            <loc><?php echo $post_url; ?></loc>
            <lastmod><?php echo $lastmod; ?></lastmod>
            <changefreq>weekly</changefreq>
            <priority>0.8</priority>
        </url>
        <?php
    }
    ?>
    <!-- Ana blog sayfası -->
    <url>
        <loc><?php echo url('blog.php'); ?></loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>daily</changefreq>
        <priority>0.9</priority>
    </url>
    
    <!-- Ana site sayfaları -->
    <url>
        <loc><?php echo url('index.php'); ?></loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>1.0</priority>
    </url>
    <url>
        <loc><?php echo url('services.php'); ?></loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.9</priority>
    </url>
    <url>
        <loc><?php echo url('process.php'); ?></loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.9</priority>
    </url>
    <url>
        <loc><?php echo url('faq.php'); ?></loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?php echo url('pricing.php'); ?></loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?php echo url('about.php'); ?></loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.7</priority>
    </url>
    <url>
        <loc><?php echo url('contact.php'); ?></loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.7</priority>
    </url>
</urlset>