PeerTube/server/helpers/webtorrent.ts

37 lines
1.2 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 { createWriteStream } from 'fs'
2018-08-07 09:54:36 +02:00
import { Instance as ParseTorrent } from 'parse-torrent'
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)
const torrent = webtorrent.add(torrentId, torrent => {
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 ]
file.createReadStream().pipe(createWriteStream(path))
})
torrent.on('done', () => res(path))
torrent.on('error', err => rej(err))
})
}
// ---------------------------------------------------------------------------
export {
downloadWebTorrentVideo
}