PeerTube/server/helpers/webtorrent.ts

54 lines
1.7 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'
2018-08-27 16:23:34 +02:00
import { createWriteStream, 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-08-07 09:54:36 +02:00
function downloadWebTorrentVideo (target: { magnetUri: string, torrentName: string }) {
const id = target.magnetUri || target.torrentName
2018-08-06 17:13:39 +02:00
2018-08-07 09:54:36 +02:00
const path = generateVideoTmpPath(id)
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-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-08-07 09:54:36 +02:00
if (torrent.files.length !== 1) return rej(new Error('The number of files is not equal to 1 for ' + torrentId))
2018-08-06 17:13:39 +02:00
const file = torrent.files[ 0 ]
2018-08-07 15:17:17 +02:00
const writeStream = createWriteStream(path)
2018-08-07 17:18:35 +02:00
writeStream.on('finish', () => {
webtorrent.destroy(async err => {
if (err) return rej(err)
if (target.torrentName) {
2018-08-27 16:23:34 +02:00
remove(torrentId)
2018-08-07 17:18:35 +02:00
.catch(err => logger.error('Cannot remove torrent %s in webtorrent download.', torrentId, { err }))
}
2018-08-27 16:23:34 +02:00
remove(join(CONFIG.STORAGE.VIDEOS_DIR, file.name))
2018-08-07 17:18:35 +02:00
.catch(err => logger.error('Cannot remove torrent file %s in webtorrent download.', file.name, { err }))
res(path)
})
})
2018-08-07 15:17:17 +02:00
file.createReadStream().pipe(writeStream)
})
2018-08-06 17:13:39 +02:00
torrent.on('error', err => rej(err))
})
}
// ---------------------------------------------------------------------------
export {
downloadWebTorrentVideo
}