217 lines
7.7 KiB
TypeScript
217 lines
7.7 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-explicit-any,no-console */
|
||
|
||
import { NextRequest, NextResponse } from 'next/server';
|
||
|
||
import { getAuthInfoFromCookie } from '@/lib/auth';
|
||
import { getAvailableApiSites, getCacheTime, getConfig } from '@/lib/config';
|
||
import { searchFromApi } from '@/lib/downstream';
|
||
import { yellowWords } from '@/lib/yellow';
|
||
|
||
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 query = searchParams.get('q');
|
||
|
||
if (!query) {
|
||
const cacheTime = await getCacheTime();
|
||
return NextResponse.json(
|
||
{ results: [] },
|
||
{
|
||
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',
|
||
},
|
||
}
|
||
);
|
||
}
|
||
|
||
const config = await getConfig();
|
||
const apiSites = await getAvailableApiSites(authInfo.username);
|
||
|
||
// 检查是否配置了 OpenList
|
||
const hasOpenList = !!(
|
||
config.OpenListConfig?.Enabled &&
|
||
config.OpenListConfig?.URL &&
|
||
config.OpenListConfig?.Username &&
|
||
config.OpenListConfig?.Password
|
||
);
|
||
|
||
// 获取所有启用的 Emby 源
|
||
const { embyManager } = await import('@/lib/emby-manager');
|
||
const embySourcesMap = await embyManager.getAllClients();
|
||
const embySources = Array.from(embySourcesMap.values());
|
||
|
||
console.log('[Search] Emby sources count:', embySources.length);
|
||
console.log('[Search] Emby sources:', embySources.map(s => ({ key: s.config.key, name: s.config.name })));
|
||
|
||
// 为每个 Emby 源创建搜索 Promise(全部并发,无限制)
|
||
const embyPromises = embySources.map(({ client, config: embyConfig }) =>
|
||
Promise.race([
|
||
(async () => {
|
||
try {
|
||
const searchResult = await client.getItems({
|
||
searchTerm: query,
|
||
IncludeItemTypes: 'Movie,Series',
|
||
Recursive: true,
|
||
Fields: 'Overview,ProductionYear',
|
||
Limit: 50,
|
||
});
|
||
|
||
// 如果只有一个Emby源,保持旧格式(向后兼容)
|
||
const sourceValue = embySources.length === 1 ? 'emby' : `emby_${embyConfig.key}`;
|
||
const sourceName = embySources.length === 1 ? 'Emby' : embyConfig.name;
|
||
|
||
return searchResult.Items.map((item) => ({
|
||
id: item.Id,
|
||
source: sourceValue,
|
||
source_name: sourceName,
|
||
title: item.Name,
|
||
poster: client.getImageUrl(item.Id, 'Primary'),
|
||
episodes: [],
|
||
episodes_titles: [],
|
||
year: item.ProductionYear?.toString() || '',
|
||
desc: item.Overview || '',
|
||
type_name: item.Type === 'Movie' ? '电影' : '电视剧',
|
||
douban_id: 0,
|
||
}));
|
||
} catch (error) {
|
||
console.error(`[Search] 搜索 ${embyConfig.name} 失败:`, error);
|
||
return [];
|
||
}
|
||
})(),
|
||
new Promise<any[]>((_, reject) =>
|
||
setTimeout(() => reject(new Error(`${embyConfig.name} timeout`)), 20000)
|
||
),
|
||
]).catch((error) => {
|
||
console.error(`[Search] 搜索 ${embyConfig.name} 超时:`, error);
|
||
return [];
|
||
})
|
||
);
|
||
|
||
// 搜索 OpenList(如果配置了)- 异步带超时
|
||
const openlistPromise = hasOpenList
|
||
? Promise.race([
|
||
(async () => {
|
||
try {
|
||
const { getCachedMetaInfo, setCachedMetaInfo } = await import('@/lib/openlist-cache');
|
||
const { getTMDBImageUrl } = await import('@/lib/tmdb.search');
|
||
const { db } = await import('@/lib/db');
|
||
|
||
let metaInfo = getCachedMetaInfo();
|
||
|
||
if (!metaInfo) {
|
||
const metainfoJson = await db.getGlobalValue('video.metainfo');
|
||
if (metainfoJson) {
|
||
metaInfo = JSON.parse(metainfoJson);
|
||
if (metaInfo) {
|
||
setCachedMetaInfo(metaInfo);
|
||
}
|
||
}
|
||
}
|
||
|
||
if (metaInfo && metaInfo.folders) {
|
||
return Object.entries(metaInfo.folders)
|
||
.filter(([folderName, info]: [string, any]) => {
|
||
const matchFolder = folderName.toLowerCase().includes(query.toLowerCase());
|
||
const matchTitle = info.title.toLowerCase().includes(query.toLowerCase());
|
||
return matchFolder || matchTitle;
|
||
})
|
||
.map(([folderName, info]: [string, any]) => ({
|
||
id: folderName,
|
||
source: 'openlist',
|
||
source_name: '私人影库',
|
||
title: info.title,
|
||
poster: getTMDBImageUrl(info.poster_path),
|
||
episodes: [],
|
||
episodes_titles: [],
|
||
year: info.release_date.split('-')[0] || '',
|
||
desc: info.overview,
|
||
type_name: info.media_type === 'movie' ? '电影' : '电视剧',
|
||
douban_id: 0,
|
||
}));
|
||
}
|
||
return [];
|
||
} catch (error) {
|
||
console.error('[Search] 搜索 OpenList 失败:', error);
|
||
return [];
|
||
}
|
||
})(),
|
||
new Promise<any[]>((_, reject) =>
|
||
setTimeout(() => reject(new Error('OpenList timeout')), 20000)
|
||
),
|
||
]).catch((error) => {
|
||
console.error('[Search] 搜索 OpenList 超时:', error);
|
||
return [];
|
||
})
|
||
: Promise.resolve([]);
|
||
|
||
// 添加超时控制和错误处理,避免慢接口拖累整体响应
|
||
const searchPromises = apiSites.map((site) =>
|
||
Promise.race([
|
||
searchFromApi(site, query),
|
||
new Promise((_, reject) =>
|
||
setTimeout(() => reject(new Error(`${site.name} timeout`)), 20000)
|
||
),
|
||
]).catch((err) => {
|
||
console.warn(`搜索失败 ${site.name}:`, err.message);
|
||
return []; // 返回空数组而不是抛出错误
|
||
})
|
||
);
|
||
|
||
try {
|
||
const allResults = await Promise.all([
|
||
openlistPromise,
|
||
...embyPromises,
|
||
...searchPromises,
|
||
]);
|
||
|
||
// 分离结果:第一个是 openlist,接下来是 emby 结果,最后是 api 结果
|
||
// 添加安全检查,确保即使某个结果处理出错也不影响其他结果
|
||
const openlistResults = Array.isArray(allResults[0]) ? allResults[0] : [];
|
||
const embyResultsArray = allResults.slice(1, 1 + embyPromises.length);
|
||
const apiResults = allResults.slice(1 + embyPromises.length);
|
||
|
||
// 合并所有 Emby 结果,添加安全检查
|
||
const embyResults = embyResultsArray.filter(Array.isArray).flat();
|
||
const apiResultsFlat = apiResults.filter(Array.isArray).flat();
|
||
|
||
let flattenedResults = [...openlistResults, ...embyResults, ...apiResultsFlat];
|
||
|
||
if (!config.SiteConfig.DisableYellowFilter) {
|
||
flattenedResults = flattenedResults.filter((result) => {
|
||
const typeName = result.type_name || '';
|
||
return !yellowWords.some((word: string) => typeName.includes(word));
|
||
});
|
||
}
|
||
const cacheTime = await getCacheTime();
|
||
|
||
if (flattenedResults.length === 0) {
|
||
// no cache if empty
|
||
return NextResponse.json({ results: [] }, { status: 200 });
|
||
}
|
||
|
||
return NextResponse.json(
|
||
{ results: flattenedResults },
|
||
{
|
||
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) {
|
||
console.error('[Search] 搜索结果处理失败:', error);
|
||
return NextResponse.json({ error: '搜索失败' }, { status: 500 });
|
||
}
|
||
}
|