PeerTube/server/helpers/webtorrent.ts

38 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 { 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 ]
2018-08-07 15:17:17 +02:00
const writeStream = createWriteStream(path)
writeStream.on('finish', () => res(path))
file.createReadStream().pipe(writeStream)
})
2018-08-06 17:13:39 +02:00
torrent.on('error', err => rej(err))
})
}
// ---------------------------------------------------------------------------
export {
downloadWebTorrentVideo
}