mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
Complete rebrand from Stirling-Image to ashim following the project move to https://github.com/ashim-hq/ashim. Changes across 117 files: - Package scope: @stirling-image/* → @ashim/* - GitHub URLs: stirling-image/stirling-image → ashim-hq/ashim - Docker Hub: stirlingimage/stirling-image → ashimhq/ashim - GitHub Pages: stirling-image.github.io → ashim-hq.github.io - All branding text: "Stirling Image" → "ashim" - Docker service/volumes/user: stirling → ashim - Database: stirling.db → ashim.db - localStorage keys: stirling-token → ashim-token - Environment variables: STIRLING_GPU → ASHIM_GPU - Python cache dirs: .cache/stirling-image → .cache/ashim - SVG filter IDs, test prefixes, and all other references
215 lines
7.6 KiB
TypeScript
215 lines
7.6 KiB
TypeScript
import { randomUUID } from "node:crypto";
|
|
import { writeFile } from "node:fs/promises";
|
|
import { basename, join } from "node:path";
|
|
import { restorePhoto } from "@ashim/ai";
|
|
import type { FastifyInstance, FastifyReply, FastifyRequest } from "fastify";
|
|
import sharp from "sharp";
|
|
import { z } from "zod";
|
|
import { autoOrient } from "../../lib/auto-orient.js";
|
|
import { validateImageBuffer } from "../../lib/file-validation.js";
|
|
import { decodeHeic } from "../../lib/heic-converter.js";
|
|
import { resolveOutputFormat } from "../../lib/output-format.js";
|
|
import { createWorkspace } from "../../lib/workspace.js";
|
|
import { updateSingleFileProgress } from "../progress.js";
|
|
import { registerToolProcessFn } from "../tool-factory.js";
|
|
|
|
const settingsSchema = z.object({
|
|
mode: z.enum(["auto", "light", "heavy"]).default("auto"),
|
|
scratchRemoval: z.boolean().default(true),
|
|
faceEnhancement: z.boolean().default(true),
|
|
fidelity: z.number().min(0).max(1).default(0.7),
|
|
denoise: z.boolean().default(true),
|
|
denoiseStrength: z.number().min(0).max(100).default(40),
|
|
colorize: z.boolean().default(false),
|
|
});
|
|
|
|
/**
|
|
* AI photo restoration route.
|
|
* Multi-step pipeline: scratch repair, face enhancement, denoising,
|
|
* optional colorization.
|
|
*/
|
|
export function registerRestorePhoto(app: FastifyInstance) {
|
|
app.post("/api/v1/tools/restore-photo", async (request: FastifyRequest, reply: FastifyReply) => {
|
|
let fileBuffer: Buffer | null = null;
|
|
let filename = "image";
|
|
let settingsRaw: string | null = null;
|
|
let clientJobId: string | null = null;
|
|
|
|
try {
|
|
const parts = request.parts();
|
|
for await (const part of parts) {
|
|
if (part.type === "file") {
|
|
const chunks: Buffer[] = [];
|
|
for await (const chunk of part.file) {
|
|
chunks.push(chunk);
|
|
}
|
|
fileBuffer = Buffer.concat(chunks);
|
|
filename = basename(part.filename ?? "image");
|
|
} else if (part.fieldname === "settings") {
|
|
settingsRaw = part.value as string;
|
|
} else if (part.fieldname === "clientJobId") {
|
|
clientJobId = part.value as string;
|
|
}
|
|
}
|
|
} catch (err) {
|
|
return reply.status(400).send({
|
|
error: "Failed to parse multipart request",
|
|
details: err instanceof Error ? err.message : String(err),
|
|
});
|
|
}
|
|
|
|
if (!fileBuffer || fileBuffer.length === 0) {
|
|
return reply.status(400).send({ error: "No image file provided" });
|
|
}
|
|
|
|
const validation = await validateImageBuffer(fileBuffer);
|
|
if (!validation.valid) {
|
|
return reply.status(400).send({ error: `Invalid image: ${validation.reason}` });
|
|
}
|
|
|
|
try {
|
|
const settings = settingsSchema.parse(settingsRaw ? JSON.parse(settingsRaw) : {});
|
|
|
|
request.log.info(
|
|
{ toolId: "restore-photo", imageSize: fileBuffer.length, mode: settings.mode },
|
|
"Starting photo restoration",
|
|
);
|
|
|
|
// Decode HEIC/HEIF input
|
|
if (validation.format === "heif") {
|
|
fileBuffer = await decodeHeic(fileBuffer);
|
|
}
|
|
|
|
// Auto-orient to fix EXIF rotation
|
|
fileBuffer = await autoOrient(fileBuffer);
|
|
|
|
const jobId = randomUUID();
|
|
const workspacePath = await createWorkspace(jobId);
|
|
|
|
// Save input
|
|
const inputPath = join(workspacePath, "input", filename);
|
|
await writeFile(inputPath, fileBuffer);
|
|
|
|
// Progress callback
|
|
const jobIdForProgress = clientJobId;
|
|
const onProgress = jobIdForProgress
|
|
? (percent: number, stage: string) => {
|
|
updateSingleFileProgress({
|
|
jobId: jobIdForProgress,
|
|
phase: "processing",
|
|
stage,
|
|
percent,
|
|
});
|
|
}
|
|
: undefined;
|
|
|
|
// Process with Python sidecar
|
|
const result = await restorePhoto(
|
|
fileBuffer,
|
|
join(workspacePath, "output"),
|
|
{
|
|
mode: settings.mode,
|
|
scratchRemoval: settings.scratchRemoval,
|
|
faceEnhancement: settings.faceEnhancement,
|
|
fidelity: settings.fidelity,
|
|
denoise: settings.denoise,
|
|
denoiseStrength: settings.denoiseStrength,
|
|
colorize: settings.colorize,
|
|
},
|
|
onProgress,
|
|
);
|
|
|
|
// Resolve output format to match input
|
|
const outputFormat = await resolveOutputFormat(fileBuffer, filename);
|
|
let outputBuffer = result.buffer;
|
|
|
|
// Convert from PNG (Python output) to target format
|
|
if (outputFormat.format !== "png") {
|
|
outputBuffer = await sharp(result.buffer)
|
|
.toFormat(outputFormat.format, { quality: outputFormat.quality })
|
|
.toBuffer();
|
|
}
|
|
|
|
// Save output
|
|
const ext = outputFormat.format === "jpeg" ? "jpg" : outputFormat.format;
|
|
const outputFilename = `${filename.replace(/\.[^.]+$/, "")}_restored.${ext}`;
|
|
const outputPath = join(workspacePath, "output", outputFilename);
|
|
await writeFile(outputPath, outputBuffer);
|
|
|
|
// Generate browser-compatible preview for non-previewable formats
|
|
const BROWSER_PREVIEWABLE = new Set(["png", "jpg", "jpeg", "webp", "gif", "avif", "bmp"]);
|
|
let previewUrl: string | undefined;
|
|
if (!BROWSER_PREVIEWABLE.has(ext)) {
|
|
try {
|
|
const previewBuffer = await sharp(outputBuffer).webp({ quality: 80 }).toBuffer();
|
|
const previewPath = join(workspacePath, "output", "preview.webp");
|
|
await writeFile(previewPath, previewBuffer);
|
|
previewUrl = `/api/v1/download/${jobId}/preview.webp`;
|
|
} catch {
|
|
// Non-fatal
|
|
}
|
|
}
|
|
|
|
if (clientJobId) {
|
|
updateSingleFileProgress({
|
|
jobId: clientJobId,
|
|
phase: "complete",
|
|
percent: 100,
|
|
});
|
|
}
|
|
|
|
return reply.send({
|
|
jobId,
|
|
downloadUrl: `/api/v1/download/${jobId}/${encodeURIComponent(outputFilename)}`,
|
|
previewUrl,
|
|
originalSize: fileBuffer.length,
|
|
processedSize: outputBuffer.length,
|
|
width: result.width,
|
|
height: result.height,
|
|
steps: result.steps,
|
|
scratchCoverage: result.scratchCoverage,
|
|
facesEnhanced: result.facesEnhanced,
|
|
isGrayscale: result.isGrayscale,
|
|
colorized: result.colorized,
|
|
});
|
|
} catch (err) {
|
|
request.log.error({ err, toolId: "restore-photo" }, "Photo restoration failed");
|
|
return reply.status(422).send({
|
|
error: "Photo restoration failed",
|
|
details: err instanceof Error ? err.message : "Unknown error",
|
|
});
|
|
}
|
|
});
|
|
|
|
// Register in the pipeline/batch registry
|
|
registerToolProcessFn({
|
|
toolId: "restore-photo",
|
|
settingsSchema: z.object({
|
|
mode: z.enum(["auto", "light", "heavy"]).default("auto"),
|
|
scratchRemoval: z.boolean().default(true),
|
|
faceEnhancement: z.boolean().default(true),
|
|
fidelity: z.number().min(0).max(1).default(0.7),
|
|
denoise: z.boolean().default(true),
|
|
denoiseStrength: z.number().min(0).max(100).default(40),
|
|
colorize: z.boolean().default(false),
|
|
}),
|
|
process: async (inputBuffer, settings, filename) => {
|
|
const s = settings as z.infer<typeof settingsSchema>;
|
|
const orientedBuffer = await autoOrient(inputBuffer);
|
|
const jobId = randomUUID();
|
|
const workspacePath = await createWorkspace(jobId);
|
|
const result = await restorePhoto(orientedBuffer, join(workspacePath, "output"), {
|
|
mode: s.mode,
|
|
scratchRemoval: s.scratchRemoval,
|
|
faceEnhancement: s.faceEnhancement,
|
|
fidelity: s.fidelity,
|
|
denoise: s.denoise,
|
|
denoiseStrength: s.denoiseStrength,
|
|
colorize: s.colorize,
|
|
});
|
|
const outputFilename = `${filename.replace(/\.[^.]+$/, "")}_restored.png`;
|
|
return { buffer: result.buffer, filename: outputFilename, contentType: "image/png" };
|
|
},
|
|
});
|
|
}
|