feat: impact-media page type with OG scraping and cache
All checks were successful
Deploy / Deploy to Production (push) Successful in 12s

- Add impact-media blueprint (entries field + linked investigation)
- Add minimal impact-media template
- Refactor card-open-graph snippet: accepts $url param, Kirby cache (6h TTL), decode HTML entities, empty alt on images
- Update impacts.yml to allow impact-media pages
- Render impact-media in investigation aside with dynamic count + details/summary
- Add OG cache config in config.php
- CSS formatting fixes (body, card-block-small, category)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
isUnknown 2026-02-27 17:31:00 +01:00
parent b8352c81fa
commit f757906584
11 changed files with 505 additions and 452 deletions

View file

@ -29,8 +29,6 @@ body{
color: var(--color-txt);
background-color: var(--color-bg);
}
img {
@ -50,8 +48,11 @@ img{
// }
}
.swiper-button-next, .swiper-button-prev,
body, #site-header, #site-footer{
.swiper-button-next,
.swiper-button-prev,
body,
#site-header,
#site-footer {
transition: background-color 0.3s ease, color 0.3s ease;
}
@ -62,7 +63,6 @@ body, #site-header, #site-footer{
position: relative;
}
@mixin hide-scroll() {
scrollbar-width: none;
-ms-overflow-style: none;
@ -85,7 +85,7 @@ body, #site-header, #site-footer{
}
position: relative;
&::before {
content: '';
content: "";
width: 100%;
border-top: 1px solid transparent;
position: absolute;
@ -93,16 +93,16 @@ body, #site-header, #site-footer{
left: 0;
}
&:not([data-impact-type="media"]) {
&:hover {
background-color: var(--grey-950);
border-color: var(--color-txt);
&::before {
border-color: var(--color-txt);
}
}
}
}
@mixin pin() {
.pin {
@ -119,9 +119,7 @@ body, #site-header, #site-footer{
}
}
@mixin icon($size) {
.icon {
display: flex;
width: $size;
@ -131,14 +129,9 @@ body, #site-header, #site-footer{
height: $size;
}
}
}
body.menu-open,
body.is-hidden {
overflow-y: hidden;
}

View file

@ -1,5 +1,4 @@
.card--block-small {
border-bottom: var(--border-light);
padding: var(--padding-inner) 0;
padding-bottom: calc(var(--spacing) * 0.75);
@ -11,7 +10,6 @@
@include grid-content();
@include hover-card-line();
.group-top {
position: relative;
// top: -5px;
@ -61,30 +59,21 @@
}
.date {
margin-top:0px;
margin-top: 0px;
}
}
}
.card--block-small {
.card--open-graph {
grid-column: 2;
z-index: 10;
}
.card--open-graph:not(:last-child) {
margin-bottom: 1rem;
}
.open-graph__details {
grid-column: 2;
@ -112,7 +101,6 @@
width: 100%;
fill: var(--color-txt);
}
}
summary:hover {

View file

@ -2,6 +2,7 @@
height: calc(var(--h-block) * 0.75);
// border-radius: calc(var(--h-block)*0.75/2);
border-radius: var(--radius-small);
width: max-content;
display: inline-flex;
align-items: center;
@ -18,11 +19,8 @@
overflow: hidden;
white-space: nowrap;
}
.category {
height: calc(var(--h-block) * 0.75);
border-radius: var(--radius-small);
@ -46,7 +44,6 @@
}
.page__category {
height: calc(var(--h-block) * 1);
border-radius: var(--radius-small);
border: var(--border-medium);
@ -72,14 +69,10 @@
font-size: var(--fs-xsmall);
padding: 0 1ch;
padding-top: 3px;
}
}
.page__type {
height: calc(var(--h-block) * 1);
border-radius: var(--radius-small);
margin-left: calc(var(--padding-inner) * 0.25);
@ -105,8 +98,5 @@
font-size: var(--fs-xsmall);
padding: 0 1ch;
padding-top: 3px;
}
}

View file

