- public/assets/images/logo.png + public/brand/logo*.png replaced with the 1320x310 AV Beat logo
- public/assets/logos/avbeat.png added as the canonical source
- tailwind.config.js + src/styles/tailwind.css + src/styles/redesign-tokens.css palette swapped (primary #0F0E0E, secondary #1D1A1A, accent #E67E22 orange, foreground #F0EBE6 warm white)
- Layout / robots / sitemap / home-page / about / contact / press-kit / team / global-error metadata switched to AV Beat (Where AV Meets IT)
- Bulk replaced 'Broadcast Beat'/'BroadcastBeat.com'/'broadcastbeat.com' across user-facing news/forum/marketplace/advertise/search/newsletter pages
- src/lib/supabase/{admin,server,client} now default to schema 'avb' (was 'bb') — overridable via NEXT_PUBLIC_SUPABASE_SCHEMA
- package.json renamed to 'avbeat'
- Single d60701 reference in about/team swapped to E67E22
Design-only replica — no article content migrated.
91 lines
3.3 KiB
TypeScript
91 lines
3.3 KiB
TypeScript
import { createClient } from '@supabase/supabase-js';
|
|
|
|
export const dynamic = 'force-dynamic';
|
|
export const revalidate = 600; // 10 min — Google rechecks frequently
|
|
|
|
// Google News sitemap. Only original-editorial articles (ai_rewritten_at IS
|
|
// NOT NULL or rewritten-articles surface) from the last 48 hours so we
|
|
// stay inside the GN window. Standard sitemap.xml covers older pages.
|
|
const PUBLICATION_NAME = 'AV Beat';
|
|
const PUBLICATION_LANG = 'en';
|
|
const HOST = 'https://avbeat.com';
|
|
|
|
function esc(s: string): string {
|
|
return (s || '').replace(/[&<>"']/g, (c) =>
|
|
({ '&': '&', '<': '<', '>': '>', '"': '"', "'": ''' }[c] as string));
|
|
}
|
|
|
|
export async function GET() {
|
|
const url = process.env.NEXT_PUBLIC_SUPABASE_URL!;
|
|
const key = process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!;
|
|
const schema = process.env.NEXT_PUBLIC_SUPABASE_SCHEMA || 'bb';
|
|
const sb = createClient(url, key, { db: { schema: schema as 'public' }, auth: { persistSession: false } });
|
|
|
|
const since = new Date(Date.now() - 48 * 3600 * 1000).toISOString();
|
|
|
|
const [{ data: imported }, { data: rewritten }] = await Promise.all([
|
|
sb.from('wp_imported_posts')
|
|
.select('wp_slug, title, wp_published_at, ai_rewritten_at, author_name, tags')
|
|
.eq('status', 'published')
|
|
.not('ai_rewritten_at', 'is', null)
|
|
.gte('wp_published_at', since)
|
|
.order('wp_published_at', { ascending: false })
|
|
.limit(1000),
|
|
sb.from('ai_rewritten_articles')
|
|
.select('slug, title, published_at, category, source_author')
|
|
.eq('status', 'published')
|
|
.gte('published_at', since)
|
|
.order('published_at', { ascending: false })
|
|
.limit(1000),
|
|
]);
|
|
|
|
const entries: string[] = [];
|
|
|
|
for (const a of imported || []) {
|
|
const pubDate = a.wp_published_at || a.ai_rewritten_at;
|
|
if (!pubDate) continue;
|
|
const tags = Array.isArray(a.tags) ? (a.tags as string[]).slice(0, 5).join(', ') : '';
|
|
entries.push(` <url>
|
|
<loc>${HOST}/news/${esc(a.wp_slug)}</loc>
|
|
<news:news>
|
|
<news:publication>
|
|
<news:name>${PUBLICATION_NAME}</news:name>
|
|
<news:language>${PUBLICATION_LANG}</news:language>
|
|
</news:publication>
|
|
<news:publication_date>${pubDate}</news:publication_date>
|
|
<news:title>${esc(a.title)}</news:title>${tags ? `\n <news:keywords>${esc(tags)}</news:keywords>` : ''}
|
|
</news:news>
|
|
</url>`);
|
|
}
|
|
|
|
for (const a of rewritten || []) {
|
|
if (!a.published_at) continue;
|
|
entries.push(` <url>
|
|
<loc>${HOST}/articles/${esc(a.slug)}</loc>
|
|
<news:news>
|
|
<news:publication>
|
|
<news:name>${PUBLICATION_NAME}</news:name>
|
|
<news:language>${PUBLICATION_LANG}</news:language>
|
|
</news:publication>
|
|
<news:publication_date>${a.published_at}</news:publication_date>
|
|
<news:title>${esc(a.title)}</news:title>${a.category ? `\n <news:keywords>${esc(a.category)}</news:keywords>` : ''}
|
|
</news:news>
|
|
</url>`);
|
|
}
|
|
|
|
const body = `<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
|
xmlns:news="http://www.google.com/schemas/sitemap-news/0.9">
|
|
${entries.join('\n')}
|
|
</urlset>
|
|
`;
|
|
|
|
return new Response(body, {
|
|
status: 200,
|
|
headers: {
|
|
'content-type': 'application/xml; charset=utf-8',
|
|
'cache-control': 'public, max-age=300, s-maxage=600',
|
|
},
|
|
});
|
|
}
|