aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/lib/uploadx.ts
blob: 34a4461f0b8303c3cd178360fe34d39647eea692 (plain) (tree)
1
2
3
4
5
6
7



                                                               


                                          





                                                 
  



         
import express from 'express'
import { getResumableUploadPath } from '@server/helpers/upload'
import { Uploadx } from '@uploadx/core'

const uploadx = new Uploadx({
  directory: getResumableUploadPath(),
  // Could be big with thumbnails/previews
  maxMetadataSize: '10MB',
  userIdentifier: (_, res: express.Response) => {
    if (!res.locals.oauth) return undefined

    return res.locals.oauth.token.user.id + ''
  }
})

export {
  uploadx
}