PeerTube/server/helpers/webtorrent.ts

74 lines
2.4 KiB
TypeScript
Raw Normal View History

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