kv-tube/frontend/app/api/download/route.ts
2026-02-22 21:04:48 +07:00

31 lines
1,016 B
TypeScript
Executable file

import { NextRequest, NextResponse } from 'next/server';
export const dynamic = 'force-dynamic';
const API_BASE = process.env.NEXT_PUBLIC_API_URL || 'http://127.0.0.1:8080';
export async function GET(request: NextRequest) {
const videoId = request.nextUrl.searchParams.get('v');
const formatId = request.nextUrl.searchParams.get('f');
if (!videoId) {
return NextResponse.json({ error: 'No video ID' }, { status: 400 });
}
try {
const url = `${API_BASE}/api/download?v=${encodeURIComponent(videoId)}${formatId ? `&f=${encodeURIComponent(formatId)}` : ''}`;
const res = await fetch(url, {
cache: 'no-store',
});
const data = await res.json();
if (!res.ok) {
return NextResponse.json({ error: data.error || 'Download failed' }, { status: 500 });
}
return NextResponse.json(data);
} catch (error) {
return NextResponse.json({ error: 'Failed to get download link' }, { status: 500 });
}
}