X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Fwebtorrent.ts;h=b25e44fcd512bf8cc4aec3191bf8eedff20ceb62;hb=dafbad0caef873bc01c0ce43748b01641d1d8795;hp=f3e41f8d6c93b7a059761603b10ec585c33cf35b;hpb=d7a25329f9e607894d29ab342b9cb66638b56dc0;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/webtorrent.ts b/server/helpers/webtorrent.ts index f3e41f8d6..b25e44fcd 100644 --- a/server/helpers/webtorrent.ts +++ b/server/helpers/webtorrent.ts @@ -9,12 +9,12 @@ import { promisify2 } from './core-utils' import { MVideo } from '@server/typings/models/video/video' import { MVideoFile, MVideoFileRedundanciesOpt } from '@server/typings/models/video/video-file' import { isStreamingPlaylist, MStreamingPlaylistVideo } from '@server/typings/models/video/video-streaming-playlist' -import { STATIC_PATHS, WEBSERVER } from '@server/initializers/constants' +import { WEBSERVER } from '@server/initializers/constants' import * as parseTorrent from 'parse-torrent' import * as magnetUtil from 'magnet-uri' import { isArray } from '@server/helpers/custom-validators/misc' import { extractVideo } from '@server/lib/videos' -import { getTorrentFileName, getVideoFilename, getVideoFilePath } from '@server/lib/video-paths' +import { getTorrentFileName, getVideoFilePath } from '@server/lib/video-paths' const createTorrentPromise = promisify2(createTorrent) @@ -39,7 +39,7 @@ async function downloadWebTorrentVideo (target: { magnetUri: string, torrentName if (torrent.files.length !== 1) { if (timer) clearTimeout(timer) - for (let file of torrent.files) { + for (const file of torrent.files) { deleteDownloadedFile({ directoryPath, filepath: file.path }) } @@ -47,15 +47,16 @@ async function downloadWebTorrentVideo (target: { magnetUri: string, torrentName .then(() => rej(new Error('Cannot import torrent ' + torrentId + ': there are multiple files in it'))) } - file = torrent.files[ 0 ] + file = torrent.files[0] // FIXME: avoid creating another stream when https://github.com/webtorrent/webtorrent/issues/1517 is fixed const writeStream = createWriteStream(path) writeStream.on('finish', () => { if (timer) clearTimeout(timer) - return safeWebtorrentDestroy(webtorrent, torrentId, { directoryPath, filepath: file.path }, target.torrentName) + safeWebtorrentDestroy(webtorrent, torrentId, { directoryPath, filepath: file.path }, target.torrentName) .then(() => res(path)) + .catch(err => logger.error('Cannot destroy webtorrent.', { err })) }) file.createReadStream().pipe(writeStream) @@ -63,15 +64,23 @@ async function downloadWebTorrentVideo (target: { magnetUri: string, torrentName torrent.on('error', err => rej(err)) - timer = setTimeout(async () => { - return safeWebtorrentDestroy(webtorrent, torrentId, file ? { directoryPath, filepath: file.path } : undefined, target.torrentName) - .then(() => rej(new Error('Webtorrent download timeout.'))) + timer = setTimeout(() => { + const err = new Error('Webtorrent download timeout.') + + safeWebtorrentDestroy(webtorrent, torrentId, file ? { directoryPath, filepath: file.path } : undefined, target.torrentName) + .then(() => rej(err)) + .catch(destroyErr => { + logger.error('Cannot destroy webtorrent.', { err: destroyErr }) + rej(err) + }) + }, timeout) }) } async function createTorrentAndSetInfoHash (videoOrPlaylist: MVideo | MStreamingPlaylistVideo, videoFile: MVideoFile) { const video = extractVideo(videoOrPlaylist) + const { baseUrlHttp } = video.getBaseUrls() const options = { // Keep the extname, it's used by the client to stream the file inside a web browser @@ -81,7 +90,7 @@ async function createTorrentAndSetInfoHash (videoOrPlaylist: MVideo | MStreaming [ WEBSERVER.WS + '://' + WEBSERVER.HOSTNAME + ':' + WEBSERVER.PORT + '/tracker/socket' ], [ WEBSERVER.URL + '/tracker/announce' ] ], - urlList: [ WEBSERVER.URL + STATIC_PATHS.WEBSEED + getVideoFilename(videoOrPlaylist, videoFile) ] + urlList: [ videoOrPlaylist.getVideoFileUrl(videoFile, baseUrlHttp) ] } const torrent = await createTorrentPromise(getVideoFilePath(videoOrPlaylist, videoFile), options) @@ -126,6 +135,7 @@ function generateMagnetUri ( // --------------------------------------------------------------------------- export { + createTorrentPromise, createTorrentAndSetInfoHash, generateMagnetUri, downloadWebTorrentVideo