mirror of https://github.com/djteang/OrangeTV.git
70 lines
1.7 KiB
TypeScript
70 lines
1.7 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
|
|
import { NextResponse } from 'next/server';
|
|
|
|
import { getConfig } from '@/lib/config';
|
|
|
|
export const runtime = 'nodejs';
|
|
|
|
export async function GET(request: Request) {
|
|
const { searchParams } = new URL(request.url);
|
|
const imageUrl = searchParams.get('url');
|
|
const source = searchParams.get('OrangeTV-source');
|
|
|
|
if (!imageUrl) {
|
|
return NextResponse.json({ error: 'Missing image URL' }, { status: 400 });
|
|
}
|
|
|
|
const config = await getConfig();
|
|
const liveSource = config.LiveConfig?.find((s: any) => s.key === source);
|
|
const ua = liveSource?.ua || 'AptvPlayer/1.4.10';
|
|
|
|
try {
|
|
const decodedUrl = decodeURIComponent(imageUrl);
|
|
const imageResponse = await fetch(decodedUrl, {
|
|
cache: 'no-cache',
|
|
redirect: 'follow',
|
|
credentials: 'same-origin',
|
|
headers: {
|
|
'User-Agent': ua,
|
|
},
|
|
});
|
|
|
|
if (!imageResponse.ok) {
|
|
return NextResponse.json(
|
|
{ error: imageResponse.statusText },
|
|
{ status: imageResponse.status }
|
|
);
|
|
}
|
|
|
|
const contentType = imageResponse.headers.get('content-type');
|
|
|
|
if (!imageResponse.body) {
|
|
return NextResponse.json(
|
|
{ error: 'Image response has no body' },
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
|
|
// 创建响应头
|
|
const headers = new Headers();
|
|
if (contentType) {
|
|
headers.set('Content-Type', contentType);
|
|
}
|
|
|
|
// 设置缓存头
|
|
headers.set('Cache-Control', 'public, max-age=86400, s-maxage=86400'); // 缓存一天
|
|
|
|
// 直接返回图片流
|
|
return new Response(imageResponse.body, {
|
|
status: 200,
|
|
headers,
|
|
});
|
|
} catch (error) {
|
|
return NextResponse.json(
|
|
{ error: 'Error fetching image' },
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
}
|