2018-08-06 10:13:39 -05:00
|
|
|
import { logger } from './logger'
|
|
|
|
import { generateVideoTmpPath } from './utils'
|
|
|
|
import * as WebTorrent from 'webtorrent'
|
2018-09-25 10:48:45 -05:00
|
|
|
import { remove } from 'fs-extra'
|
2018-08-07 02:54:36 -05:00
|
|
|
import { CONFIG } from '../initializers'
|
|
|
|
import { join } from 'path'
|
2018-08-06 10:13:39 -05:00
|
|
|
|
2018-09-11 09:27:07 -05:00
|
|
|
function downloadWebTorrentVideo (target: { magnetUri: string, torrentName?: string }, timeout?: number) {
|
2018-08-07 02:54:36 -05:00
|
|
|
const id = target.magnetUri || target.torrentName
|
2018-09-11 09:27:07 -05:00
|
|
|
let timer
|
2018-08-06 10:13:39 -05:00
|
|
|
|
2018-08-07 02:54:36 -05:00
|
|
|
logger.info('Importing torrent video %s', id)
|
2018-08-06 10:13:39 -05:00
|
|
|
|
|
|
|
return new Promise<string>((res, rej) => {
|
|
|
|
const webtorrent = new WebTorrent()
|
2018-09-11 09:27:07 -05:00
|
|
|
let file: WebTorrent.TorrentFile
|
2018-08-06 10:13:39 -05:00
|
|
|
|
2018-08-07 02:54:36 -05:00
|
|
|
const torrentId = target.magnetUri || join(CONFIG.STORAGE.TORRENTS_DIR, target.torrentName)
|
2018-08-07 10:18:35 -05:00
|
|
|
|
|
|
|
const options = { path: CONFIG.STORAGE.VIDEOS_DIR }
|
|
|
|
const torrent = webtorrent.add(torrentId, options, torrent => {
|
2018-09-11 09:27:07 -05:00
|
|
|
if (torrent.files.length !== 1) {
|
|
|
|
if (timer) clearTimeout(timer)
|
2018-08-06 10:13:39 -05:00
|
|
|
|
2018-09-11 09:27:07 -05:00
|
|
|
return safeWebtorrentDestroy(webtorrent, torrentId, file.name, target.torrentName)
|
2018-09-17 10:50:51 -05:00
|
|
|
.then(() => rej(new Error('Cannot import torrent ' + torrentId + ': there are multiple files in it')))
|
2018-09-11 09:27:07 -05:00
|
|
|
}
|
|
|
|
|
2018-09-25 10:48:45 -05:00
|
|
|
torrent.on('done', () => res(join(CONFIG.STORAGE.VIDEOS_DIR, torrent.files[ 0 ].path)))
|
2018-08-07 08:17:17 -05:00
|
|
|
})
|
2018-08-06 10:13:39 -05:00
|
|
|
|
|
|
|
torrent.on('error', err => rej(err))
|
2018-09-11 09:27:07 -05:00
|
|
|
|
|
|
|
if (timeout) {
|
|
|
|
timer = setTimeout(async () => {
|
|
|
|
return safeWebtorrentDestroy(webtorrent, torrentId, file ? file.name : undefined, target.torrentName)
|
|
|
|
.then(() => rej(new Error('Webtorrent download timeout.')))
|
|
|
|
}, timeout)
|
|
|
|
}
|
2018-08-06 10:13:39 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
downloadWebTorrentVideo
|
|
|
|
}
|
2018-09-11 09:27:07 -05:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function safeWebtorrentDestroy (webtorrent: WebTorrent.Instance, torrentId: string, filename?: string, torrentName?: string) {
|
|
|
|
return new Promise(res => {
|
|
|
|
webtorrent.destroy(err => {
|
|
|
|
// Delete torrent file
|
|
|
|
if (torrentName) {
|
|
|
|
remove(torrentId)
|
|
|
|
.catch(err => logger.error('Cannot remove torrent %s in webtorrent download.', torrentId, { err }))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete downloaded file
|
|
|
|
if (filename) {
|
|
|
|
remove(join(CONFIG.STORAGE.VIDEOS_DIR, filename))
|
|
|
|
.catch(err => logger.error('Cannot remove torrent file %s in webtorrent download.', filename, { err }))
|
|
|
|
}
|
|
|
|
|
|
|
|
if (err) {
|
|
|
|
logger.warn('Cannot destroy webtorrent in timeout.', { err })
|
|
|
|
}
|
|
|
|
|
|
|
|
return res()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|