mirror of https://github.com/Chocobozzz/PeerTube
Fix torrent import on windows
parent
be6343d26e
commit
edaf5b862a
|
@ -5,10 +5,10 @@ function isVideoCaptionLanguageValid (value: any) {
|
||||||
return exists(value) && VIDEO_LANGUAGES[value] !== undefined
|
return exists(value) && VIDEO_LANGUAGES[value] !== undefined
|
||||||
}
|
}
|
||||||
|
|
||||||
const videoCaptionTypes = Object.keys(MIMETYPES.VIDEO_CAPTIONS.MIMETYPE_EXT)
|
const videoCaptionTypesRegex = Object.keys(MIMETYPES.VIDEO_CAPTIONS.MIMETYPE_EXT)
|
||||||
.concat([ 'application/octet-stream' ]) // MacOS sends application/octet-stream ><
|
.concat([ 'application/octet-stream' ]) // MacOS sends application/octet-stream
|
||||||
.map(m => `(${m})`)
|
.map(m => `(${m})`)
|
||||||
const videoCaptionTypesRegex = videoCaptionTypes.join('|')
|
.join('|')
|
||||||
function isVideoCaptionFile (files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[], field: string) {
|
function isVideoCaptionFile (files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[], field: string) {
|
||||||
return isFileValid(files, videoCaptionTypesRegex, field, CONSTRAINTS_FIELDS.VIDEO_CAPTIONS.CAPTION_FILE.FILE_SIZE.max)
|
return isFileValid(files, videoCaptionTypesRegex, field, CONSTRAINTS_FIELDS.VIDEO_CAPTIONS.CAPTION_FILE.FILE_SIZE.max)
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,8 +23,10 @@ function isVideoImportStateValid (value: any) {
|
||||||
return exists(value) && VIDEO_IMPORT_STATES[value] !== undefined
|
return exists(value) && VIDEO_IMPORT_STATES[value] !== undefined
|
||||||
}
|
}
|
||||||
|
|
||||||
const videoTorrentImportTypes = Object.keys(MIMETYPES.TORRENT.MIMETYPE_EXT).map(m => `(${m})`)
|
const videoTorrentImportRegex = Object.keys(MIMETYPES.TORRENT.MIMETYPE_EXT)
|
||||||
const videoTorrentImportRegex = videoTorrentImportTypes.join('|')
|
.concat([ 'application/octet-stream' ]) // MacOS sends application/octet-stream
|
||||||
|
.map(m => `(${m})`)
|
||||||
|
.join('|')
|
||||||
function isVideoImportTorrentFile (files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[]) {
|
function isVideoImportTorrentFile (files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[]) {
|
||||||
return isFileValid(files, videoTorrentImportRegex, 'torrentfile', CONSTRAINTS_FIELDS.VIDEO_IMPORTS.TORRENT_FILE.FILE_SIZE.max, true)
|
return isFileValid(files, videoTorrentImportRegex, 'torrentfile', CONSTRAINTS_FIELDS.VIDEO_IMPORTS.TORRENT_FILE.FILE_SIZE.max, true)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue