mirror of https://github.com/djteang/OrangeTV.git
53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
import { NextRequest, NextResponse } from 'next/server';
|
|
|
|
import { getAuthInfoFromCookie } from '@/lib/auth';
|
|
import { getAvailableApiSites, getCacheTime } from '@/lib/config';
|
|
import { getDetailFromApi } from '@/lib/downstream';
|
|
|
|
export const runtime = 'nodejs';
|
|
|
|
export async function GET(request: NextRequest) {
|
|
const authInfo = getAuthInfoFromCookie(request);
|
|
if (!authInfo || !authInfo.username) {
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
|
|
}
|
|
|
|
const { searchParams } = new URL(request.url);
|
|
const id = searchParams.get('id');
|
|
const sourceCode = searchParams.get('source');
|
|
|
|
if (!id || !sourceCode) {
|
|
return NextResponse.json({ error: '缺少必要参数' }, { status: 400 });
|
|
}
|
|
|
|
if (!/^[\w-]+$/.test(id)) {
|
|
return NextResponse.json({ error: '无效的视频ID格式' }, { status: 400 });
|
|
}
|
|
|
|
try {
|
|
const apiSites = await getAvailableApiSites(authInfo.username);
|
|
const apiSite = apiSites.find((site) => site.key === sourceCode);
|
|
|
|
if (!apiSite) {
|
|
return NextResponse.json({ error: '无效的API来源' }, { status: 400 });
|
|
}
|
|
|
|
const result = await getDetailFromApi(apiSite, id);
|
|
const cacheTime = await getCacheTime();
|
|
|
|
return NextResponse.json(result, {
|
|
headers: {
|
|
'Cache-Control': `public, max-age=${cacheTime}, s-maxage=${cacheTime}`,
|
|
'CDN-Cache-Control': `public, s-maxage=${cacheTime}`,
|
|
'Vercel-CDN-Cache-Control': `public, s-maxage=${cacheTime}`,
|
|
'Netlify-Vary': 'query',
|
|
},
|
|
});
|
|
} catch (error) {
|
|
return NextResponse.json(
|
|
{ error: (error as Error).message },
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
}
|