From c922d14220eed241d47677db8441921935435f0c Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 25 Sep 2018 17:48:45 +0200 Subject: Fix redundancy bug with old peertube torrent --- server/helpers/webtorrent.ts | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) (limited to 'server/helpers') diff --git a/server/helpers/webtorrent.ts b/server/helpers/webtorrent.ts index f4b44bc4f..d35b3a710 100644 --- a/server/helpers/webtorrent.ts +++ b/server/helpers/webtorrent.ts @@ -1,7 +1,7 @@ import { logger } from './logger' import { generateVideoTmpPath } from './utils' import * as WebTorrent from 'webtorrent' -import { createWriteStream, remove } from 'fs-extra' +import { remove } from 'fs-extra' import { CONFIG } from '../initializers' import { join } from 'path' @@ -9,7 +9,6 @@ function downloadWebTorrentVideo (target: { magnetUri: string, torrentName?: str const id = target.magnetUri || target.torrentName let timer - const path = generateVideoTmpPath(id) logger.info('Importing torrent video %s', id) return new Promise((res, rej) => { @@ -27,17 +26,7 @@ function downloadWebTorrentVideo (target: { magnetUri: string, torrentName?: str .then(() => rej(new Error('Cannot import torrent ' + torrentId + ': there are multiple files in it'))) } - file = torrent.files[ 0 ] - - const writeStream = createWriteStream(path) - writeStream.on('finish', () => { - if (timer) clearTimeout(timer) - - return safeWebtorrentDestroy(webtorrent, torrentId, file.name, target.torrentName) - .then(() => res(path)) - }) - - file.createReadStream().pipe(writeStream) + torrent.on('done', () => res(join(CONFIG.STORAGE.VIDEOS_DIR, torrent.files[ 0 ].path))) }) torrent.on('error', err => rej(err)) -- cgit v1.2.3