140 lines
5.4 KiB
PHP
140 lines
5.4 KiB
PHP
<?php
|
|
require_once 'includes/config.php';
|
|
require_once 'includes/auth.php';
|
|
require_once 'includes/stories.php';
|
|
|
|
// Récupération de l'ID du roman depuis l'URL
|
|
$storyId = $_GET['id'] ?? '';
|
|
if (!$storyId) {
|
|
header('Location: index.php');
|
|
exit;
|
|
}
|
|
|
|
// Chargement du roman
|
|
$story = Stories::get($storyId);
|
|
if (!$story) {
|
|
header('Location: index.php');
|
|
exit;
|
|
}
|
|
|
|
$config = Config::load();
|
|
|
|
// Vérification des droits d'accès pour voir les chapitres en brouillon
|
|
$canViewDrafts = Auth::check() && Auth::canAccessStory($storyId);
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?= htmlspecialchars($story['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">
|
|
<link rel="stylesheet" href="assets/css/content.css">
|
|
|
|
<meta name="description" content="<?= htmlspecialchars(strip_tags($story['description'])) ?>">
|
|
</head>
|
|
<body>
|
|
<!-- En-tête avec image de fond -->
|
|
<header class="novel-header">
|
|
<?php if (!empty($story['cover'])): ?>
|
|
<div class="novel-header-background" style="background-image: url('<?= htmlspecialchars($story['cover']) ?>');"></div>
|
|
<?php endif; ?>
|
|
<div class="header-actions">
|
|
<a href="index.php" class="about-button">
|
|
<i class="fas fa-home"></i> Accueil
|
|
</a>
|
|
</div>
|
|
<h1><?= htmlspecialchars($story['title']) ?></h1>
|
|
</header>
|
|
|
|
<!-- Contenu principal -->
|
|
<div class="novel-content">
|
|
<div class="novel-description">
|
|
<?= $story['description'] = Config::fixImagePaths($story['description']); ?>
|
|
</div>
|
|
|
|
<aside class="chapters-menu">
|
|
<h2>Chapitres</h2>
|
|
<?php if (!empty($story['chapters'])): ?>
|
|
<ul class="chapters-list">
|
|
<?php
|
|
// Vérifier que chapters est un tableau avant de le filtrer
|
|
$chapters = $story['chapters'] ?? [];
|
|
|
|
// Filtrer les chapitres pour n'afficher que les chapitres publiés
|
|
// ou les brouillons si l'utilisateur a les droits
|
|
$visibleChapters = [];
|
|
foreach ($chapters as $chapter) {
|
|
if (!($chapter['draft'] ?? false) || $canViewDrafts) {
|
|
$visibleChapters[] = $chapter;
|
|
}
|
|
}
|
|
|
|
if (empty($visibleChapters)): ?>
|
|
<p>Aucun chapitre publié disponible pour le moment.</p>
|
|
<?php else:
|
|
foreach ($visibleChapters as $chapter):
|
|
$isDraft = $chapter['draft'] ?? false;
|
|
$isNew = false;
|
|
|
|
// Vérifier si le chapitre est nouveau (publié il y a moins d'une semaine)
|
|
// Utiliser 'created' puisque c'est ce champ qui est présent dans vos données
|
|
if (isset($chapter['created'])) {
|
|
$publishedTime = strtotime($chapter['created']);
|
|
$weekAgo = strtotime('-1 week');
|
|
$isNew = $publishedTime > $weekAgo && !$isDraft;
|
|
}
|
|
?>
|
|
<li>
|
|
<a href="chapitre.php?story=<?= urlencode($story['id']) ?>&chapter=<?= urlencode($chapter['id']) ?>"
|
|
class="<?= $isDraft ? 'draft-chapter' : ($isNew ? 'new-chapter' : '') ?>">
|
|
<span class="chapter-title"><?= htmlspecialchars($chapter['title']) ?></span>
|
|
<?php if ($isDraft && $canViewDrafts): ?>
|
|
<span class="draft-label">(Brouillon)</span>
|
|
<?php elseif ($isNew): ?>
|
|
<span class="new-label">(Nouveau)</span>
|
|
<?php endif; ?>
|
|
</a>
|
|
</li>
|
|
<?php
|
|
endforeach;
|
|
endif;
|
|
?>
|
|
</ul>
|
|
<?php else: ?>
|
|
<p>Aucun chapitre disponible pour le moment.</p>
|
|
<?php endif; ?>
|
|
</aside>
|
|
</div>
|
|
|
|
<button class="scroll-top" aria-label="Retour en haut de page">
|
|
<i class="fas fa-arrow-up"></i>
|
|
</button>
|
|
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
const scrollTopBtn = document.querySelector('.scroll-top');
|
|
|
|
window.addEventListener('scroll', function() {
|
|
if (window.pageYOffset > 300) {
|
|
scrollTopBtn.classList.add('visible');
|
|
} else {
|
|
scrollTopBtn.classList.remove('visible');
|
|
}
|
|
});
|
|
|
|
scrollTopBtn.addEventListener('click', function() {
|
|
window.scrollTo({
|
|
top: 0,
|
|
behavior: 'smooth'
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|