<?php
require_once 'includes/config.php';
require_once 'includes/auth.php';
require_once 'includes/stories.php';

$config = Config::load();
$stories = Stories::getAll();

// Trier les romans par date de mise à jour (du plus récent au plus ancien)
usort($stories, function($a, $b) {
    return strtotime($b['updated']) - strtotime($a['updated']);
});

// Fonction pour vérifier si un roman est une nouvelle parution
function isNewRelease($story) {
    $updateTime = strtotime($story['publicUpdated'] ?? $story['updated']);
    $weekAgo = strtotime('-1 week');
    return $updateTime > $weekAgo;
}

// Fonction pour formater la date en français
function formatDate($date) {
    $timestamp = strtotime($date);
    $months = [
        'janvier', 'février', 'mars', 'avril', 'mai', 'juin',
        'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'
    ];
    
    return sprintf(
        "%d %s %d",
        date('j', $timestamp),
        $months[date('n', $timestamp) - 1],
        date('Y', $timestamp)
    );
}
?>
<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title><?= htmlspecialchars($config['site']['name']) ?></title>
    
    <?php if (file_exists(__DIR__ . '/assets/images/site/favicon.png')): ?>
        <link rel="icon" type="image/png" href="assets/images/site/favicon.png">
    <?php endif; ?>
    
    <link rel="stylesheet" href="assets/css/public.css">
    
    <meta name="description" content="<?= htmlspecialchars($config['site']['description']) ?>">
</head>
<body>
    <div class="header-container">
        <header class="site-header">
            <?php if (!empty($config['site']['logo'])): ?>
                <img src="<?= htmlspecialchars($config['site']['logo']) ?>" 
                    alt="<?= htmlspecialchars($config['site']['name']) ?>"
                    class="site-logo">
            <?php endif; ?>
            
            <div class="site-header-content">
                <h1><?= htmlspecialchars($config['site']['name']) ?></h1>
                <p><?= nl2br(htmlspecialchars($config['site']['description'])) ?></p>
            </div>

            <div class="header-actions">
                <a href="about.php" class="about-button">
                    <i class="fas fa-info-circle"></i> À propos
                </a>
            </div>
        </header>
    </div>

    <main class="main-content">
        <div class="novels-grid">
            <?php foreach ($stories as $story): ?>
                <?php
                // Compter les chapitres visibles pour cet utilisateur
                $visibleChapters = array_filter($story['chapters'] ?? [], function($chapter) use ($story) {
                    // Un chapitre est visible si: 
                    // - Il n'est pas en mode brouillon, OU
                    // - L'utilisateur est connecté et a accès au roman
                    return !($chapter['draft'] ?? false) || (Auth::check() && Auth::canAccessStory($story['id']));
                });
                
                $chapterCount = count($visibleChapters);
                
                // Ne pas afficher le roman s'il n'a aucun chapitre visible et que l'utilisateur n'a pas accès
                if ($chapterCount === 0 && !Auth::check()) {
                    continue;
                }
                ?>
                <a href="roman.php?id=<?= htmlspecialchars($story['id']) ?>" class="novel-card <?= isNewRelease($story) ? 'new-release' : '' ?>">
                    <img src="<?= htmlspecialchars($story['cover']) ?>" 
                        alt="Couverture de <?= htmlspecialchars($story['title']) ?>"
                        class="novel-cover"
                        loading="lazy">
                        
                        <div class="novel-info">
                            <h2><?= htmlspecialchars($story['title']) ?></h2>
                            <p>
                                <?= $chapterCount ?> 
                                chapitre<?= $chapterCount > 1 ? 's' : '' ?>
                                <?php if (Auth::check() && Auth::canAccessStory($story['id'])): ?>
                                    <?php
                                    $draftCount = count(array_filter($story['chapters'] ?? [], function($ch) {
                                        return $ch['draft'] ?? false;
                                    }));
                                    if ($draftCount > 0):
                                    ?>
                                    <span class="draft-count">(dont <?= $draftCount ?> brouillon<?= $draftCount > 1 ? 's' : '' ?>)</span>
                                    <?php endif; ?>
                                <?php endif; ?>
                            </p>
                            <div class="novel-date">
                                Mis à jour le <?= formatDate($story['updated']) ?>
                            </div>
                        </div>
                </a>
            <?php endforeach; ?>
        </div>
    </main>

    <button class="scroll-top" aria-label="Retour en haut de page">↑</button>

    <style>
    .draft-count {
        color: var(--accent-primary);
        font-size: 0.9em;
    }
    </style>

    <script>
    document.addEventListener('DOMContentLoaded', function() {
        const scrollTopBtn = document.querySelector('.scroll-top');
        
        // Afficher/masquer le bouton
        window.addEventListener('scroll', function() {
            if (window.pageYOffset > 300) {
                scrollTopBtn.classList.add('visible');
            } else {
                scrollTopBtn.classList.remove('visible');
            }
        });
        
        // Action de retour en haut
        scrollTopBtn.addEventListener('click', function() {
            window.scrollTo({
                top: 0,
                behavior: 'smooth'
            });
        });
    });
    </script>
</body>
</html>