增加动漫数据源配置

This commit is contained in:
mtvpls
2026-05-28 16:00:07 +08:00
parent dc31a788fc
commit cc98b21d66
16 changed files with 4448 additions and 2153 deletions
+34
View File
@@ -0,0 +1,34 @@
import { NextResponse } from 'next/server';
import { fetchBangumiFromServer } from '@/lib/bangumi.server';
import { getConfig } from '@/lib/config';
export async function GET() {
try {
const config = await getConfig();
const response = await fetchBangumiFromServer('/calendar', {
baseUrl: config.SiteConfig.BangumiApiBaseUrl,
proxy: config.SiteConfig.BangumiProxy,
});
if (!response.ok) {
return NextResponse.json(
{ error: `Bangumi calendar 请求失败: ${response.status}` },
{ status: response.status || 502 }
);
}
const data = await response.json();
return NextResponse.json(data, {
headers: {
'Cache-Control': 'public, max-age=3600, stale-while-revalidate=21600',
},
});
} catch (error) {
console.error('获取 Bangumi calendar 失败:', error);
return NextResponse.json(
{ error: '获取 Bangumi calendar 失败' },
{ status: 500 }
);
}
}
+42
View File
@@ -0,0 +1,42 @@
import { NextRequest, NextResponse } from 'next/server';
import { fetchBangumiFromServer } from '@/lib/bangumi.server';
import { getConfig } from '@/lib/config';
export async function GET(request: NextRequest) {
try {
const id = request.nextUrl.searchParams.get('id') || '';
if (!/^\d+$/.test(id)) {
return NextResponse.json(
{ error: 'Bangumi ID 格式错误' },
{ status: 400 }
);
}
const config = await getConfig();
const response = await fetchBangumiFromServer(`/v0/subjects/${id}`, {
baseUrl: config.SiteConfig.BangumiApiBaseUrl,
proxy: config.SiteConfig.BangumiProxy,
});
if (!response.ok) {
return NextResponse.json(
{ error: `Bangumi subject 请求失败: ${response.status}` },
{ status: response.status || 502 }
);
}
const data = await response.json();
return NextResponse.json(data, {
headers: {
'Cache-Control': 'public, max-age=86400, stale-while-revalidate=604800',
},
});
} catch (error) {
console.error('获取 Bangumi subject 失败:', error);
return NextResponse.json(
{ error: '获取 Bangumi subject 失败' },
{ status: 500 }
);
}
}
@@ -0,0 +1,45 @@
import { NextRequest, NextResponse } from 'next/server';
import { fetchBangumiFromServer } from '@/lib/bangumi.server';
import { getConfig } from '@/lib/config';
export async function GET(
_request: NextRequest,
{ params }: { params: { id: string } }
) {
try {
const id = params.id;
if (!/^\d+$/.test(id)) {
return NextResponse.json(
{ error: 'Bangumi ID 格式错误' },
{ status: 400 }
);
}
const config = await getConfig();
const response = await fetchBangumiFromServer(`/v0/subjects/${id}`, {
baseUrl: config.SiteConfig.BangumiApiBaseUrl,
proxy: config.SiteConfig.BangumiProxy,
});
if (!response.ok) {
return NextResponse.json(
{ error: `Bangumi subject 请求失败: ${response.status}` },
{ status: response.status || 502 }
);
}
const data = await response.json();
return NextResponse.json(data, {
headers: {
'Cache-Control': 'public, max-age=86400, stale-while-revalidate=604800',
},
});
} catch (error) {
console.error('获取 Bangumi subject 失败:', error);
return NextResponse.json(
{ error: '获取 Bangumi subject 失败' },
{ status: 500 }
);
}
}