@ -138,8 +138,11 @@ img {
cursor: pointer;
}
.swiper-button-next, .swiper-button-prev,
body, #site-header, #site-footer {
.swiper-button-next,
.swiper-button-prev,
body,
#site-header,
#site-footer {
transition: background-color 0.3s ease, color 0.3s ease;
}
@ -741,6 +744,8 @@ button:disabled {
.type {
height: calc(var(--h-block) * 0.75);
border-radius: var(--radius-small);
width: -moz-max-content;
width: max-content;
display: inline-flex;
align-items: center;
justify-content: center;
@ -1951,13 +1956,13 @@ figcaption,
top: -1px;
left: 0;
}
.card--package:hover,
.card--article-small:hover {
.card--package:not([data-impact-type=media]):hover,
.card--article-small:not([data-impact-type=media]):hover {
background-color: var(--grey-950);
border-color: var(--color-txt);
}
.card--package:hover::before,
.card--article-small:hover::before {
.card--package:not([data-impact-type=media]):hover::before,
.card--article-small:not([data-impact-type=media]):hover::before {
border-color: var(--color-txt);
}
@media screen and (max-width: 1080px) {
@ -2025,11 +2030,11 @@ figcaption,
top: -1px;
left: 0;
}
.card--block:hover {
.card--block:not([data-impact-type=media]):hover {
background-color: var(--grey-950);
border-color: var(--color-txt);
}
.card--block:hover::before {
.card--block:not([data-impact-type=media]):hover::before {
border-color: var(--color-txt);
}
.card--block > figure {
@ -2156,11 +2161,11 @@ figcaption,
top: -1px;
left: 0;
}
.card--block-small:hover {
.card--block-small:not([data-impact-type=media]):hover {
background-color: var(--grey-950);
border-color: var(--color-txt);
}
.card--block-small:hover::before {
.card--block-small:not([data-impact-type=media]):hover::before {
border-color: var(--color-txt);
}
.card--block-small .group-top {
@ -2235,7 +2240,7 @@ figcaption,
margin-right: 1ch;
}
.card--block-small .date {
margin-top: 0px;
margin-top: 0px;
}
}
@ -2243,6 +2248,9 @@ figcaption,
grid-column: 2;
z-index: 10;
}
.card--block-small .card--open-graph:not(:last-child) {
margin-bottom: 1rem;
}
.card--block-small .open-graph__details {
grid-column: 2;
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,16 @@
title: Impact médiatique
fields:
linkedInvestigation:
label: Enquête liée
type: pages
query: page('enquetes').children.listed
multiple: false
layout: list
text: "{{ page.title }}"
info: "{{ page.created }}"
entries:
label: Articles et reprises
type: entries
field:
type: url

View file

@ -17,8 +17,9 @@ tabs:
impactsSection:
type: pages
label: Liste des impacts
template: impact
create: impact
templates:
- impact
- impact-media
layout: list
text: "{{ page.title }}"
info: "{{ page.category }} — {{ page.created.toDate('d/m/Y') }}"

View file

@ -76,6 +76,10 @@ return [
],
'tobimori.seo.canonicalBase' => 'https://www.index.ngo',
'cache' => [
'og' => true,
],
'routes' => [
require(__DIR__ . '/routes/newsletter.php'),
],

View file

@ -1,82 +1,81 @@
<?php
// URL à scraper (remplacez par l'URL souhaitée)
$url = 'https://www.lemonde.fr/societe/article/2025/07/16/au-c-ur-des-emeutes-de-nouvelle-caledonie-quand-la-mort-de-banane-abattu-par-le-gign-lance-le-siege-de-saint-louis_6621496_3224.html';
/**
* Card Open Graph snippet
* Fetches and displays OG data from an external URL with cache.
*
* @var string $url The URL to scrape OG data from
*/
// Fonction pour récupérer les données Open Graph
function getOpenGraphData($url) {
if (empty($url)) return;
$cache = kirby()->cache('og');
$cacheKey = md5($url);
$ogData = $cache->get($cacheKey);
if ($ogData === null) {
$ogData = [
'title' => '',
'description' => '',
'image' => '',
'site_name' => '',
'url' => $url
'url' => $url,
];
// Configuration du contexte pour éviter les erreurs SSL
$context = stream_context_create([
'http' => [
'method' => 'GET',
'header' => 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',
'timeout' => 10
'timeout' => 10,
],
'ssl' => [
'verify_peer' => false,
'verify_peer_name' => false
]
'verify_peer_name' => false,
],
]);
// Récupérer le HTML
$html = @file_get_contents($url, false, $context);
if ($html === false) {
return $ogData;
}
// Parser les meta tags Open Graph
preg_match_all('/<meta\s+property=["\']og:([^"\']+)["\']\s+content=["\']([^"\']+)["\']/i', $html, $matches);
if ($html !== false) {
// Parse OG meta tags (both property...content and content...property orders)
preg_match_all('/<meta\s+(?:property=["\']og:([^"\']+)["\']\s+content=["\']([^"\']*)["\']|content=["\']([^"\']*?)["\']\s+property=["\']og:([^"\']+)["\'])/i', $html, $matches);
if (!empty($matches[1])) {
foreach ($matches[1] as $index => $property) {
$content = $matches[2][$index];
switch ($property) {
$prop = $property ?: $matches[4][$index];
$content = $matches[2][$index] ?: $matches[3][$index];
$content = html_entity_decode(trim($content), ENT_QUOTES | ENT_HTML5, 'UTF-8');
switch ($prop) {
case 'title':
$ogData['title'] = htmlspecialchars($content);
$ogData['title'] = $content;
break;
case 'description':
$ogData['description'] = htmlspecialchars($content);
$ogData['description'] = $content;
break;
case 'image':
$ogData['image'] = $content;
break;
case 'site_name':
$ogData['site_name'] = htmlspecialchars($content);
$ogData['site_name'] = $content;
break;
}
}
}
// Fallback: si pas de og:title, utiliser <title>
// Fallback: use <title> if no og:title
if (empty($ogData['title'])) {
preg_match('/<title>([^<]+)<\/title>/i', $html, $titleMatch);
if (!empty($titleMatch[1])) {
$ogData['title'] = htmlspecialchars($titleMatch[1]);
$ogData['title'] = html_entity_decode($titleMatch[1], ENT_QUOTES, 'UTF-8');
}
}
}
// Fallback: si pas de site_name, utiliser le domaine
if (empty($ogData['site_name'])) {
// Always use domain as site_name
$parsed = parse_url($url);
$ogData['site_name'] = $parsed['host'] ?? '';
$cache->set($cacheKey, $ogData, 360); // 6 hours
}
return $ogData;
}
$ogData = getOpenGraphData($url);
// Toujours utiliser le domaine de l'URL pour site_name
$parsed = parse_url($url);
$ogData['site_name'] = $parsed['host'] ?? '';
?>
<div class="card--open-graph">
@ -84,28 +83,27 @@
<?php if (!empty($ogData['image'])): ?>
<figure>
<img src="<?= $ogData['image'] ?>" alt="<?= $ogData['title'] ?>">
<img src="<?= htmlspecialchars($ogData['image']) ?>" alt="">
</figure>
<?php endif; ?>
<?php endif ?>
<div class="content">
<?php if (!empty($ogData['site_name'])): ?>
<span class="site-name"><?= $ogData['site_name'] ?></span>
<?php endif; ?>
<span class="site-name"><?= htmlspecialchars($ogData['site_name']) ?></span>
<?php endif ?>
<?php if (!empty($ogData['title'])): ?>
<h3 class="title">
<a href="<?= $ogData['url'] ?>" target="_blank">
<?= $ogData['title'] ?>
<a href="<?= htmlspecialchars($ogData['url']) ?>" target="_blank">
<?= htmlspecialchars($ogData['title']) ?>
</a>
</h3>
<?php endif; ?>
<?php endif ?>
<?php if (!empty($ogData['description'])): ?>
<p class="description"><?= $ogData['description'] ?></p>
<?php endif; ?>
<p class="description"><?= htmlspecialchars($ogData['description']) ?></p>
<?php endif ?>
</div>
<a class="link-block" href="<?= $ogData['url'] ?>" target="_blank"></a>
<a class="link-block" href="<?= htmlspecialchars($ogData['url']) ?>" target="_blank"></a>
</div>
</div>

View file

@ -0,0 +1,47 @@
<?php snippet('header') ?>
<main class="main__single">
<header class="page__header">
<p class="page__type">Impact</p>
<p class="page__category">Médiatique</p>
<h2 class="page__title"><?= $page->title()->esc() ?></h2>
</header>
<?php
$entries = $page->entries()->toEntries();
$investigation = $page->linkedInvestigation()->toPages()->first();
?>
<?php if ($entries->isNotEmpty()): ?>
<div class="page__content">
<?php foreach ($entries as $entry): ?>
<?php snippet('card-open-graph', ['url' => $entry->value()]) ?>
<?php endforeach ?>
</div>
<?php endif ?>
<?php if ($investigation): ?>
<aside class="page__aside" id="related-investigations">
<h3 class="aside__title">Enquête liée</h3>
<article class="card--article-small">
<?php if ($cover = $investigation->cover()->toFile()): ?>
<figure>
<img src="<?= $cover->url() ?>" alt="<?= $investigation->title()->esc() ?>">
</figure>
<?php endif ?>
<div class="content">
<p class="type">Enquête</p>
<h4 class="title"><a href="<?= $investigation->url() ?>"><?= $investigation->title()->esc() ?></a></h4>
</div>
<button class="btn--go-to"><a href="<?= $investigation->url() ?>"><?= svg('assets/icons/arrow-left.svg') ?></a></button>
<a class="link-block" href="<?= $investigation->url() ?>" aria-hidden="true"></a>
</article>
</aside>
<?php endif ?>
</main>
<?php snippet('bottom-bar') ?>
<?php snippet('footer') ?>

View file

@ -303,19 +303,6 @@ $dateLocale = substr(is_array($locale) ? reset($locale) : $locale, 0, 5);
</div>
<!-- <div class="card--block-small" data-impact-type="media">
<p class="category">Médiatique</p>
<div class="content">
<p>12 articles et reprises</p>
<p>1.5M de vues cumulées</p>
</div>
<details class="open-graph__details">
<summary><p class="summary-inner">Détails <span class="arrow-details"><?= svg('assets/icons/arrow-details.svg') ?></span><p></summary>
<?php snippet('card-open-graph') ?>
</details>
</div> -->
<?php
$resourcesParent = site()->find('ressources');
@ -361,6 +348,9 @@ $resources = $resourcesParent ? $resourcesParent->children()->listed()->filter(f
<?php
$impactsParent = site()->find('impacts');
$impacts = $impactsParent ? $impactsParent->children()->listed()->filter(function($impact) use ($page) {
if ($impact->intendedTemplate()->name() === 'impact-media') {
return $impact->linkedInvestigation()->toPages()->has($page);
}
return $impact->linkedInvestigations()->toPages()->has($page);
}) : null;
?>
@ -370,6 +360,23 @@ $impacts = $impactsParent ? $impactsParent->children()->listed()->filter(functio
<h3 class="aside__title"><?= t('impacts.title') ?></h3>
<?php foreach ($impacts as $impact): ?>
<?php if ($impact->intendedTemplate()->name() === 'impact-media'): ?>
<?php $entries = $impact->entries()->toEntries(); ?>
<div class="card--block-small" data-impact-type="media">
<p class="type">Médiatique</p>
<div class="content">
<p><?= $entries->count() ?> article<?= $entries->count() > 1 ? 's' : '' ?> et reprise<?= $entries->count() > 1 ? 's' : '' ?></p>
</div>
<?php if ($entries->isNotEmpty()): ?>
<details class="open-graph__details">
<summary><p class="summary-inner">Détails <span class="arrow-details"><?= svg('assets/icons/arrow-details.svg') ?></span></p></summary>
<?php foreach ($entries as $entry): ?>
<?php snippet('card-open-graph', ['url' => $entry->value()]) ?>
<?php endforeach ?>
</details>
<?php endif ?>
</div>
<?php else: ?>
<div class="card--block-small has-link">
<div class="group-top">
<p class="type"><?= t('impact.type') ?></p>
@ -394,6 +401,7 @@ $impacts = $impactsParent ? $impactsParent->children()->listed()->filter(functio
<a class="link-block" href="<?= $impact->url() ?>" aria-hidden="true"></a>
</div>
<?php endif ?>
<?php endforeach ?>
</aside>