X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=server%2Fcontrollers%2Fdownload.ts;h=4293a32e2be5b8a815a5e5701bcc14cc886e03f6;hb=b0c43e36dbdc2c964f6828a78b146faebfb75b21;hp=9a8194c5c4b3affe8083c64d326e68ab3f99e3f3;hpb=eebd9838f067369031af9770b899f75f30810549;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/controllers/download.ts b/server/controllers/download.ts index 9a8194c5c..4293a32e2 100644 --- a/server/controllers/download.ts +++ b/server/controllers/download.ts @@ -41,7 +41,12 @@ export { async function downloadTorrent (req: express.Request, res: express.Response) { const result = await VideosTorrentCache.Instance.getFilePath(req.params.filename) - if (!result) return res.sendStatus(HttpStatusCode.NOT_FOUND_404) + if (!result) { + return res.fail({ + status: HttpStatusCode.NOT_FOUND_404, + message: 'Torrent file not found' + }) + } const allowParameters = { torrentPath: result.path, downloadName: result.downloadName } @@ -60,7 +65,12 @@ async function downloadVideoFile (req: express.Request, res: express.Response) { const video = res.locals.videoAll const videoFile = getVideoFile(req, video.VideoFiles) - if (!videoFile) return res.status(HttpStatusCode.NOT_FOUND_404).end() + if (!videoFile) { + return res.fail({ + status: HttpStatusCode.NOT_FOUND_404, + message: 'Video file not found' + }) + } const allowParameters = { video, videoFile } @@ -81,7 +91,12 @@ async function downloadHLSVideoFile (req: express.Request, res: express.Response if (!streamingPlaylist) return res.status(HttpStatusCode.NOT_FOUND_404).end const videoFile = getVideoFile(req, streamingPlaylist.VideoFiles) - if (!videoFile) return res.status(HttpStatusCode.NOT_FOUND_404).end() + if (!videoFile) { + return res.fail({ + status: HttpStatusCode.NOT_FOUND_404, + message: 'Video file not found' + }) + } const allowParameters = { video, streamingPlaylist, videoFile } @@ -131,9 +146,11 @@ function isVideoDownloadAllowed (_object: { function checkAllowResult (res: express.Response, allowParameters: any, result?: AllowedResult) { if (!result || result.allowed !== true) { logger.info('Download is not allowed.', { result, allowParameters }) - res.status(HttpStatusCode.FORBIDDEN_403) - .json({ error: result?.errorMessage || 'Refused download' }) + res.fail({ + status: HttpStatusCode.FORBIDDEN_403, + message: result?.errorMessage || 'Refused download' + }) return false }