2019-07-15 03:22:57 -04:00
|
|
|
import * as createTorrent from 'create-torrent'
|
2021-02-16 10:25:53 -05:00
|
|
|
import { createWriteStream, ensureDir, remove, writeFile } from 'fs-extra'
|
2019-11-15 09:06:03 -05:00
|
|
|
import * as magnetUtil from 'magnet-uri'
|
2021-02-16 10:25:53 -05:00
|
|
|
import * as parseTorrent from 'parse-torrent'
|
|
|
|
import { dirname, join } from 'path'
|
|
|
|
import * as WebTorrent from 'webtorrent'
|
2019-11-15 09:06:03 -05:00
|
|
|
import { isArray } from '@server/helpers/custom-validators/misc'
|
2021-02-16 10:25:53 -05:00
|
|
|
import { WEBSERVER } from '@server/initializers/constants'
|
|
|
|
import { generateTorrentFileName, getVideoFilePath } from '@server/lib/video-paths'
|
2021-02-18 05:28:00 -05:00
|
|
|
import { MVideo } from '@server/types/models/video/video'
|
2021-02-16 10:25:53 -05:00
|
|
|
import { MVideoFile, MVideoFileRedundanciesOpt } from '@server/types/models/video/video-file'
|
|
|
|
import { MStreamingPlaylistVideo } from '@server/types/models/video/video-streaming-playlist'
|
|
|
|
import { CONFIG } from '../initializers/config'
|
|
|
|
import { promisify2 } from './core-utils'
|
|
|
|
import { logger } from './logger'
|
|
|
|
import { generateVideoImportTmpPath } from './utils'
|
2021-02-18 05:28:00 -05:00
|
|
|
import { extractVideo } from './video'
|
2019-11-15 09:06:03 -05:00
|
|
|
|
|
|
|
const createTorrentPromise = promisify2<string, any, any>(createTorrent)
|
2018-08-06 11:13:39 -04:00
|
|
|
|
2018-10-01 06:00:05 -04:00
|
|
|
async function downloadWebTorrentVideo (target: { magnetUri: string, torrentName?: string }, timeout: number) {
|
2018-08-07 03:54:36 -04:00
|
|
|
const id = target.magnetUri || target.torrentName
|
2018-09-11 10:27:07 -04:00
|
|
|
let timer
|
2018-08-06 11:13:39 -04:00
|
|
|
|
2018-12-04 10:02:49 -05:00
|
|
|
const path = generateVideoImportTmpPath(id)
|
2018-08-07 03:54:36 -04:00
|
|
|
logger.info('Importing torrent video %s', id)
|
2018-08-06 11:13:39 -04:00
|
|
|
|
2018-12-04 10:02:49 -05:00
|
|
|
const directoryPath = join(CONFIG.STORAGE.TMP_DIR, 'webtorrent')
|
2018-09-26 02:50:21 -04:00
|
|
|
await ensureDir(directoryPath)
|
|
|
|
|
2018-08-06 11:13:39 -04:00
|
|
|
return new Promise<string>((res, rej) => {
|
|
|
|
const webtorrent = new WebTorrent()
|
2018-09-11 10:27:07 -04:00
|
|
|
let file: WebTorrent.TorrentFile
|
2018-08-06 11:13:39 -04:00
|
|
|
|
2018-08-07 03:54:36 -04:00
|
|
|
const torrentId = target.magnetUri || join(CONFIG.STORAGE.TORRENTS_DIR, target.torrentName)
|
2018-08-07 11:18:35 -04:00
|
|
|
|
2018-09-26 02:50:21 -04:00
|
|
|
const options = { path: directoryPath }
|
2018-08-07 11:18:35 -04:00
|
|
|
const torrent = webtorrent.add(torrentId, options, torrent => {
|
2018-09-11 10:27:07 -04:00
|
|
|
if (torrent.files.length !== 1) {
|
|
|
|
if (timer) clearTimeout(timer)
|
2018-08-06 11:13:39 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
for (const file of torrent.files) {
|
2018-10-01 04:52:58 -04:00
|
|
|
deleteDownloadedFile({ directoryPath, filepath: file.path })
|
|
|
|
}
|
|
|
|
|
|
|
|
return safeWebtorrentDestroy(webtorrent, torrentId, undefined, target.torrentName)
|
2018-09-17 11:50:51 -04:00
|
|
|
.then(() => rej(new Error('Cannot import torrent ' + torrentId + ': there are multiple files in it')))
|
2018-09-11 10:27:07 -04:00
|
|
|
}
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
file = torrent.files[0]
|
2018-09-26 02:50:21 -04:00
|
|
|
|
|
|
|
// FIXME: avoid creating another stream when https://github.com/webtorrent/webtorrent/issues/1517 is fixed
|
|
|
|
const writeStream = createWriteStream(path)
|
|
|
|
writeStream.on('finish', () => {
|
|
|
|
if (timer) clearTimeout(timer)
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
safeWebtorrentDestroy(webtorrent, torrentId, { directoryPath, filepath: file.path }, target.torrentName)
|
2018-09-26 02:50:21 -04:00
|
|
|
.then(() => res(path))
|
2020-01-31 10:56:52 -05:00
|
|
|
.catch(err => logger.error('Cannot destroy webtorrent.', { err }))
|
2018-09-25 13:42:05 -04:00
|
|
|
})
|
2018-09-26 02:50:21 -04:00
|
|
|
|
|
|
|
file.createReadStream().pipe(writeStream)
|
2018-08-07 09:17:17 -04:00
|
|
|
})
|
2018-08-06 11:13:39 -04:00
|
|
|
|
|
|
|
torrent.on('error', err => rej(err))
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
timer = setTimeout(() => {
|
|
|
|
const err = new Error('Webtorrent download timeout.')
|
|
|
|
|
|
|
|
safeWebtorrentDestroy(webtorrent, torrentId, file ? { directoryPath, filepath: file.path } : undefined, target.torrentName)
|
|
|
|
.then(() => rej(err))
|
|
|
|
.catch(destroyErr => {
|
|
|
|
logger.error('Cannot destroy webtorrent.', { err: destroyErr })
|
|
|
|
rej(err)
|
|
|
|
})
|
|
|
|
|
2018-10-01 06:00:05 -04:00
|
|
|
}, timeout)
|
2018-08-06 11:13:39 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-02-16 10:25:53 -05:00
|
|
|
async function createTorrentAndSetInfoHash (
|
|
|
|
videoOrPlaylist: MVideo | MStreamingPlaylistVideo,
|
|
|
|
videoFile: MVideoFile
|
|
|
|
) {
|
2021-02-18 05:28:00 -05:00
|
|
|
const video = extractVideo(videoOrPlaylist)
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
const options = {
|
|
|
|
// Keep the extname, it's used by the client to stream the file inside a web browser
|
|
|
|
name: `${video.name} ${videoFile.resolution}p${videoFile.extname}`,
|
|
|
|
createdBy: 'PeerTube',
|
|
|
|
announceList: [
|
|
|
|
[ WEBSERVER.WS + '://' + WEBSERVER.HOSTNAME + ':' + WEBSERVER.PORT + '/tracker/socket' ],
|
|
|
|
[ WEBSERVER.URL + '/tracker/announce' ]
|
|
|
|
],
|
2021-02-16 10:25:53 -05:00
|
|
|
urlList: [ videoFile.getFileUrl(video) ]
|
2019-11-15 09:06:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const torrent = await createTorrentPromise(getVideoFilePath(videoOrPlaylist, videoFile), options)
|
|
|
|
|
2021-02-16 10:25:53 -05:00
|
|
|
const torrentFilename = generateTorrentFileName(videoOrPlaylist, videoFile.resolution)
|
|
|
|
const torrentPath = join(CONFIG.STORAGE.TORRENTS_DIR, torrentFilename)
|
|
|
|
logger.info('Creating torrent %s.', torrentPath)
|
2019-11-15 09:06:03 -05:00
|
|
|
|
2021-02-16 10:25:53 -05:00
|
|
|
await writeFile(torrentPath, torrent)
|
2019-11-15 09:06:03 -05:00
|
|
|
|
|
|
|
const parsedTorrent = parseTorrent(torrent)
|
|
|
|
videoFile.infoHash = parsedTorrent.infoHash
|
2021-02-16 10:25:53 -05:00
|
|
|
videoFile.torrentFilename = torrentFilename
|
2019-11-15 09:06:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function generateMagnetUri (
|
2021-02-18 05:28:00 -05:00
|
|
|
video: MVideo,
|
2019-11-15 09:06:03 -05:00
|
|
|
videoFile: MVideoFileRedundanciesOpt,
|
2021-02-18 04:15:11 -05:00
|
|
|
trackerUrls: string[]
|
2019-11-15 09:06:03 -05:00
|
|
|
) {
|
2021-02-16 10:25:53 -05:00
|
|
|
const xs = videoFile.getTorrentUrl()
|
2021-02-18 04:15:11 -05:00
|
|
|
const announce = trackerUrls
|
2021-02-16 10:25:53 -05:00
|
|
|
let urlList = [ videoFile.getFileUrl(video) ]
|
2019-11-15 09:06:03 -05:00
|
|
|
|
|
|
|
const redundancies = videoFile.RedundancyVideos
|
|
|
|
if (isArray(redundancies)) urlList = urlList.concat(redundancies.map(r => r.fileUrl))
|
|
|
|
|
|
|
|
const magnetHash = {
|
|
|
|
xs,
|
|
|
|
announce,
|
|
|
|
urlList,
|
|
|
|
infoHash: videoFile.infoHash,
|
|
|
|
name: video.name
|
|
|
|
}
|
|
|
|
|
|
|
|
return magnetUtil.encode(magnetHash)
|
|
|
|
}
|
2019-07-15 03:22:57 -04:00
|
|
|
|
2018-08-06 11:13:39 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2019-11-21 10:30:47 -05:00
|
|
|
createTorrentPromise,
|
2019-11-15 09:06:03 -05:00
|
|
|
createTorrentAndSetInfoHash,
|
|
|
|
generateMagnetUri,
|
2018-08-06 11:13:39 -04:00
|
|
|
downloadWebTorrentVideo
|
|
|
|
}
|
2018-09-11 10:27:07 -04:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2018-09-28 03:08:12 -04:00
|
|
|
function safeWebtorrentDestroy (
|
|
|
|
webtorrent: WebTorrent.Instance,
|
|
|
|
torrentId: string,
|
|
|
|
downloadedFile?: { directoryPath: string, filepath: string },
|
|
|
|
torrentName?: string
|
|
|
|
) {
|
2021-02-03 03:33:05 -05:00
|
|
|
return new Promise<void>(res => {
|
2018-09-11 10:27:07 -04:00
|
|
|
webtorrent.destroy(err => {
|
|
|
|
// Delete torrent file
|
|
|
|
if (torrentName) {
|
2018-09-28 03:08:12 -04:00
|
|
|
logger.debug('Removing %s torrent after webtorrent download.', torrentId)
|
2018-09-11 10:27:07 -04:00
|
|
|
remove(torrentId)
|
|
|
|
.catch(err => logger.error('Cannot remove torrent %s in webtorrent download.', torrentId, { err }))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete downloaded file
|
2018-10-01 04:52:58 -04:00
|
|
|
if (downloadedFile) deleteDownloadedFile(downloadedFile)
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2018-10-01 04:52:58 -04:00
|
|
|
if (err) logger.warn('Cannot destroy webtorrent in timeout.', { err })
|
2018-09-11 10:27:07 -04:00
|
|
|
|
|
|
|
return res()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
2018-10-01 04:52:58 -04:00
|
|
|
|
|
|
|
function deleteDownloadedFile (downloadedFile: { directoryPath: string, filepath: string }) {
|
|
|
|
// We want to delete the base directory
|
|
|
|
let pathToDelete = dirname(downloadedFile.filepath)
|
|
|
|
if (pathToDelete === '.') pathToDelete = downloadedFile.filepath
|
|
|
|
|
|
|
|
const toRemovePath = join(downloadedFile.directoryPath, pathToDelete)
|
|
|
|
|
|
|
|
logger.debug('Removing %s after webtorrent download.', toRemovePath)
|
|
|
|
remove(toRemovePath)
|
|
|
|
.catch(err => logger.error('Cannot remove torrent file %s in webtorrent download.', toRemovePath, { err }))
|
|
|
|
}
|