2018-08-06 11:13:39 -04:00
|
|
|
import { logger } from './logger'
|
2018-12-04 10:02:49 -05:00
|
|
|
import { generateVideoImportTmpPath } from './utils'
|
2018-08-06 11:13:39 -04:00
|
|
|
import * as WebTorrent from 'webtorrent'
|
2018-09-26 02:50:21 -04:00
|
|
|
import { createWriteStream, ensureDir, remove } from 'fs-extra'
|
2019-04-11 05:33:44 -04:00
|
|
|
import { CONFIG } from '../initializers/config'
|
2018-09-28 03:08:12 -04:00
|
|
|
import { dirname, join } from 'path'
|
2019-07-15 03:22:57 -04:00
|
|
|
import * as createTorrent from 'create-torrent'
|
|
|
|
import { promisify2 } from './core-utils'
|
2018-08-06 11:13:39 -04:00
|
|
|
|
2018-10-01 06:00:05 -04:00
|
|
|
async function downloadWebTorrentVideo (target: { magnetUri: string, torrentName?: string }, timeout: number) {
|
2018-08-07 03:54:36 -04:00
|
|
|
const id = target.magnetUri || target.torrentName
|
2018-09-11 10:27:07 -04:00
|
|
|
let timer
|
2018-08-06 11:13:39 -04:00
|
|
|
|
2018-12-04 10:02:49 -05:00
|
|
|
const path = generateVideoImportTmpPath(id)
|
2018-08-07 03:54:36 -04:00
|
|
|
logger.info('Importing torrent video %s', id)
|
2018-08-06 11:13:39 -04:00
|
|
|
|
2018-12-04 10:02:49 -05:00
|
|
|
const directoryPath = join(CONFIG.STORAGE.TMP_DIR, 'webtorrent')
|
2018-09-26 02:50:21 -04:00
|
|
|
await ensureDir(directoryPath)
|
|
|
|
|
2018-08-06 11:13:39 -04:00
|
|
|
return new Promise<string>((res, rej) => {
|
|
|
|
const webtorrent = new WebTorrent()
|
2018-09-11 10:27:07 -04:00
|
|
|
let file: WebTorrent.TorrentFile
|
2018-08-06 11:13:39 -04:00
|
|
|
|
2018-08-07 03:54:36 -04:00
|
|
|
const torrentId = target.magnetUri || join(CONFIG.STORAGE.TORRENTS_DIR, target.torrentName)
|
2018-08-07 11:18:35 -04:00
|
|
|
|
2018-09-26 02:50:21 -04:00
|
|
|
const options = { path: directoryPath }
|
2018-08-07 11:18:35 -04:00
|
|
|
const torrent = webtorrent.add(torrentId, options, torrent => {
|
2018-09-11 10:27:07 -04:00
|
|
|
if (torrent.files.length !== 1) {
|
|
|
|
if (timer) clearTimeout(timer)
|
2018-08-06 11:13:39 -04:00
|
|
|
|
2018-10-01 04:52:58 -04:00
|
|
|
for (let file of torrent.files) {
|
|
|
|
deleteDownloadedFile({ directoryPath, filepath: file.path })
|
|
|
|
}
|
|
|
|
|
|
|
|
return safeWebtorrentDestroy(webtorrent, torrentId, undefined, target.torrentName)
|
2018-09-17 11:50:51 -04:00
|
|
|
.then(() => rej(new Error('Cannot import torrent ' + torrentId + ': there are multiple files in it')))
|
2018-09-11 10:27:07 -04:00
|
|
|
}
|
|
|
|
|
2018-09-26 02:50:21 -04:00
|
|
|
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)
|
|
|
|
|
2018-09-28 03:08:12 -04:00
|
|
|
return safeWebtorrentDestroy(webtorrent, torrentId, { directoryPath, filepath: file.path }, target.torrentName)
|
2018-09-26 02:50:21 -04:00
|
|
|
.then(() => res(path))
|
2018-09-25 13:42:05 -04:00
|
|
|
})
|
2018-09-26 02:50:21 -04:00
|
|
|
|
|
|
|
file.createReadStream().pipe(writeStream)
|
2018-08-07 09:17:17 -04:00
|
|
|
})
|
2018-08-06 11:13:39 -04:00
|
|
|
|
|
|
|
torrent.on('error', err => rej(err))
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2018-10-01 06:00:05 -04:00
|
|
|
timer = setTimeout(async () => {
|
|
|
|
return safeWebtorrentDestroy(webtorrent, torrentId, file ? { directoryPath, filepath: file.path } : undefined, target.torrentName)
|
|
|
|
.then(() => rej(new Error('Webtorrent download timeout.')))
|
|
|
|
}, timeout)
|
2018-08-06 11:13:39 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-07-15 03:22:57 -04:00
|
|
|
const createTorrentPromise = promisify2<string, any, any>(createTorrent)
|
|
|
|
|
2018-08-06 11:13:39 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2019-07-15 03:22:57 -04:00
|
|
|
createTorrentPromise,
|
2018-08-06 11:13:39 -04:00
|
|
|
downloadWebTorrentVideo
|
|
|
|
}
|
2018-09-11 10:27:07 -04:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2018-09-28 03:08:12 -04:00
|
|
|
function safeWebtorrentDestroy (
|
|
|
|
webtorrent: WebTorrent.Instance,
|
|
|
|
torrentId: string,
|
|
|
|
downloadedFile?: { directoryPath: string, filepath: string },
|
|
|
|
torrentName?: string
|
|
|
|
) {
|
2018-09-11 10:27:07 -04:00
|
|
|
return new Promise(res => {
|
|
|
|
webtorrent.destroy(err => {
|
|
|
|
// Delete torrent file
|
|
|
|
if (torrentName) {
|
2018-09-28 03:08:12 -04:00
|
|
|
logger.debug('Removing %s torrent after webtorrent download.', torrentId)
|
2018-09-11 10:27:07 -04:00
|
|
|
remove(torrentId)
|
|
|
|
.catch(err => logger.error('Cannot remove torrent %s in webtorrent download.', torrentId, { err }))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete downloaded file
|
2018-10-01 04:52:58 -04:00
|
|
|
if (downloadedFile) deleteDownloadedFile(downloadedFile)
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2018-10-01 04:52:58 -04:00
|
|
|
if (err) logger.warn('Cannot destroy webtorrent in timeout.', { err })
|
2018-09-11 10:27:07 -04:00
|
|
|
|
|
|
|
return res()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
2018-10-01 04:52:58 -04:00
|
|
|
|
|
|
|
function deleteDownloadedFile (downloadedFile: { directoryPath: string, filepath: string }) {
|
|
|
|
// We want to delete the base directory
|
|
|
|
let pathToDelete = dirname(downloadedFile.filepath)
|
|
|
|
if (pathToDelete === '.') pathToDelete = downloadedFile.filepath
|
|
|
|
|
|
|
|
const toRemovePath = join(downloadedFile.directoryPath, pathToDelete)
|
|
|
|
|
|
|
|
logger.debug('Removing %s after webtorrent download.', toRemovePath)
|
|
|
|
remove(toRemovePath)
|
|
|
|
.catch(err => logger.error('Cannot remove torrent file %s in webtorrent download.', toRemovePath, { err }))
|
|
|
|
}
|