generated from leandrosimoes/ls-node-cli-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
438 lines (372 loc) · 10.7 KB
/
index.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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
import { glob } from 'glob'
import fetch from 'node-fetch'
import fs from 'node:fs'
import path from 'node:path'
import PQueue from 'p-queue'
import { MOISES_API_BASE_URL } from './src/constants/index.js'
import {
sleep,
extractFileExtensionFromFileUrl,
ensureFolderExists,
} from './src/utils/index.js'
export type ProcessStatus =
| 'PENDING'
| 'PROCESSING'
| 'SUCCEEDED'
| 'FAILED'
| 'ABORTED'
export type ProcessFolderOptions = {
apiKey: string
workflowId: string
inputFolder: string
outputFolder: string
maxConcurrencyNumber?: number
abortSignal?: AbortSignal
jobMonitorInterval?: number
onProgress?: (
file: string,
status: JobStatus | ProcessStatus,
report: any
) => Promise<void>
onLog?(message: string): Promise<void>
onError?(message: string): Promise<void>
}
export type ProcessFileOptions = {
apiKey: string
workflowId: string
filePath: string
outputFolder: string
jobMonitorInterval?: number
onProgress?: (
file: string,
status: JobStatus | ProcessStatus,
report: any
) => Promise<void>
onLog?(message: string): Promise<void>
onError?(message: string): Promise<void>
}
export type JobStatus =
| 'SUCCEEDED'
| 'FAILED'
| 'PENDING'
| 'PROCESSING'
| 'DELETED'
| 'QUEUED'
| 'CANCELLED'
| 'STARTED'
export type DownloadResult = {
[key: string]: string
}
type JobData = {
id: string
name: string
status: JobStatus
workflow: string
params: {
inputUrl: string
}
result: {
[key: string]: string
outputUrl: string
}
}
type APICallResponse = {
uploadUrl: string
downloadUrl: string
id: string
} & JobData
interface Report {
[key: string]: {
status: JobStatus
}
}
type ReportBreakdown = {
PENDING: string[]
PROCESSING: string[]
SUCCEEDED: string[]
DELETED: string[]
QUEUED: string[]
CANCELLED: string[]
FAILED: string[]
STARTED: string[]
}
type ApiCallOptions = {
method: string
path: string
data?: any
apiKey: string
}
let onLogInternal = (message: string): Promise<void> => {
return new Promise((resolve) => {
console.log(message)
resolve()
})
}
let onErrorInternal = (message: string): Promise<void> => {
return new Promise((resolve) => {
console.error(message)
resolve()
})
}
let onProgressInternal = (
file: string,
status: JobStatus | ProcessStatus,
reportBreakdown: ReportBreakdown
): Promise<void> => {
return new Promise((resolve) => {
console.log(file, status, reportBreakdown)
resolve()
})
}
async function apiCall({ method, path, data = {}, apiKey }: ApiCallOptions) {
const url = `${MOISES_API_BASE_URL}${path}`
const headers = {
'Content-Type': 'application/json',
Authorization: apiKey,
}
const response = await fetch(url, {
method,
headers,
body: method === 'GET' ? undefined : JSON.stringify(data),
})
if (response.status !== 200) {
throw new Error(response.statusText)
}
const json = await response.json()
return json as APICallResponse
}
async function uploadFile(fileLocation: string, apiKey: string) {
await onLogInternal(`Uploading file ${fileLocation} ...`)
const { uploadUrl, downloadUrl } = await apiCall({
method: 'GET',
path: '/api/upload',
apiKey,
})
await fetch(uploadUrl, {
method: 'PUT',
body: fs.createReadStream(fileLocation),
})
return downloadUrl
}
async function downloadFile(url: string, fileDestination: string) {
await onLogInternal(`Downloading file ${url} ...`)
await ensureFolderExists(fileDestination)
const response = await fetch(url)
const buffer = Buffer.from(await response.arrayBuffer())
await fs.promises.writeFile(fileDestination, buffer)
}
async function addJob(
name: string,
workflowId: string,
params = {},
apiKey: string
) {
const { id } = await apiCall({
method: 'POST',
path: '/api/job',
data: {
name,
workflow: workflowId,
params,
},
apiKey,
})
return id
}
const report: Report = {}
const results: DownloadResult[] = []
async function reportProgress(file: string, status: JobStatus) {
try {
await onLogInternal(`Progress: File ${file} -> ${status}`)
report[file] = { status }
const reportBreakdown: ReportBreakdown = {
PENDING: [],
PROCESSING: [],
SUCCEEDED: [],
FAILED: [],
DELETED: [],
QUEUED: [],
CANCELLED: [],
STARTED: [],
}
for (const filePath in report) {
reportBreakdown[report[filePath].status].push(filePath)
}
await onProgressInternal(file, status, reportBreakdown)
} catch (error: any) {
await onErrorInternal(error)
}
}
async function queueListener(
apiKey: string,
workflowId: string,
file: string,
outputFolder: string,
jobMonitorInterval: number
) {
try {
await processFile({
apiKey,
workflowId: workflowId,
filePath: file,
outputFolder: outputFolder,
jobMonitorInterval,
})
} catch (error: any) {
await onErrorInternal(error)
await reportProgress(file, 'FAILED')
}
}
async function addToQueue(
apiKey: string,
workflowId: string,
queue: PQueue,
file: string,
outputFolder: string,
jobMonitorInterval: number
) {
try {
await reportProgress(file, 'PENDING')
queue.add(
async () =>
await queueListener(
apiKey,
workflowId,
file,
outputFolder,
jobMonitorInterval
)
)
} catch (error: any) {
await onErrorInternal(error)
}
}
export async function processFile({
apiKey,
workflowId,
filePath,
outputFolder,
jobMonitorInterval,
onProgress,
onLog,
onError,
}: ProcessFileOptions): Promise<DownloadResult> {
if (!apiKey) throw new Error('API Key is required')
if (!workflowId) throw new Error('Workflow ID is required')
if (onProgress) onProgressInternal = onProgress
if (onLog) onLogInternal = onLog
if (onError) onErrorInternal = onError
await reportProgress(filePath, 'PROCESSING')
await onLogInternal(`Processing file: ${filePath} ...`)
const name = path.basename(filePath).split('.').shift() ?? 'output'
const inputUrl = await uploadFile(filePath, apiKey)
const jobId = await addJob(name, workflowId, { inputUrl }, apiKey)
const jobData = await waitForJobCompletion(
apiKey,
jobId,
jobMonitorInterval
)
const result = await downloadJobResults(apiKey, jobData, outputFolder)
results.push(result)
await deleteJob(apiKey, jobId)
await reportProgress(filePath, 'SUCCEEDED')
return result
}
export function processFolder({
apiKey,
workflowId,
inputFolder,
outputFolder,
maxConcurrencyNumber = 5,
abortSignal,
jobMonitorInterval = 1000,
onProgress,
onLog,
onError,
}: ProcessFolderOptions): Promise<DownloadResult[]> {
if (onProgress) onProgressInternal = onProgress
if (onLog) onLogInternal = onLog
if (onError) onErrorInternal = onError
// This is needed because glob doesn't work with Windows paths
if (process.platform === 'win32') {
inputFolder = inputFolder.replace(/\\/g, '/')
outputFolder = outputFolder.replace(/\\/g, '/')
}
return new Promise(async (resolve) => {
await onLogInternal(
`Processing folder: ${inputFolder} -> ${outputFolder} ...`
)
const queue = new PQueue({ concurrency: maxConcurrencyNumber })
if (abortSignal) {
abortSignal.addEventListener('abort', async () => {
queue.clear()
await queue.onIdle()
await onLogInternal(`Queue aborted`)
resolve(results)
})
}
const globOptions = `${inputFolder}/*.@(mp3|wav|m4a)`
const files = await glob(globOptions, {})
for (const file of files) {
await addToQueue(
apiKey,
workflowId,
queue,
file,
outputFolder,
jobMonitorInterval
)
}
await queue.onIdle()
resolve(results)
})
}
async function getJob(apiKey: string, id: string) {
return apiCall({ method: 'GET', path: `/api/job/${id}`, apiKey })
}
async function deleteJob(apiKey: string, id: string) {
return apiCall({ method: 'DELETE', path: `/api/job/${id}`, apiKey })
}
async function waitForJobCompletion(
apiKey: string,
id: string,
jobMonitorInterval = 1000
): Promise<APICallResponse> {
const job = await getJob(apiKey, id)
if (job.status === 'SUCCEEDED' || job.status === 'FAILED') {
await onLogInternal(`Progress: Job ${job} -> ${job.status}`)
return job
}
await sleep(jobMonitorInterval)
return await waitForJobCompletion(apiKey, id, jobMonitorInterval)
}
async function downloadJobResults(
apiKey: string,
jobIdOrJobData: string | JobData,
outputFolder: string
) {
let job: JobData =
typeof jobIdOrJobData === 'string'
? await getJob(apiKey, jobIdOrJobData)
: jobIdOrJobData
if (job.status === 'QUEUED' || job.status === 'STARTED') {
throw new Error('Cant download job results: Job is not completed')
}
if (job.status === 'FAILED') {
throw new Error('Cant download job results: Job has failed')
}
const downloads = []
const downloadResult: DownloadResult = {}
for (const result in job.result) {
const value = job.result[result]
if (value.startsWith('https://')) {
const downloadDestination = `${outputFolder}/${result}.${extractFileExtensionFromFileUrl(
value
)}`
downloads.push(downloadFile(value, downloadDestination))
downloadResult[result] = downloadDestination
}
}
await Promise.all(downloads)
return downloadResult
}