PeerTube/server/lib/uploadx.ts

23 lines
500 B
TypeScript
Raw Normal View History

import express from 'express'
import { getResumableUploadPath } from '@server/helpers/upload'
import { Uploadx } from '@uploadx/core'
2021-12-17 15:49:52 +01:00
const uploadx = new Uploadx({
directory: getResumableUploadPath(),
2022-04-19 11:44:03 +02:00
expiration: { maxAge: undefined, rolling: true },
2021-12-17 15:49:52 +01:00
// Could be big with thumbnails/previews
2022-01-18 09:29:46 +01:00
maxMetadataSize: '10MB',
2022-04-19 11:44:03 +02:00
2022-01-18 09:29:46 +01:00
userIdentifier: (_, res: express.Response) => {
if (!res.locals.oauth) return undefined
return res.locals.oauth.token.user.id + ''
}
2021-12-17 15:49:52 +01:00
})
export {
uploadx
}