mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-05-06 11:09:18 +02:00
The pagination nav was duplicated between public/index.php and public/search.php
with structural differences: index.php used string concatenation for query params
and had first/last-page buttons (« »); search.php used http_build_query but had
only prev/next (‹ ›) and a flat <span> rather than a <ul>/<li> structure.
- Add templates/partials/pagination.php: accepts $page, $totalPages, $baseParams[]
(any array of query params to preserve); builds URLs with http_build_query;
renders a semantic <nav>/<ul>/<li> block with first/prev/info/next/last buttons,
correct aria-disabled + tabindex on disabled links, and aria-label on each button.
Returns immediately (no output) when $totalPages <= 1.
- Replace inline pagination block in index.php with:
$baseParams = array_filter(['year' => $year]);
include pagination.php
- Replace inline pagination block in search.php with:
$baseParams = array_diff_key($_GET, ['page' => '']);
include pagination.php
This also upgrades search.php to the full first/last button set it was missing.
Both callers verified with php -l. No functional change to existing behaviour.
286 lines
12 KiB
PHP
286 lines
12 KiB
PHP
<?php
|
||
require_once __DIR__ . '/../config/bootstrap.php';
|
||
require_once APP_ROOT . '/src/Database.php';
|
||
require_once APP_ROOT . '/src/RateLimit.php';
|
||
|
||
// Rate limiting
|
||
$rateLimit = new RateLimit(30, 60);
|
||
if (!$rateLimit->check()) {
|
||
http_response_code(429);
|
||
header('Retry-After: ' . $rateLimit->getResetTime());
|
||
$retrySeconds = (int)$rateLimit->getResetTime();
|
||
echo <<<HTML
|
||
<!DOCTYPE html>
|
||
<html lang="fr">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<title>Trop de requêtes – Posterg</title>
|
||
<style>
|
||
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||
body {
|
||
background: #0d0d0d;
|
||
color: #e0e0e0;
|
||
font-family: 'Helvetica Neue', Arial, sans-serif;
|
||
min-height: 100vh;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: 2rem;
|
||
}
|
||
.box { max-width: 520px; text-align: center; }
|
||
.box__logo {
|
||
font-size: 1.1rem; font-weight: 700;
|
||
letter-spacing: .12em; text-transform: uppercase;
|
||
color: #fff; margin-bottom: 2.5rem;
|
||
}
|
||
.box__title { font-size: 1.6rem; font-weight: 300; margin-bottom: 1rem; }
|
||
.box__text { font-size: .95rem; color: #999; line-height: 1.7; }
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="box">
|
||
<div class="box__logo">POSTERG</div>
|
||
<h1 class="box__title">Trop de requêtes</h1>
|
||
<p class="box__text">Vous avez effectué trop de recherches en peu de temps.<br>
|
||
Réessayez dans {$retrySeconds} secondes.</p>
|
||
</div>
|
||
</body>
|
||
</html>
|
||
HTML;
|
||
exit;
|
||
}
|
||
$rateLimit->sendHeaders();
|
||
if (rand(1, 100) === 1) $rateLimit->cleanup();
|
||
|
||
// Collect search/filter params
|
||
$searchParams = [];
|
||
if (!empty($_GET['query'])) $searchParams['query'] = trim($_GET['query']);
|
||
if (!empty($_GET['year'])) $searchParams['year'] = intval($_GET['year']);
|
||
if (!empty($_GET['orientation'])) $searchParams['orientation'] = $_GET['orientation'];
|
||
if (!empty($_GET['ap_program'])) $searchParams['ap_program'] = $_GET['ap_program'];
|
||
if (!empty($_GET['keyword'])) $searchParams['keyword'] = $_GET['keyword'];
|
||
|
||
$hasSearch = !empty($searchParams);
|
||
|
||
$page = isset($_GET['page']) ? intval($_GET['page']) : 1;
|
||
$itemsPerPage = 30;
|
||
$validationError = null;
|
||
|
||
try {
|
||
$db = Database::getInstance();
|
||
$offset = ($page - 1) * $itemsPerPage;
|
||
|
||
if ($hasSearch) {
|
||
$results = $db->searchTheses($searchParams, $itemsPerPage, $offset);
|
||
$totalItems = $db->countSearchResults($searchParams);
|
||
$totalPages = ceil($totalItems / $itemsPerPage);
|
||
} else {
|
||
$results = [];
|
||
$totalItems = 0;
|
||
$totalPages = 0;
|
||
}
|
||
|
||
$years = $db->getAvailableYears();
|
||
$orientations = $db->getAllOrientations();
|
||
$apPrograms = $db->getAllAPPrograms();
|
||
$keywords = $db->getUsedTags();
|
||
// Fetch id+authors only — lean query bypassing the fat v_theses_public view
|
||
$students = $db->getPublishedAuthors();
|
||
} catch (InvalidArgumentException $e) {
|
||
$validationError = $e->getMessage();
|
||
$results = []; $totalItems = 0; $totalPages = 0;
|
||
$years = []; $orientations = []; $apPrograms = []; $keywords = []; $students = [];
|
||
} catch (Exception $e) {
|
||
error_log("Search error: " . $e->getMessage());
|
||
$validationError = "Une erreur est survenue.";
|
||
$results = []; $totalItems = 0; $totalPages = 0;
|
||
$years = []; $orientations = []; $apPrograms = []; $keywords = []; $students = [];
|
||
}
|
||
|
||
$currentNav = 'repertoire';
|
||
$searchBarValue = $_GET['query'] ?? '';
|
||
$pageTitle = 'Répertoire – Posterg';
|
||
$metaDescription = 'Parcourez le répertoire des mémoires de fin d\'études (TFE) de l\'erg – École de Recherches Graphiques de Bruxelles. Recherche par année, orientation, atelier et mots-clés.';
|
||
$ogTags = [
|
||
'type' => 'website',
|
||
'title' => $pageTitle,
|
||
'description' => $metaDescription,
|
||
'url' => 'https://posterg.erg.be/search.php',
|
||
'site_name' => 'Posterg – ERG',
|
||
];
|
||
$extraCss = ['/assets/css/search.css'];
|
||
$bodyClass = 'search-body';
|
||
?>
|
||
<?php include APP_ROOT . '/templates/head.php'; ?>
|
||
<?php include APP_ROOT . '/templates/header.php'; ?>
|
||
|
||
<?php if ($validationError): ?>
|
||
<div class="search-error">⚠ <?= htmlspecialchars($validationError) ?></div>
|
||
<?php endif; ?>
|
||
|
||
<?php if ($hasSearch): ?>
|
||
<!-- ── RESULTS VIEW ─────────────────────────────────── -->
|
||
|
||
<!-- Filter controls -->
|
||
<form class="search-controls" method="GET" action="search.php">
|
||
<input type="hidden" name="query" value="<?= htmlspecialchars($_GET['query'] ?? '') ?>">
|
||
|
||
<label class="search-filter-label" for="filter-year">Année
|
||
<select class="search-filter-select" name="year" id="filter-year">
|
||
<option value="">Toutes</option>
|
||
<?php foreach ($years as $y): ?>
|
||
<option value="<?= (int)$y ?>" <?= (isset($_GET['year']) && $_GET['year'] == $y) ? 'selected' : '' ?>>
|
||
<?= (int)$y ?>
|
||
</option>
|
||
<?php endforeach; ?>
|
||
</select>
|
||
</label>
|
||
|
||
<label class="search-filter-label" for="filter-orientation">Orientation
|
||
<select class="search-filter-select" name="orientation" id="filter-orientation">
|
||
<option value="">Toutes</option>
|
||
<?php foreach ($orientations as $o): ?>
|
||
<option value="<?= htmlspecialchars($o['name']) ?>"
|
||
<?= (isset($_GET['orientation']) && $_GET['orientation'] == $o['name']) ? 'selected' : '' ?>>
|
||
<?= htmlspecialchars($o['name']) ?>
|
||
</option>
|
||
<?php endforeach; ?>
|
||
</select>
|
||
</label>
|
||
|
||
<label class="search-filter-label" for="filter-ap">AP
|
||
<select class="search-filter-select" name="ap_program" id="filter-ap">
|
||
<option value="">Tous</option>
|
||
<?php foreach ($apPrograms as $ap): ?>
|
||
<option value="<?= htmlspecialchars($ap['name']) ?>"
|
||
<?= (isset($_GET['ap_program']) && $_GET['ap_program'] == $ap['name']) ? 'selected' : '' ?>>
|
||
<?= htmlspecialchars($ap['name']) ?>
|
||
</option>
|
||
<?php endforeach; ?>
|
||
</select>
|
||
</label>
|
||
|
||
<button type="submit" class="search-apply-btn">Filtrer</button>
|
||
<a href="search.php" class="search-reset-link">Réinitialiser</a>
|
||
</form>
|
||
|
||
<main class="search-main" id="main-content">
|
||
<output class="search-results-header" role="status"><?= $totalItems ?> résultat<?= $totalItems > 1 ? 's' : '' ?></output>
|
||
|
||
<?php if (!empty($results)): ?>
|
||
<ul class="results-grid">
|
||
<?php foreach ($results as $item): ?>
|
||
<li><a href="tfe.php?id=<?= (int)$item['id'] ?>" class="result-card">
|
||
<span class="result-card__authors"><?= htmlspecialchars($item['authors'] ?? '') ?></span>
|
||
<span class="result-card__title"><?= htmlspecialchars($item['title']) ?></span>
|
||
<small class="result-card__meta"><?= htmlspecialchars($item['year']) ?><?php if (!empty($item['orientation'])): ?> · <?= htmlspecialchars($item['orientation']) ?><?php endif; ?></small>
|
||
</a></li>
|
||
<?php endforeach; ?>
|
||
</ul>
|
||
|
||
<?php
|
||
// Preserve all active search/filter params (strip 'page' — injected by partial)
|
||
$baseParams = array_diff_key($_GET, ['page' => '']);
|
||
include APP_ROOT . '/templates/partials/pagination.php';
|
||
?>
|
||
|
||
<?php else: ?>
|
||
<p class="search-empty">Aucun résultat pour cette recherche.</p>
|
||
<?php endif; ?>
|
||
</main>
|
||
|
||
<?php else: ?>
|
||
<!-- ── RÉPERTOIRE INDEX VIEW ─────────────────────────── -->
|
||
<main class="search-main" id="main-content">
|
||
<h1 class="sr-only">Répertoire</h1>
|
||
<div class="repertoire-index">
|
||
|
||
<!-- ANNÉES -->
|
||
<section class="repertoire-col">
|
||
<h2>Années</h2>
|
||
<ul>
|
||
<?php foreach ($years as $y): ?>
|
||
<li><a href="search.php?year=<?= (int)$y ?>"
|
||
<?= (isset($_GET['year']) && $_GET['year'] == $y) ? 'aria-current="page"' : '' ?>>
|
||
<?= (int)$y ?>
|
||
</a></li>
|
||
<?php endforeach; ?>
|
||
</ul>
|
||
</section>
|
||
|
||
<!-- CATÉGORIES -->
|
||
<section class="repertoire-col">
|
||
<h2>Catégories</h2>
|
||
|
||
<?php if (!empty($orientations)): ?>
|
||
<span class="cat-index-label">Orientation</span>
|
||
<ul>
|
||
<?php foreach ($orientations as $o): ?>
|
||
<li><a href="search.php?orientation=<?= urlencode($o['name']) ?>"
|
||
<?= (isset($_GET['orientation']) && $_GET['orientation'] == $o['name']) ? 'aria-current="page"' : '' ?>>
|
||
<?= htmlspecialchars($o['name']) ?>
|
||
</a></li>
|
||
<?php endforeach; ?>
|
||
</ul>
|
||
<?php endif; ?>
|
||
|
||
<?php if (!empty($apPrograms)): ?>
|
||
<span class="cat-index-label">Ateliers Pluridisciplinaires</span>
|
||
<ul>
|
||
<?php foreach ($apPrograms as $ap): ?>
|
||
<li><a href="search.php?ap_program=<?= urlencode($ap['name']) ?>"
|
||
<?= (isset($_GET['ap_program']) && $_GET['ap_program'] == $ap['name']) ? 'aria-current="page"' : '' ?>>
|
||
<?= htmlspecialchars($ap['name']) ?>
|
||
</a></li>
|
||
<?php endforeach; ?>
|
||
</ul>
|
||
<?php endif; ?>
|
||
</section>
|
||
|
||
<!-- ÉTUDIANTES -->
|
||
<section class="repertoire-col">
|
||
<h2>Étudiantes</h2>
|
||
<?php
|
||
// Build unique author → thesis list
|
||
$authorMap = [];
|
||
foreach ($students as $s) {
|
||
if (empty($s['authors'])) continue;
|
||
$names = explode(',', $s['authors']);
|
||
foreach ($names as $name) {
|
||
$name = trim($name);
|
||
if ($name && !isset($authorMap[$name])) {
|
||
$authorMap[$name] = $s['id'];
|
||
}
|
||
}
|
||
}
|
||
ksort($authorMap);
|
||
?>
|
||
<ul>
|
||
<?php foreach ($authorMap as $name => $id): ?>
|
||
<li><a href="tfe.php?id=<?= (int)$id ?>">
|
||
<?= htmlspecialchars($name) ?>
|
||
</a></li>
|
||
<?php endforeach; ?>
|
||
</ul>
|
||
</section>
|
||
|
||
<!-- MOTS-CLÉS -->
|
||
<section class="repertoire-col">
|
||
<h2>Mots-clés</h2>
|
||
<ul>
|
||
<?php foreach ($keywords as $kw): ?>
|
||
<li><a href="search.php?keyword=<?= urlencode($kw['name']) ?>"
|
||
<?= (isset($_GET['keyword']) && $_GET['keyword'] == $kw['name']) ? 'aria-current="page"' : '' ?>>
|
||
<?= htmlspecialchars($kw['name']) ?>
|
||
</a></li>
|
||
<?php endforeach; ?>
|
||
</ul>
|
||
</section>
|
||
|
||
</div>
|
||
</main>
|
||
<?php endif; ?>
|
||
|
||
<?php include APP_ROOT . '/templates/footer.php'; ?>
|