mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-26 02:30:37 -06:00
Rename webtorrent files (process/node)
This commit is contained in:
parent
c4660e08da
commit
c5a8be2b62
@ -13,7 +13,7 @@
|
|||||||
var reqValidator = middleware.reqValidators.videos
|
var reqValidator = middleware.reqValidators.videos
|
||||||
var Videos = require('../../../models/videos') // model
|
var Videos = require('../../../models/videos') // model
|
||||||
var videos = require('../../../lib/videos')
|
var videos = require('../../../lib/videos')
|
||||||
var webtorrent = require('../../../lib/webTorrentNode')
|
var webtorrent = require('../../../lib/webtorrent')
|
||||||
|
|
||||||
var router = express.Router()
|
var router = express.Router()
|
||||||
var uploads = config.get('storage.uploads')
|
var uploads = config.get('storage.uploads')
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
var async = require('async')
|
var async = require('async')
|
||||||
var config = require('config')
|
var config = require('config')
|
||||||
var webtorrent = require('../lib/webTorrentNode')
|
var webtorrent = require('../lib/webtorrent')
|
||||||
|
|
||||||
var logger = require('../helpers/logger')
|
var logger = require('../helpers/logger')
|
||||||
var Videos = require('../models/videos')
|
var Videos = require('../models/videos')
|
||||||
|
@ -1,161 +0,0 @@
|
|||||||
;(function () {
|
|
||||||
'use strict'
|
|
||||||
|
|
||||||
var config = require('config')
|
|
||||||
var ipc = require('node-ipc')
|
|
||||||
var pathUtils = require('path')
|
|
||||||
var spawn = require('electron-spawn')
|
|
||||||
|
|
||||||
var logger = require('../helpers/logger')
|
|
||||||
|
|
||||||
var host = config.get('webserver.host')
|
|
||||||
var port = config.get('webserver.port')
|
|
||||||
var nodeKey = 'webtorrentnode' + port
|
|
||||||
var processKey = 'webtorrent' + port
|
|
||||||
ipc.config.silent = true
|
|
||||||
ipc.config.id = nodeKey
|
|
||||||
|
|
||||||
var webtorrentnode = {
|
|
||||||
add: add,
|
|
||||||
app: null, // Pid of the app
|
|
||||||
create: create,
|
|
||||||
remove: remove,
|
|
||||||
seed: seed,
|
|
||||||
silent: false // Useful for beautiful tests
|
|
||||||
}
|
|
||||||
|
|
||||||
function create (options, callback) {
|
|
||||||
if (typeof options === 'function') {
|
|
||||||
callback = options
|
|
||||||
options = {}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Override options
|
|
||||||
if (options.host) host = options.host
|
|
||||||
if (options.port) {
|
|
||||||
port = options.port
|
|
||||||
nodeKey = 'webtorrentnode' + port
|
|
||||||
processKey = 'webtorrent' + port
|
|
||||||
ipc.config.id = nodeKey
|
|
||||||
}
|
|
||||||
|
|
||||||
ipc.serve(function () {
|
|
||||||
if (!webtorrentnode.silent) logger.info('IPC server ready.')
|
|
||||||
|
|
||||||
// Run a timeout of 30s after which we exit the process
|
|
||||||
var timeout_webtorrent_process = setTimeout(function () {
|
|
||||||
logger.error('Timeout : cannot run the webtorrent process. Please ensure you have electron-prebuilt npm package installed with xvfb-run.')
|
|
||||||
process.exit()
|
|
||||||
}, 30000)
|
|
||||||
|
|
||||||
ipc.server.on(processKey + '.ready', function () {
|
|
||||||
if (!webtorrentnode.silent) logger.info('Webtorrent process ready.')
|
|
||||||
clearTimeout(timeout_webtorrent_process)
|
|
||||||
callback()
|
|
||||||
})
|
|
||||||
|
|
||||||
ipc.server.on(processKey + '.exception', function (data) {
|
|
||||||
logger.error('Received exception error from webtorrent process.', { exception: data.exception })
|
|
||||||
process.exit()
|
|
||||||
})
|
|
||||||
|
|
||||||
var webtorrent_process = spawn(__dirname + '/webtorrent.js', host, port, { detached: true })
|
|
||||||
webtorrent_process.stderr.on('data', function (data) {
|
|
||||||
// logger.debug('Webtorrent process stderr: ', data.toString())
|
|
||||||
})
|
|
||||||
|
|
||||||
webtorrent_process.stdout.on('data', function (data) {
|
|
||||||
// logger.debug('Webtorrent process:', data.toString())
|
|
||||||
})
|
|
||||||
|
|
||||||
webtorrentnode.app = webtorrent_process
|
|
||||||
})
|
|
||||||
|
|
||||||
ipc.server.start()
|
|
||||||
}
|
|
||||||
|
|
||||||
function seed (path, callback) {
|
|
||||||
var extension = pathUtils.extname(path)
|
|
||||||
var basename = pathUtils.basename(path, extension)
|
|
||||||
var data = {
|
|
||||||
_id: basename,
|
|
||||||
args: {
|
|
||||||
path: path
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!webtorrentnode.silent) logger.debug('Node wants to seed %s.', data._id)
|
|
||||||
|
|
||||||
// Finish signal
|
|
||||||
var event_key = nodeKey + '.seedDone.' + data._id
|
|
||||||
ipc.server.on(event_key, function listener (received) {
|
|
||||||
if (!webtorrentnode.silent) logger.debug('Process seeded torrent %s.', received.magnetUri)
|
|
||||||
|
|
||||||
// This is a fake object, we just use the magnetUri in this project
|
|
||||||
var torrent = {
|
|
||||||
magnetURI: received.magnetUri
|
|
||||||
}
|
|
||||||
|
|
||||||
ipc.server.off(event_key)
|
|
||||||
callback(torrent)
|
|
||||||
})
|
|
||||||
|
|
||||||
ipc.server.broadcast(processKey + '.seed', data)
|
|
||||||
}
|
|
||||||
|
|
||||||
function add (magnetUri, callback) {
|
|
||||||
var data = {
|
|
||||||
_id: magnetUri,
|
|
||||||
args: {
|
|
||||||
magnetUri: magnetUri
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!webtorrentnode.silent) logger.debug('Node wants to add ' + data._id)
|
|
||||||
|
|
||||||
// Finish signal
|
|
||||||
var event_key = nodeKey + '.addDone.' + data._id
|
|
||||||
ipc.server.on(event_key, function (received) {
|
|
||||||
if (!webtorrentnode.silent) logger.debug('Process added torrent.')
|
|
||||||
|
|
||||||
// This is a fake object, we just use the magnetUri in this project
|
|
||||||
var torrent = {
|
|
||||||
files: received.files
|
|
||||||
}
|
|
||||||
|
|
||||||
ipc.server.off(event_key)
|
|
||||||
callback(torrent)
|
|
||||||
})
|
|
||||||
|
|
||||||
ipc.server.broadcast(processKey + '.add', data)
|
|
||||||
}
|
|
||||||
|
|
||||||
function remove (magnetUri, callback) {
|
|
||||||
var data = {
|
|
||||||
_id: magnetUri,
|
|
||||||
args: {
|
|
||||||
magnetUri: magnetUri
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!webtorrentnode.silent) logger.debug('Node wants to stop seeding %s.', data._id)
|
|
||||||
|
|
||||||
// Finish signal
|
|
||||||
var event_key = nodeKey + '.removeDone.' + data._id
|
|
||||||
ipc.server.on(event_key, function (received) {
|
|
||||||
if (!webtorrentnode.silent) logger.debug('Process removed torrent %s.', data._id)
|
|
||||||
|
|
||||||
var err = null
|
|
||||||
if (received.err) err = received.err
|
|
||||||
|
|
||||||
ipc.server.off(event_key)
|
|
||||||
callback(err)
|
|
||||||
})
|
|
||||||
|
|
||||||
ipc.server.broadcast(processKey + '.remove', data)
|
|
||||||
}
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
module.exports = webtorrentnode
|
|
||||||
})()
|
|
@ -1,92 +1,158 @@
|
|||||||
;(function () {
|
;(function () {
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
function webtorrent (args) {
|
var config = require('config')
|
||||||
var WebTorrent = require('webtorrent')
|
var ipc = require('node-ipc')
|
||||||
var ipc = require('node-ipc')
|
var pathUtils = require('path')
|
||||||
|
var spawn = require('electron-spawn')
|
||||||
|
|
||||||
if (args.length !== 3) {
|
var logger = require('../helpers/logger')
|
||||||
console.log('Wrong arguments number: ' + args.length + '/3')
|
|
||||||
process.exit(-1)
|
var host = config.get('webserver.host')
|
||||||
|
var port = config.get('webserver.port')
|
||||||
|
var nodeKey = 'webtorrentnode' + port
|
||||||
|
var processKey = 'webtorrentprocess' + port
|
||||||
|
ipc.config.silent = true
|
||||||
|
ipc.config.id = nodeKey
|
||||||
|
|
||||||
|
var webtorrent = {
|
||||||
|
add: add,
|
||||||
|
app: null, // Pid of the app
|
||||||
|
create: create,
|
||||||
|
remove: remove,
|
||||||
|
seed: seed,
|
||||||
|
silent: false // Useful for beautiful tests
|
||||||
|
}
|
||||||
|
|
||||||
|
function create (options, callback) {
|
||||||
|
if (typeof options === 'function') {
|
||||||
|
callback = options
|
||||||
|
options = {}
|
||||||
}
|
}
|
||||||
|
|
||||||
var host = args[1]
|
// Override options
|
||||||
var port = args[2]
|
if (options.host) host = options.host
|
||||||
var nodeKey = 'webtorrentnode' + port
|
if (options.port) {
|
||||||
var processKey = 'webtorrent' + port
|
port = options.port
|
||||||
|
nodeKey = 'webtorrentnode' + port
|
||||||
|
processKey = 'webtorrentprocess' + port
|
||||||
|
ipc.config.id = nodeKey
|
||||||
|
}
|
||||||
|
|
||||||
ipc.config.silent = true
|
ipc.serve(function () {
|
||||||
ipc.config.id = processKey
|
if (!webtorrent.silent) logger.info('IPC server ready.')
|
||||||
|
|
||||||
if (host === 'client' && port === '1') global.WEBTORRENT_ANNOUNCE = []
|
// Run a timeout of 30s after which we exit the process
|
||||||
else global.WEBTORRENT_ANNOUNCE = 'ws://' + host + ':' + port + '/tracker/socket'
|
var timeout_webtorrent_process = setTimeout(function () {
|
||||||
var wt = new WebTorrent({ dht: false })
|
logger.error('Timeout : cannot run the webtorrent process. Please ensure you have electron-prebuilt npm package installed with xvfb-run.')
|
||||||
|
process.exit()
|
||||||
|
}, 30000)
|
||||||
|
|
||||||
function seed (data) {
|
ipc.server.on(processKey + '.ready', function () {
|
||||||
var args = data.args
|
if (!webtorrent.silent) logger.info('Webtorrent process ready.')
|
||||||
var path = args.path
|
clearTimeout(timeout_webtorrent_process)
|
||||||
var _id = data._id
|
callback()
|
||||||
|
|
||||||
wt.seed(path, { announceList: '' }, function (torrent) {
|
|
||||||
var to_send = {
|
|
||||||
magnetUri: torrent.magnetURI
|
|
||||||
}
|
|
||||||
|
|
||||||
ipc.of[nodeKey].emit(nodeKey + '.seedDone.' + _id, to_send)
|
|
||||||
})
|
})
|
||||||
}
|
|
||||||
|
|
||||||
function add (data) {
|
ipc.server.on(processKey + '.exception', function (data) {
|
||||||
var args = data.args
|
logger.error('Received exception error from webtorrent process.', { exception: data.exception })
|
||||||
var magnetUri = args.magnetUri
|
process.exit()
|
||||||
var _id = data._id
|
|
||||||
|
|
||||||
wt.add(magnetUri, function (torrent) {
|
|
||||||
var to_send = {
|
|
||||||
files: []
|
|
||||||
}
|
|
||||||
|
|
||||||
torrent.files.forEach(function (file) {
|
|
||||||
to_send.files.push({ path: file.path })
|
|
||||||
})
|
|
||||||
|
|
||||||
ipc.of[nodeKey].emit(nodeKey + '.addDone.' + _id, to_send)
|
|
||||||
})
|
})
|
||||||
}
|
|
||||||
|
|
||||||
function remove (data) {
|
var webtorrent_process = spawn(__dirname + '/webtorrentProcess.js', host, port, { detached: true })
|
||||||
var args = data.args
|
webtorrent_process.stderr.on('data', function (data) {
|
||||||
var magnetUri = args.magnetUri
|
// logger.debug('Webtorrent process stderr: ', data.toString())
|
||||||
var _id = data._id
|
})
|
||||||
|
|
||||||
try {
|
webtorrent_process.stdout.on('data', function (data) {
|
||||||
wt.remove(magnetUri, callback)
|
// logger.debug('Webtorrent process:', data.toString())
|
||||||
} catch (err) {
|
})
|
||||||
console.log('Cannot remove the torrent from WebTorrent.')
|
|
||||||
return callback(null)
|
|
||||||
}
|
|
||||||
|
|
||||||
function callback () {
|
webtorrent.app = webtorrent_process
|
||||||
var to_send = {}
|
})
|
||||||
ipc.of[nodeKey].emit(nodeKey + '.removeDone.' + _id, to_send)
|
|
||||||
|
ipc.server.start()
|
||||||
|
}
|
||||||
|
|
||||||
|
function seed (path, callback) {
|
||||||
|
var extension = pathUtils.extname(path)
|
||||||
|
var basename = pathUtils.basename(path, extension)
|
||||||
|
var data = {
|
||||||
|
_id: basename,
|
||||||
|
args: {
|
||||||
|
path: path
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log('Configuration: ' + host + ':' + port)
|
if (!webtorrent.silent) logger.debug('Node wants to seed %s.', data._id)
|
||||||
console.log('Connecting to IPC...')
|
|
||||||
|
|
||||||
ipc.connectTo(nodeKey, function () {
|
// Finish signal
|
||||||
ipc.of[nodeKey].on(processKey + '.seed', seed)
|
var event_key = nodeKey + '.seedDone.' + data._id
|
||||||
ipc.of[nodeKey].on(processKey + '.add', add)
|
ipc.server.on(event_key, function listener (received) {
|
||||||
ipc.of[nodeKey].on(processKey + '.remove', remove)
|
if (!webtorrent.silent) logger.debug('Process seeded torrent %s.', received.magnetUri)
|
||||||
|
|
||||||
ipc.of[nodeKey].emit(processKey + '.ready')
|
// This is a fake object, we just use the magnetUri in this project
|
||||||
console.log('Ready.')
|
var torrent = {
|
||||||
|
magnetURI: received.magnetUri
|
||||||
|
}
|
||||||
|
|
||||||
|
ipc.server.off(event_key)
|
||||||
|
callback(torrent)
|
||||||
})
|
})
|
||||||
|
|
||||||
process.on('uncaughtException', function (e) {
|
ipc.server.broadcast(processKey + '.seed', data)
|
||||||
ipc.of[nodeKey].emit(processKey + '.exception', { exception: e })
|
}
|
||||||
|
|
||||||
|
function add (magnetUri, callback) {
|
||||||
|
var data = {
|
||||||
|
_id: magnetUri,
|
||||||
|
args: {
|
||||||
|
magnetUri: magnetUri
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!webtorrent.silent) logger.debug('Node wants to add ' + data._id)
|
||||||
|
|
||||||
|
// Finish signal
|
||||||
|
var event_key = nodeKey + '.addDone.' + data._id
|
||||||
|
ipc.server.on(event_key, function (received) {
|
||||||
|
if (!webtorrent.silent) logger.debug('Process added torrent.')
|
||||||
|
|
||||||
|
// This is a fake object, we just use the magnetUri in this project
|
||||||
|
var torrent = {
|
||||||
|
files: received.files
|
||||||
|
}
|
||||||
|
|
||||||
|
ipc.server.off(event_key)
|
||||||
|
callback(torrent)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
ipc.server.broadcast(processKey + '.add', data)
|
||||||
|
}
|
||||||
|
|
||||||
|
function remove (magnetUri, callback) {
|
||||||
|
var data = {
|
||||||
|
_id: magnetUri,
|
||||||
|
args: {
|
||||||
|
magnetUri: magnetUri
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!webtorrent.silent) logger.debug('Node wants to stop seeding %s.', data._id)
|
||||||
|
|
||||||
|
// Finish signal
|
||||||
|
var event_key = nodeKey + '.removeDone.' + data._id
|
||||||
|
ipc.server.on(event_key, function (received) {
|
||||||
|
if (!webtorrent.silent) logger.debug('Process removed torrent %s.', data._id)
|
||||||
|
|
||||||
|
var err = null
|
||||||
|
if (received.err) err = received.err
|
||||||
|
|
||||||
|
ipc.server.off(event_key)
|
||||||
|
callback(err)
|
||||||
|
})
|
||||||
|
|
||||||
|
ipc.server.broadcast(processKey + '.remove', data)
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
|
95
lib/webtorrentProcess.js
Normal file
95
lib/webtorrentProcess.js
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
;(function () {
|
||||||
|
'use strict'
|
||||||
|
|
||||||
|
function webtorrent (args) {
|
||||||
|
var WebTorrent = require('webtorrent')
|
||||||
|
var ipc = require('node-ipc')
|
||||||
|
|
||||||
|
if (args.length !== 3) {
|
||||||
|
console.log('Wrong arguments number: ' + args.length + '/3')
|
||||||
|
process.exit(-1)
|
||||||
|
}
|
||||||
|
|
||||||
|
var host = args[1]
|
||||||
|
var port = args[2]
|
||||||
|
var nodeKey = 'webtorrentnode' + port
|
||||||
|
var processKey = 'webtorrentprocess' + port
|
||||||
|
|
||||||
|
ipc.config.silent = true
|
||||||
|
ipc.config.id = processKey
|
||||||
|
|
||||||
|
if (host === 'client' && port === '1') global.WEBTORRENT_ANNOUNCE = []
|
||||||
|
else global.WEBTORRENT_ANNOUNCE = 'ws://' + host + ':' + port + '/tracker/socket'
|
||||||
|
var wt = new WebTorrent({ dht: false })
|
||||||
|
|
||||||
|
function seed (data) {
|
||||||
|
var args = data.args
|
||||||
|
var path = args.path
|
||||||
|
var _id = data._id
|
||||||
|
|
||||||
|
wt.seed(path, { announceList: '' }, function (torrent) {
|
||||||
|
var to_send = {
|
||||||
|
magnetUri: torrent.magnetURI
|
||||||
|
}
|
||||||
|
|
||||||
|
ipc.of[nodeKey].emit(nodeKey + '.seedDone.' + _id, to_send)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
function add (data) {
|
||||||
|
var args = data.args
|
||||||
|
var magnetUri = args.magnetUri
|
||||||
|
var _id = data._id
|
||||||
|
|
||||||
|
wt.add(magnetUri, function (torrent) {
|
||||||
|
var to_send = {
|
||||||
|
files: []
|
||||||
|
}
|
||||||
|
|
||||||
|
torrent.files.forEach(function (file) {
|
||||||
|
to_send.files.push({ path: file.path })
|
||||||
|
})
|
||||||
|
|
||||||
|
ipc.of[nodeKey].emit(nodeKey + '.addDone.' + _id, to_send)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
function remove (data) {
|
||||||
|
var args = data.args
|
||||||
|
var magnetUri = args.magnetUri
|
||||||
|
var _id = data._id
|
||||||
|
|
||||||
|
try {
|
||||||
|
wt.remove(magnetUri, callback)
|
||||||
|
} catch (err) {
|
||||||
|
console.log('Cannot remove the torrent from WebTorrent.')
|
||||||
|
return callback(null)
|
||||||
|
}
|
||||||
|
|
||||||
|
function callback () {
|
||||||
|
var to_send = {}
|
||||||
|
ipc.of[nodeKey].emit(nodeKey + '.removeDone.' + _id, to_send)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log('Configuration: ' + host + ':' + port)
|
||||||
|
console.log('Connecting to IPC...')
|
||||||
|
|
||||||
|
ipc.connectTo(nodeKey, function () {
|
||||||
|
ipc.of[nodeKey].on(processKey + '.seed', seed)
|
||||||
|
ipc.of[nodeKey].on(processKey + '.add', add)
|
||||||
|
ipc.of[nodeKey].on(processKey + '.remove', remove)
|
||||||
|
|
||||||
|
ipc.of[nodeKey].emit(processKey + '.ready')
|
||||||
|
console.log('Ready.')
|
||||||
|
})
|
||||||
|
|
||||||
|
process.on('uncaughtException', function (e) {
|
||||||
|
ipc.of[nodeKey].emit(processKey + '.exception', { exception: e })
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
module.exports = webtorrent
|
||||||
|
})()
|
@ -37,7 +37,7 @@
|
|||||||
var routes = require('./controllers')
|
var routes = require('./controllers')
|
||||||
var utils = require('./helpers/utils')
|
var utils = require('./helpers/utils')
|
||||||
var videos = require('./lib/videos')
|
var videos = require('./lib/videos')
|
||||||
var webtorrent = require('./lib/webTorrentNode')
|
var webtorrent = require('./lib/webtorrent')
|
||||||
|
|
||||||
// Get configurations
|
// Get configurations
|
||||||
var port = config.get('listen.port')
|
var port = config.get('listen.port')
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
var expect = chai.expect
|
var expect = chai.expect
|
||||||
|
|
||||||
var utils = require('./utils')
|
var utils = require('./utils')
|
||||||
var webtorrent = require(__dirname + '/../../lib/webTorrentNode')
|
var webtorrent = require(__dirname + '/../../lib/webtorrent')
|
||||||
webtorrent.silent = true
|
webtorrent.silent = true
|
||||||
|
|
||||||
describe('Test multiple pods', function () {
|
describe('Test multiple pods', function () {
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
var expect = chai.expect
|
var expect = chai.expect
|
||||||
var fs = require('fs')
|
var fs = require('fs')
|
||||||
|
|
||||||
var webtorrent = require(__dirname + '/../../lib/webTorrentNode')
|
var webtorrent = require(__dirname + '/../../lib/webtorrent')
|
||||||
webtorrent.silent = true
|
webtorrent.silent = true
|
||||||
|
|
||||||
var utils = require('./utils')
|
var utils = require('./utils')
|
||||||
|
Loading…
Reference in New Issue
Block a user