276250f0a3
* prevent multiple post-process triggering of upload-resumable * switch from 409 to 503 for upload being processed * Improve resumable upload check Co-authored-by: Chocobozzz <me@florianbigard.com>
21 lines
699 B
TypeScript
21 lines
699 B
TypeScript
import { join } from 'path'
|
|
import { JobQueue } from '@server/lib/job-queue'
|
|
import { RESUMABLE_UPLOAD_DIRECTORY } from '../initializers/constants'
|
|
|
|
function getResumableUploadPath (filename?: string) {
|
|
if (filename) return join(RESUMABLE_UPLOAD_DIRECTORY, filename)
|
|
|
|
return RESUMABLE_UPLOAD_DIRECTORY
|
|
}
|
|
|
|
function scheduleDeleteResumableUploadMetaFile (filepath: string) {
|
|
const payload = { filepath }
|
|
JobQueue.Instance.createJob({ type: 'delete-resumable-upload-meta-file', payload }, { delay: 900 * 1000 }) // executed in 15 min
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export {
|
|
getResumableUploadPath,
|
|
scheduleDeleteResumableUploadMetaFile
|
|
}
|