You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
52 lines
1.3 KiB
import { NextResponse } from "next/server";
|
|
|
|
// Default to node-banana-pro hosted service
|
|
const COMMUNITY_WORKFLOWS_API_URL =
|
|
process.env.COMMUNITY_WORKFLOWS_API_URL ||
|
|
"https://nodebananapro.com/api/public/community-workflows";
|
|
|
|
/**
|
|
* GET: List all community workflows from the remote API
|
|
*
|
|
* This proxies to the node-banana-pro hosted service which stores
|
|
* community workflows in R2 storage.
|
|
*/
|
|
export async function GET() {
|
|
try {
|
|
const response = await fetch(COMMUNITY_WORKFLOWS_API_URL, {
|
|
headers: {
|
|
Accept: "application/json",
|
|
},
|
|
// Cache for 5 minutes
|
|
next: { revalidate: 300 },
|
|
});
|
|
|
|
if (!response.ok) {
|
|
console.error(
|
|
"Error fetching community workflows:",
|
|
response.status,
|
|
response.statusText
|
|
);
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
error: "Failed to fetch community workflows",
|
|
},
|
|
{ status: response.status }
|
|
);
|
|
}
|
|
|
|
const data = await response.json();
|
|
|
|
return NextResponse.json(data);
|
|
} catch (error) {
|
|
console.error("Error listing community workflows:", error);
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
error: "Failed to list community workflows",
|
|
},
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
}
|
|
|