Files
MoonTVPlus/src/app/api/danmaku/match/route.ts
2025-12-25 00:12:03 +08:00

86 lines
2.1 KiB
TypeScript

// 自动匹配 API 路由
import { NextRequest, NextResponse } from 'next/server';
import { getConfig } from '@/lib/config';
export const runtime = 'nodejs';
export async function POST(request: NextRequest) {
try {
const body = await request.json();
const { fileName } = body;
if (!fileName) {
return NextResponse.json(
{
errorCode: -1,
success: false,
errorMessage: '缺少文件名参数',
isMatched: false,
matches: [],
},
{ status: 400 }
);
}
// 从数据库读取弹幕配置
const config = await getConfig();
const { DanmakuApiBase, DanmakuApiToken } = config.SiteConfig;
// 构建 API URL
const baseUrl =
DanmakuApiToken === '87654321'
? DanmakuApiBase
: `${DanmakuApiBase}/${DanmakuApiToken}`;
const apiUrl = `${baseUrl}/api/v2/match`;
// 添加超时控制
const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), 30000); // 10秒超时
try {
const response = await fetch(apiUrl, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ fileName }),
signal: controller.signal,
keepalive: true,
});
clearTimeout(timeoutId);
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const data = await response.json();
return NextResponse.json(data);
} catch (fetchError) {
clearTimeout(timeoutId);
// 如果是超时错误,返回更友好的错误信息
if (fetchError instanceof Error && fetchError.name === 'AbortError') {
throw new Error('弹幕服务器请求超时,请稍后重试');
}
throw fetchError;
}
} catch (error) {
console.error('自动匹配代理错误:', error);
return NextResponse.json(
{
errorCode: -1,
success: false,
errorMessage: error instanceof Error ? error.message : '匹配失败',
isMatched: false,
matches: [],
},
{ status: 500 }
);
}
}