
- implement hCaptcha solving via paid service 2Captcha and browser automation library Playwright with rebrowser-patches - implement sunoApi instances caching so sessions won't be constantly updated - add support for entering cookies not only in SUNO_COOKIE, but also the Cookie HTTP header - update docs and add Russian docs
70 lines
2.0 KiB
TypeScript
70 lines
2.0 KiB
TypeScript
import { NextResponse, NextRequest } from "next/server";
|
|
import { cookies } from 'next/headers'
|
|
import { DEFAULT_MODEL, sunoApi } from "@/lib/SunoApi";
|
|
import { corsHeaders } from "@/lib/utils";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export async function POST(req: NextRequest) {
|
|
if (req.method === 'POST') {
|
|
try {
|
|
const body = await req.json();
|
|
const { audio_id, prompt, continue_at, tags, negative_tags, title, model, wait_audio } = body;
|
|
|
|
if (!audio_id) {
|
|
return new NextResponse(JSON.stringify({ error: 'Audio ID is required' }), {
|
|
status: 400,
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
...corsHeaders
|
|
}
|
|
});
|
|
}
|
|
|
|
const audioInfo = await (await sunoApi((await cookies()).toString()))
|
|
.extendAudio(audio_id, prompt, continue_at, tags || '', negative_tags || '', title, model || DEFAULT_MODEL, wait_audio || false);
|
|
|
|
return new NextResponse(JSON.stringify(audioInfo), {
|
|
status: 200,
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
...corsHeaders
|
|
}
|
|
});
|
|
} catch (error: any) {
|
|
console.error('Error extend audio:', JSON.stringify(error.response.data));
|
|
if (error.response.status === 402) {
|
|
return new NextResponse(JSON.stringify({ error: error.response.data.detail }), {
|
|
status: 402,
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
...corsHeaders
|
|
}
|
|
});
|
|
}
|
|
return new NextResponse(JSON.stringify({ error: 'Internal server error: ' + JSON.stringify(error.response.data.detail) }), {
|
|
status: 500,
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
...corsHeaders
|
|
}
|
|
});
|
|
}
|
|
} else {
|
|
return new NextResponse('Method Not Allowed', {
|
|
headers: {
|
|
Allow: 'POST',
|
|
...corsHeaders
|
|
},
|
|
status: 405
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
export async function OPTIONS(request: Request) {
|
|
return new Response(null, {
|
|
status: 200,
|
|
headers: corsHeaders
|
|
});
|
|
} |