forked from mfts/papermark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvert-pdf-to-image.ts
293 lines (267 loc) · 8.23 KB
/
convert-pdf-to-image.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
import { client } from "@/trigger";
import { eventTrigger, retry } from "@trigger.dev/sdk";
import { z } from "zod";
import { getFile } from "@/lib/files/get-file";
import prisma from "@/lib/prisma";
client.defineJob({
id: "convert-pdf-to-image",
name: "Convert PDF to Image",
version: "0.0.1",
trigger: eventTrigger({
name: "document.uploaded",
schema: z.object({
documentVersionId: z.string(),
versionNumber: z.number().int().optional(),
documentId: z.string().optional(),
teamId: z.string().optional(),
}),
}),
run: async (payload, io, ctx) => {
const { documentVersionId } = payload;
// STATUS: initialized status
const processingDocumentStatus = await io.createStatus(
"processing-document",
{
//the label is compulsory on this first call
label: "Processing document",
//state is optional
state: "loading",
//data is an optional object. the values can be any type that is JSON serializable
data: {
text: "Processing document...",
progress: 0,
currentPage: 0,
numPages: undefined,
},
},
);
// 1. get file url from document version
const documentUrl = await io.runTask("get-document-url", async () => {
return prisma.documentVersion.findUnique({
where: {
id: documentVersionId,
},
select: {
file: true,
storageType: true,
numPages: true,
},
});
});
// if documentUrl is null, log error and return
if (!documentUrl) {
await io.logger.error("File not found", { payload });
await processingDocumentStatus.update("error", {
//set data, this overrides the previous value
state: "failure",
data: {
text: "Document not found",
progress: 0,
currentPage: 0,
numPages: 0,
},
});
return;
}
// 2. get signed url from file
const signedUrl = await io.runTask("get-signed-url", async () => {
return await getFile({
type: documentUrl.storageType,
data: documentUrl.file,
});
});
if (!signedUrl) {
await io.logger.error("Failed to get signed url", { payload });
await processingDocumentStatus.update("error-signed-url", {
//set data, this overrides the previous value
state: "failure",
data: {
text: "Failed to retrieve document",
progress: 0,
currentPage: 0,
numPages: 0,
},
});
return;
}
let numPages = documentUrl.numPages;
// skip if the numPages are already defined
if (!numPages) {
// 3. send file to api/convert endpoint in a task and get back number of pages
const muDocument = await io.runTask("get-number-of-pages", async () => {
const response = await fetch(
`${process.env.NEXT_PUBLIC_BASE_URL}/api/mupdf/get-pages`,
{
method: "POST",
body: JSON.stringify({ url: documentUrl.file }),
headers: {
"Content-Type": "application/json",
},
},
);
await io.logger.info("log response", { response });
const { numPages } = (await response.json()) as { numPages: number };
return { numPages };
});
if (!muDocument || muDocument.numPages < 1) {
await io.logger.error("Failed to get number of pages", { payload });
return;
}
numPages = muDocument.numPages;
}
// 4. iterate through pages and upload to blob in a task
let currentPage = 0;
let conversionWithoutError = true;
for (var i = 0; i < numPages; ++i) {
if (!conversionWithoutError) {
break;
}
// increment currentPage
currentPage = i + 1;
await io.runTask(
`upload-page-${currentPage}`,
async () => {
// send page number to api/convert-page endpoint in a task and get back page img url
const response = await fetch(
`${process.env.NEXT_PUBLIC_BASE_URL}/api/mupdf/convert-page`,
{
method: "POST",
body: JSON.stringify({
documentVersionId: documentVersionId,
pageNumber: currentPage,
url: signedUrl,
teamId: payload.teamId,
}),
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${process.env.INTERNAL_API_KEY}`,
},
},
);
if (!response.ok) {
throw new Error("Failed to convert page");
}
const { documentPageId } = (await response.json()) as {
documentPageId: string;
};
await io.logger.info(
`Created document page for page ${currentPage}:`,
{
documentPageId,
payload,
},
);
return { documentPageId, payload };
},
// { retry: retry.standardBackoff },
{
// retry: {
// limit: 3,
// minTimeoutInMs: 1000,
// maxTimeoutInMs: 10000,
// factor: 2,
// randomize: true,
// },
},
(error, task) => {
conversionWithoutError = false;
return { error: error as Error };
},
);
// STATUS: retrieved-url
await processingDocumentStatus.update(`processing-page-${currentPage}`, {
//set data, this overrides the previous value
data: {
text: `${currentPage} / ${numPages} pages processed`,
progress: currentPage / numPages!,
currentPage: currentPage,
numPages: numPages,
},
});
}
if (!conversionWithoutError) {
await io.logger.error("Failed to process pages", { payload });
// STATUS: error with processing document
await processingDocumentStatus.update("error-processing-pages", {
//set data, this overrides the previous value
state: "failure",
data: {
text: `Error processing page ${currentPage} of ${numPages}`,
progress: currentPage / numPages!,
currentPage: currentPage,
numPages: numPages,
},
});
return;
}
// 5. after all pages are uploaded, update document version to hasPages = true
await io.runTask("enable-pages", async () => {
return prisma.documentVersion.update({
where: {
id: documentVersionId,
},
data: {
hasPages: true,
isPrimary: true,
},
select: {
id: true,
hasPages: true,
isPrimary: true,
},
});
});
// STATUS: enabled-pages
await processingDocumentStatus.update("enabled-pages", {
//set data, this overrides the previous value
state: "loading",
data: {
text: "Enabling pages...",
progress: 1,
},
});
const { versionNumber, documentId } = payload;
if (versionNumber) {
// after all pages are uploaded, update all other versions to be not primary
await io.runTask("update-version-number", async () => {
return prisma.documentVersion.updateMany({
where: {
documentId: documentId,
versionNumber: {
not: versionNumber,
},
},
data: {
isPrimary: false,
},
});
});
}
// STATUS: enabled-pages
await processingDocumentStatus.update("revalidate-links", {
//set data, this overrides the previous value
state: "loading",
data: {
text: "Revalidating link...",
progress: 1,
},
});
// initialize link revalidation for all the document's links
await io.runTask("initiate-link-revalidation", async () => {
await fetch(
`${process.env.NEXTAUTH_URL}/api/revalidate?secret=${process.env.REVALIDATE_TOKEN}&documentId=${documentId}`,
);
});
// STATUS: success
await processingDocumentStatus.update("success", {
state: "success",
data: {
text: "Processing complete",
},
});
return {
success: true,
message: "Successfully converted PDF to images",
};
},
});