mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import { writeFile } from "node:fs/promises";
|
|
import { join } from "node:path";
|
|
import { pdfTextPy } from "@snapotter/doc-engine";
|
|
import type { FastifyInstance } from "fastify";
|
|
import { z } from "zod";
|
|
import { createToolRoute } from "../tool-factory.js";
|
|
|
|
const settingsSchema = z.object({});
|
|
|
|
export function registerPdfToText(app: FastifyInstance) {
|
|
createToolRoute(app, {
|
|
toolId: "pdf-to-text",
|
|
settingsSchema,
|
|
process: async () => {
|
|
throw new Error("pdf-to-text is v2-only");
|
|
},
|
|
processV2: async (ctx) => {
|
|
const input = ctx.inputs[0];
|
|
const base = input.filename.replace(/\.[^.]+$/, "");
|
|
const inPath = join(ctx.scratchDir, `in-${input.filename.replace(/[^A-Za-z0-9._-]/g, "_")}`);
|
|
await writeFile(inPath, input.buffer);
|
|
|
|
const outPath = join(ctx.scratchDir, `${base}.txt`);
|
|
ctx.report(10, "Extracting text");
|
|
const result = await pdfTextPy(inPath, outPath);
|
|
ctx.report(90, "Done");
|
|
|
|
return {
|
|
scratchPath: outPath,
|
|
filename: `${base}.txt`,
|
|
contentType: "text/plain",
|
|
resultPayload: { chars: result.chars },
|
|
};
|
|
},
|
|
});
|
|
}
|