77 lines
2.1 KiB
TypeScript
77 lines
2.1 KiB
TypeScript
import { NextResponse } from 'next/server';
|
|
|
|
import { getAvailableApiSites, getCacheTime } from '@/lib/config';
|
|
import { searchFromApi } from '@/lib/downstream';
|
|
|
|
export const runtime = 'edge';
|
|
|
|
// OrionTV 兼容接口
|
|
export async function GET(request: Request) {
|
|
const { searchParams } = new URL(request.url);
|
|
const query = searchParams.get('q');
|
|
const resourceId = searchParams.get('resourceId');
|
|
|
|
if (!query || !resourceId) {
|
|
const cacheTime = await getCacheTime();
|
|
return NextResponse.json(
|
|
{ result: null, error: '缺少必要参数: q 或 resourceId' },
|
|
{
|
|
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}`,
|
|
},
|
|
}
|
|
);
|
|
}
|
|
|
|
const apiSites = await getAvailableApiSites();
|
|
|
|
try {
|
|
// 根据 resourceId 查找对应的 API 站点
|
|
const targetSite = apiSites.find((site) => site.key === resourceId);
|
|
if (!targetSite) {
|
|
return NextResponse.json(
|
|
{
|
|
error: `未找到指定的视频源: ${resourceId}`,
|
|
result: null,
|
|
},
|
|
{ status: 404 }
|
|
);
|
|
}
|
|
|
|
const results = await searchFromApi(targetSite, query);
|
|
const result = results.filter((r) => r.title === query);
|
|
const cacheTime = await getCacheTime();
|
|
|
|
if (result.length === 0) {
|
|
return NextResponse.json(
|
|
{
|
|
error: '未找到结果',
|
|
result: null,
|
|
},
|
|
{ status: 404 }
|
|
);
|
|
} else {
|
|
return NextResponse.json(
|
|
{ results: 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}`,
|
|
},
|
|
}
|
|
);
|
|
}
|
|
} catch (error) {
|
|
return NextResponse.json(
|
|
{
|
|
error: '搜索失败',
|
|
result: null,
|
|
},
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
}
|