mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 04:12:10 +03:00
* feat(providers): add Freepik (Magnific Mystic) image generation provider (#6654) Adds an official, API-key-based Freepik image-gen provider using the Mystic endpoint (POST /v1/ai/mystic -> async task_id -> GET /v1/ai/mystic/{id} polling), modeled on the existing leonardo.ts generationId adapter pattern. - open-sse/config/providers/registry/freepik/index.ts: new registry module (kept separate to avoid pushing the frozen imageRegistry.ts over the file-size cap) with the 6 real Mystic style models (realism, fluid, zen, flexible, super_real, editorial_portraits) — not the "Flux/Imagen3" list from the original feature request, which independent research showed was stale. - open-sse/handlers/imageGeneration/providers/freepik.ts: submit+poll adapter; all error paths route through sanitizeErrorMessage() (Hard Rule #12), configurable poll interval/timeout via body.poll_interval_ms / poll_timeout_ms for fast, deterministic tests. - Registered in providers.ts (IMAGE_ONLY_PROVIDER_IDS) and apikey/specialty-media.ts (catalog metadata), with the corrected free-tier note (one-time ~€5 credit, not a recurring "100/month" allotment). Drops the "100 free credits/month" and "Flux/Imagen3 selectable models" claims from the original issue - verification showed the free tier is a one-time ~€5 API credit and Imagen 3 only underlies the `fluid` style, not a separately selectable model. Domain: api.freepik.com is still live as of this writing despite Freepik's April-2026 API-docs rebrand to Magnific (docs.freepik.com -> docs.magnific.com); noted inline for future re-verification. Closes #6654 * test: align APIKEY_PROVIDERS count to 171 after freepik + release merge (#7597)
164 lines
5.9 KiB
TypeScript
164 lines
5.9 KiB
TypeScript
import test from "node:test";
|
|
import assert from "node:assert/strict";
|
|
import dns from "node:dns";
|
|
|
|
import { handleImageGeneration } from "../../open-sse/handlers/imageGeneration.ts";
|
|
import { IMAGE_PROVIDERS } from "../../open-sse/config/imageRegistry.ts";
|
|
import { APIKEY_PROVIDERS } from "../../src/shared/constants/providers.ts";
|
|
import { IMAGE_ONLY_PROVIDER_IDS } from "../../src/shared/constants/providers.ts";
|
|
|
|
// Stub DNS for fetchRemoteImage/direct-fetch DNS-rebinding guards, mirroring
|
|
// tests/unit/nanobanana-image-handler.test.ts.
|
|
const originalDnsLookup = dns.promises.lookup;
|
|
(dns.promises as { lookup: unknown }).lookup = (async (
|
|
_hostname: string,
|
|
options?: { all?: boolean }
|
|
) => {
|
|
const record = { address: "203.0.113.1", family: 4 };
|
|
return options && options.all ? [record] : record;
|
|
}) as typeof dns.promises.lookup;
|
|
process.on("exit", () => {
|
|
(dns.promises as { lookup: unknown }).lookup = originalDnsLookup;
|
|
});
|
|
|
|
test("freepik provider is registered (registry shape)", () => {
|
|
assert.ok(APIKEY_PROVIDERS.freepik, "freepik should be in APIKEY_PROVIDERS");
|
|
assert.equal(APIKEY_PROVIDERS.freepik.id, "freepik");
|
|
assert.ok(IMAGE_ONLY_PROVIDER_IDS.has("freepik"), "freepik should be in IMAGE_ONLY_PROVIDER_IDS");
|
|
|
|
const provider = IMAGE_PROVIDERS.freepik;
|
|
assert.ok(provider, "freepik should be in IMAGE_PROVIDERS");
|
|
assert.equal(provider.format, "freepik-image");
|
|
assert.equal(provider.authType, "apikey");
|
|
assert.equal(provider.authHeader, "x-freepik-api-key");
|
|
assert.ok(provider.models.some((m) => m.id === "realism"));
|
|
assert.ok(provider.models.some((m) => m.id === "fluid"));
|
|
});
|
|
|
|
test("handleImageGeneration(freepik): async submit+poll returns b64_json payload", async () => {
|
|
const originalFetch = globalThis.fetch;
|
|
let pollCount = 0;
|
|
|
|
globalThis.fetch = (async (url: string, options: { headers?: Record<string, string>; body?: string } = {}) => {
|
|
const u = String(url);
|
|
|
|
if (u === "https://api.freepik.com/v1/ai/mystic") {
|
|
assert.equal(options.headers?.["x-freepik-api-key"], "test-key");
|
|
const parsed = JSON.parse(options.body as string);
|
|
assert.equal(parsed.prompt, "a red panda astronaut");
|
|
assert.equal(parsed.model, "realism");
|
|
return new Response(
|
|
JSON.stringify({ data: { task_id: "task-freepik-1", status: "CREATED" } }),
|
|
{ status: 200, headers: { "content-type": "application/json" } }
|
|
);
|
|
}
|
|
|
|
if (u === "https://api.freepik.com/v1/ai/mystic/task-freepik-1") {
|
|
pollCount += 1;
|
|
if (pollCount < 2) {
|
|
return new Response(
|
|
JSON.stringify({ data: { task_id: "task-freepik-1", status: "IN_PROGRESS" } }),
|
|
{ status: 200, headers: { "content-type": "application/json" } }
|
|
);
|
|
}
|
|
return new Response(
|
|
JSON.stringify({
|
|
data: {
|
|
task_id: "task-freepik-1",
|
|
status: "COMPLETED",
|
|
generated: ["https://cdn.example.com/freepik-result.png"],
|
|
},
|
|
}),
|
|
{ status: 200, headers: { "content-type": "application/json" } }
|
|
);
|
|
}
|
|
|
|
if (u === "https://cdn.example.com/freepik-result.png") {
|
|
return new Response(new Uint8Array([0x89, 0x50, 0x4e, 0x47]), { status: 200 });
|
|
}
|
|
|
|
throw new Error(`Unexpected URL: ${u}`);
|
|
}) as typeof fetch;
|
|
|
|
try {
|
|
const result = await handleImageGeneration({
|
|
body: {
|
|
model: "freepik/realism",
|
|
prompt: "a red panda astronaut",
|
|
poll_interval_ms: 1,
|
|
},
|
|
credentials: { apiKey: "test-key" },
|
|
log: null,
|
|
});
|
|
|
|
assert.equal(result.success, true);
|
|
assert.equal(result.data.data.length, 1);
|
|
assert.equal(result.data.data[0].b64_json, "iVBORw==");
|
|
assert.equal(pollCount, 2);
|
|
} finally {
|
|
globalThis.fetch = originalFetch;
|
|
}
|
|
});
|
|
|
|
test("handleImageGeneration(freepik): FAILED status returns sanitized 502 error", async () => {
|
|
const originalFetch = globalThis.fetch;
|
|
|
|
globalThis.fetch = (async (url: string) => {
|
|
const u = String(url);
|
|
if (u === "https://api.freepik.com/v1/ai/mystic") {
|
|
return new Response(JSON.stringify({ data: { task_id: "task-fail", status: "CREATED" } }), {
|
|
status: 200,
|
|
headers: { "content-type": "application/json" },
|
|
});
|
|
}
|
|
if (u === "https://api.freepik.com/v1/ai/mystic/task-fail") {
|
|
return new Response(JSON.stringify({ data: { task_id: "task-fail", status: "FAILED" } }), {
|
|
status: 200,
|
|
headers: { "content-type": "application/json" },
|
|
});
|
|
}
|
|
throw new Error(`Unexpected URL: ${u}`);
|
|
}) as typeof fetch;
|
|
|
|
try {
|
|
const result = await handleImageGeneration({
|
|
body: { model: "freepik/realism", prompt: "broken prompt", poll_interval_ms: 1 },
|
|
credentials: { apiKey: "test-key" },
|
|
log: null,
|
|
});
|
|
|
|
assert.equal(result.success, false);
|
|
assert.equal(result.status, 502);
|
|
assert.match(result.error, /Freepik Mystic image generation failed/);
|
|
// Hard Rule #12: error responses must never leak a raw stack trace / file path.
|
|
assert.ok(!result.error.includes("at /"));
|
|
} finally {
|
|
globalThis.fetch = originalFetch;
|
|
}
|
|
});
|
|
|
|
test("handleImageGeneration(freepik): submit error response is sanitized, not raw upstream body", async () => {
|
|
const originalFetch = globalThis.fetch;
|
|
|
|
globalThis.fetch = (async () => {
|
|
// Simulate an upstream error body containing something that looks like a
|
|
// stack trace / absolute source path, to prove sanitizeErrorMessage runs.
|
|
const stackyBody = "Error: boom\n at /srv/app/handlers/mystic.ts:42:10";
|
|
return new Response(stackyBody, { status: 500 });
|
|
}) as typeof fetch;
|
|
|
|
try {
|
|
const result = await handleImageGeneration({
|
|
body: { model: "freepik/realism", prompt: "x" },
|
|
credentials: { apiKey: "test-key" },
|
|
log: null,
|
|
});
|
|
|
|
assert.equal(result.success, false);
|
|
assert.equal(result.status, 500);
|
|
assert.ok(!result.error.includes("/srv/app/handlers/mystic.ts"));
|
|
} finally {
|
|
globalThis.fetch = originalFetch;
|
|
}
|
|
});
|