mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
AI sidecar failures reached Sentry as 'Error: Error': the scrubber type-onlys plain Errors and the tool wrappers threw them from result.error. The bridge now exports toSidecarError(), wrapping the sidecar reason in a SafeError (memory-allocation text classifies as operational, the rest as bug); all 14 wrappers use it, plus the dispatcher crash/stdin/spawn rejection paths and parseStdoutJson. toBgRemovalError from #535 delegates to the shared helper. On the web side, DOMExceptions report their specific name via err.name, so the NATIVE_ERRORS allowlist dropped the whole family's browser-authored messages. It now carries the full WebIDL DOMException name table; messages still pass through url/path redaction. Bridge-mocking test files switched to importOriginal passthrough mocks.
54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
import { readFile, writeFile } from "node:fs/promises";
|
|
import { join } from "node:path";
|
|
import sharp from "sharp";
|
|
import {
|
|
type ProgressCallback,
|
|
parseStdoutJson,
|
|
runPythonWithProgress,
|
|
toSidecarError,
|
|
} from "./bridge.js";
|
|
|
|
export interface ColorizeOptions {
|
|
intensity?: number;
|
|
model?: string;
|
|
}
|
|
|
|
export interface ColorizeResult {
|
|
buffer: Buffer;
|
|
width: number;
|
|
height: number;
|
|
method: string;
|
|
}
|
|
|
|
export async function colorize(
|
|
inputBuffer: Buffer,
|
|
outputDir: string,
|
|
options: ColorizeOptions = {},
|
|
onProgress?: ProgressCallback,
|
|
): Promise<ColorizeResult> {
|
|
const inputPath = join(outputDir, "input_colorize.png");
|
|
const outputPath = join(outputDir, "output_colorize.png");
|
|
|
|
const pngBuffer = await sharp(inputBuffer).png().toBuffer();
|
|
await writeFile(inputPath, pngBuffer);
|
|
const { stdout } = await runPythonWithProgress(
|
|
"colorize.py",
|
|
[inputPath, outputPath, JSON.stringify(options)],
|
|
{ onProgress },
|
|
);
|
|
|
|
const result = parseStdoutJson(stdout);
|
|
if (!result.success) {
|
|
throw toSidecarError(result.error, "Colorization failed");
|
|
}
|
|
|
|
const actualOutputPath = result.output_path || outputPath;
|
|
const buffer = await readFile(actualOutputPath);
|
|
return {
|
|
buffer,
|
|
width: result.width,
|
|
height: result.height,
|
|
method: result.method ?? "unknown",
|
|
};
|
|
}
|