Les documents réels du GONG (journal Gong-Information) vivaient uniquement sur l'API Strapi en ligne (api.gong.gp), pas dans le dépôt. Ils sont maintenant récupérés et intégrés en dur (le back-office Strapi peut être définitivement retiré) : - n° 16 (Mai-Juin 1966), n° spécial (Janv-Fév 1967), n° 19 (Mars-Avril-Mai 1967). - Transcription intégrale (contenu first-party) + couverture optimisée WebP (~40 Ko). - Scans PDF recompressés via Ghostscript (176 Mo → 28 Mo, 150 dpi lisibles). - Nouvelle section /archives (index + fiche par numéro), schema Article/CreativeWork. - Liens depuis nav, footer, accueil, publications ; ajout au sitemap ; PWA globIgnores. npm run check : 0/0 · build : 32 pages. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
54 lines
2.4 KiB
TypeScript
54 lines
2.4 KiB
TypeScript
import { SITE, membres } from '$lib/data/gong';
|
|
import { getActualites } from '$lib/server/actualites';
|
|
import { getArchives } from '$lib/server/archives';
|
|
|
|
export const prerender = true;
|
|
|
|
const statiques: { path: string; priority: string; changefreq: string }[] = [
|
|
{ path: '/', priority: '1.0', changefreq: 'monthly' },
|
|
{ path: '/histoire/', priority: '0.9', changefreq: 'yearly' },
|
|
{ path: '/me-67/', priority: '0.9', changefreq: 'yearly' },
|
|
{ path: '/proces-1968/', priority: '0.8', changefreq: 'yearly' },
|
|
{ path: '/militants/', priority: '0.8', changefreq: 'yearly' },
|
|
{ path: '/ideologie/', priority: '0.7', changefreq: 'yearly' },
|
|
{ path: '/heritage/', priority: '0.7', changefreq: 'yearly' },
|
|
{ path: '/publications/', priority: '0.6', changefreq: 'yearly' },
|
|
{ path: '/archives/', priority: '0.8', changefreq: 'yearly' },
|
|
{ path: '/charte/', priority: '0.7', changefreq: 'yearly' },
|
|
{ path: '/orientation/', priority: '0.7', changefreq: 'yearly' },
|
|
{ path: '/sources/', priority: '0.6', changefreq: 'yearly' },
|
|
{ path: '/faq/', priority: '0.8', changefreq: 'monthly' },
|
|
{ path: '/actualites/', priority: '0.6', changefreq: 'weekly' },
|
|
{ path: '/contact/', priority: '0.4', changefreq: 'yearly' },
|
|
{ path: '/mentions-legales/', priority: '0.2', changefreq: 'yearly' }
|
|
];
|
|
|
|
export function GET() {
|
|
const today = new Date().toISOString().slice(0, 10);
|
|
const urls: string[] = [];
|
|
|
|
for (const s of statiques) {
|
|
urls.push(
|
|
`<url><loc>${SITE.url}${s.path}</loc><lastmod>${today}</lastmod><changefreq>${s.changefreq}</changefreq><priority>${s.priority}</priority></url>`
|
|
);
|
|
}
|
|
for (const m of membres) {
|
|
urls.push(`<url><loc>${SITE.url}/militants/${m.slug}/</loc><lastmod>${today}</lastmod><changefreq>yearly</changefreq><priority>0.6</priority></url>`);
|
|
}
|
|
for (const a of getActualites()) {
|
|
urls.push(`<url><loc>${SITE.url}/actualites/${a.slug}/</loc><lastmod>${a.iso}</lastmod><changefreq>monthly</changefreq><priority>0.5</priority></url>`);
|
|
}
|
|
for (const a of getArchives()) {
|
|
urls.push(`<url><loc>${SITE.url}/archives/${a.slug}/</loc><lastmod>${a.iso}</lastmod><changefreq>yearly</changefreq><priority>0.6</priority></url>`);
|
|
}
|
|
|
|
const xml = `<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
${urls.join('\n')}
|
|
</urlset>`;
|
|
|
|
return new Response(xml, {
|
|
headers: { 'Content-Type': 'application/xml', 'Cache-Control': 'max-age=3600' }
|
|
});
|
|
}
|