2016-02-07 11:23:23 +01:00
|
|
|
'use strict'
|
|
|
|
|
2016-07-18 17:17:52 +02:00
|
|
|
const each = require('async/each')
|
|
|
|
const eachLimit = require('async/eachLimit')
|
|
|
|
const eachSeries = require('async/eachSeries')
|
2016-03-16 22:29:27 +01:00
|
|
|
const fs = require('fs')
|
|
|
|
const request = require('request')
|
2016-07-18 17:17:52 +02:00
|
|
|
const waterfall = require('async/waterfall')
|
2016-03-16 22:29:27 +01:00
|
|
|
|
|
|
|
const constants = require('../initializers/constants')
|
2016-12-11 21:50:51 +01:00
|
|
|
const db = require('../initializers/database')
|
2016-03-16 22:29:27 +01:00
|
|
|
const logger = require('../helpers/logger')
|
|
|
|
const requests = require('../helpers/requests')
|
|
|
|
|
2016-06-30 22:39:08 +02:00
|
|
|
const friends = {
|
2016-10-02 12:19:02 +02:00
|
|
|
addVideoToFriends,
|
|
|
|
hasFriends,
|
|
|
|
getMyCertificate,
|
|
|
|
makeFriends,
|
|
|
|
quitFriends,
|
|
|
|
removeVideoToFriends,
|
|
|
|
sendOwnedVideosToPod
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function addVideoToFriends (video) {
|
2016-11-01 18:47:57 +01:00
|
|
|
createRequest('add', constants.REQUEST_ENDPOINTS.VIDEOS, video)
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function hasFriends (callback) {
|
2016-12-11 21:50:51 +01:00
|
|
|
db.Pod.countAll(function (err, count) {
|
2016-02-07 11:23:23 +01:00
|
|
|
if (err) return callback(err)
|
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
const hasFriends = (count !== 0)
|
|
|
|
callback(null, hasFriends)
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-05-10 21:19:24 +02:00
|
|
|
function getMyCertificate (callback) {
|
2016-08-19 21:34:51 +02:00
|
|
|
fs.readFile(constants.CONFIG.STORAGE.CERT_DIR + 'peertube.pub', 'utf8', callback)
|
2016-05-10 21:19:24 +02:00
|
|
|
}
|
|
|
|
|
2016-11-14 20:03:04 +01:00
|
|
|
function makeFriends (hosts, callback) {
|
2016-05-11 21:19:34 +02:00
|
|
|
const podsScore = {}
|
2016-02-07 11:23:23 +01:00
|
|
|
|
|
|
|
logger.info('Make friends!')
|
2016-05-10 21:19:24 +02:00
|
|
|
getMyCertificate(function (err, cert) {
|
2016-02-07 11:23:23 +01:00
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot read public cert.')
|
|
|
|
return callback(err)
|
|
|
|
}
|
2016-02-04 21:10:33 +01:00
|
|
|
|
2016-11-14 20:03:04 +01:00
|
|
|
eachSeries(hosts, function (host, callbackEach) {
|
|
|
|
computeForeignPodsList(host, podsScore, callbackEach)
|
2016-02-29 18:52:12 +01:00
|
|
|
}, function (err) {
|
2016-02-04 21:10:33 +01:00
|
|
|
if (err) return callback(err)
|
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
logger.debug('Pods scores computed.', { podsScore: podsScore })
|
2016-11-14 20:03:04 +01:00
|
|
|
const podsList = computeWinningPods(hosts, podsScore)
|
2016-05-11 21:19:34 +02:00
|
|
|
logger.debug('Pods that we keep.', { podsToKeep: podsList })
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
makeRequestsToWinningPods(cert, podsList, callback)
|
2016-02-04 21:10:33 +01:00
|
|
|
})
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function quitFriends (callback) {
|
|
|
|
// Stop pool requests
|
2016-12-11 21:50:51 +01:00
|
|
|
db.Request.deactivate()
|
2016-02-07 11:23:23 +01:00
|
|
|
// Flush pool requests
|
2016-12-11 21:50:51 +01:00
|
|
|
db.Request.flush()
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-07-18 17:17:52 +02:00
|
|
|
waterfall([
|
2016-05-15 10:42:17 +02:00
|
|
|
function getPodsList (callbackAsync) {
|
2016-12-11 21:50:51 +01:00
|
|
|
return db.Pod.list(callbackAsync)
|
2016-05-15 10:42:17 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
function announceIQuitMyFriends (pods, callbackAsync) {
|
2016-06-18 16:13:54 +02:00
|
|
|
const requestParams = {
|
2016-05-15 10:42:17 +02:00
|
|
|
method: 'POST',
|
|
|
|
path: '/api/' + constants.API_VERSION + '/pods/remove',
|
2016-06-18 16:13:54 +02:00
|
|
|
sign: true
|
2016-02-04 21:10:33 +01:00
|
|
|
}
|
|
|
|
|
2016-05-15 10:42:17 +02:00
|
|
|
// Announce we quit them
|
2016-06-18 16:13:54 +02:00
|
|
|
// We don't care if the request fails
|
|
|
|
// The other pod will exclude us automatically after a while
|
2016-07-18 17:17:52 +02:00
|
|
|
eachLimit(pods, constants.REQUESTS_IN_PARALLEL, function (pod, callbackEach) {
|
2016-06-18 16:13:54 +02:00
|
|
|
requestParams.toPod = pod
|
|
|
|
requests.makeSecureRequest(requestParams, callbackEach)
|
|
|
|
}, function (err) {
|
|
|
|
if (err) {
|
|
|
|
logger.error('Some errors while quitting friends.', { err: err })
|
|
|
|
// Don't stop the process
|
|
|
|
}
|
|
|
|
|
2016-10-21 11:20:45 +02:00
|
|
|
return callbackAsync(null, pods)
|
2016-05-15 10:42:17 +02:00
|
|
|
})
|
|
|
|
},
|
2016-02-04 21:10:33 +01:00
|
|
|
|
2016-10-21 11:20:45 +02:00
|
|
|
function removePodsFromDB (pods, callbackAsync) {
|
|
|
|
each(pods, function (pod, callbackEach) {
|
2016-12-11 21:50:51 +01:00
|
|
|
pod.destroy().asCallback(callbackEach)
|
2016-06-24 17:42:51 +02:00
|
|
|
}, callbackAsync)
|
2016-05-15 10:42:17 +02:00
|
|
|
}
|
|
|
|
], function (err) {
|
|
|
|
// Don't forget to re activate the scheduler, even if there was an error
|
2016-12-11 21:50:51 +01:00
|
|
|
db.Request.activate()
|
2016-05-15 10:42:17 +02:00
|
|
|
|
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
logger.info('Removed all remote videos.')
|
|
|
|
return callback(null)
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
2016-02-04 21:10:33 +01:00
|
|
|
|
2016-06-28 20:10:32 +02:00
|
|
|
function removeVideoToFriends (videoParams) {
|
2016-11-01 18:47:57 +01:00
|
|
|
createRequest('remove', constants.REQUEST_ENDPOINTS.VIDEOS, videoParams)
|
2016-06-18 16:13:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function sendOwnedVideosToPod (podId) {
|
2016-12-11 21:50:51 +01:00
|
|
|
db.Video.listOwnedAndPopulateAuthor(function (err, videosList) {
|
2016-06-18 16:13:54 +02:00
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot get the list of videos we own.')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
videosList.forEach(function (video) {
|
2016-06-24 17:42:51 +02:00
|
|
|
video.toRemoteJSON(function (err, remoteVideo) {
|
2016-06-18 16:13:54 +02:00
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot convert video to remote.', { error: err })
|
|
|
|
// Don't break the process
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-11-01 18:47:57 +01:00
|
|
|
createRequest('add', constants.REQUEST_ENDPOINTS.VIDEOS, remoteVideo, [ podId ])
|
2016-06-18 16:13:54 +02:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
2016-02-04 21:10:33 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-02-04 21:10:33 +01:00
|
|
|
|
2016-06-30 22:39:08 +02:00
|
|
|
module.exports = friends
|
2016-02-04 21:10:33 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-02-04 21:10:33 +01:00
|
|
|
|
2016-11-14 20:03:04 +01:00
|
|
|
function computeForeignPodsList (host, podsScore, callback) {
|
|
|
|
getForeignPodsList(host, function (err, foreignPodsList) {
|
2016-02-29 18:52:12 +01:00
|
|
|
if (err) return callback(err)
|
2016-06-18 16:13:54 +02:00
|
|
|
|
|
|
|
if (!foreignPodsList) foreignPodsList = []
|
|
|
|
|
|
|
|
// Let's give 1 point to the pod we ask the friends list
|
2016-11-14 20:03:04 +01:00
|
|
|
foreignPodsList.push({ host })
|
2016-02-29 18:52:12 +01:00
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
foreignPodsList.forEach(function (foreignPod) {
|
2016-11-14 20:03:04 +01:00
|
|
|
const foreignPodHost = foreignPod.host
|
2016-02-29 18:52:12 +01:00
|
|
|
|
2016-11-14 20:03:04 +01:00
|
|
|
if (podsScore[foreignPodHost]) podsScore[foreignPodHost]++
|
|
|
|
else podsScore[foreignPodHost] = 1
|
2016-02-29 18:52:12 +01:00
|
|
|
})
|
2016-05-10 21:19:24 +02:00
|
|
|
|
|
|
|
callback()
|
2016-02-29 18:52:12 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-11-14 20:03:04 +01:00
|
|
|
function computeWinningPods (hosts, podsScore) {
|
2016-02-29 18:52:12 +01:00
|
|
|
// Build the list of pods to add
|
|
|
|
// Only add a pod if it exists in more than a half base pods
|
2016-05-11 21:19:34 +02:00
|
|
|
const podsList = []
|
2016-11-14 20:03:04 +01:00
|
|
|
const baseScore = hosts.length / 2
|
|
|
|
Object.keys(podsScore).forEach(function (podHost) {
|
2016-10-23 19:31:47 +02:00
|
|
|
// If the pod is not me and with a good score we add it
|
2016-11-14 20:03:04 +01:00
|
|
|
if (isMe(podHost) === false && podsScore[podHost] > baseScore) {
|
|
|
|
podsList.push({ host: podHost })
|
2016-10-23 19:31:47 +02:00
|
|
|
}
|
2016-02-29 18:52:12 +01:00
|
|
|
})
|
2016-05-15 10:42:17 +02:00
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
return podsList
|
2016-02-29 18:52:12 +01:00
|
|
|
}
|
|
|
|
|
2016-11-14 20:03:04 +01:00
|
|
|
function getForeignPodsList (host, callback) {
|
2016-03-16 22:29:27 +01:00
|
|
|
const path = '/api/' + constants.API_VERSION + '/pods'
|
2016-02-04 21:10:33 +01:00
|
|
|
|
2016-11-14 20:03:04 +01:00
|
|
|
request.get(constants.REMOTE_SCHEME.HTTP + '://' + host + path, function (err, response, body) {
|
2016-02-07 11:23:23 +01:00
|
|
|
if (err) return callback(err)
|
2016-02-05 19:02:05 +01:00
|
|
|
|
2016-08-23 14:37:36 +02:00
|
|
|
try {
|
|
|
|
const json = JSON.parse(body)
|
|
|
|
return callback(null, json)
|
|
|
|
} catch (err) {
|
|
|
|
return callback(err)
|
|
|
|
}
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
2016-02-29 18:52:12 +01:00
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
function makeRequestsToWinningPods (cert, podsList, callback) {
|
2016-02-29 18:52:12 +01:00
|
|
|
// Stop pool requests
|
2016-12-11 21:50:51 +01:00
|
|
|
db.Request.deactivate()
|
2016-02-29 18:52:12 +01:00
|
|
|
// Flush pool requests
|
2016-12-11 21:50:51 +01:00
|
|
|
db.Request.forceSend()
|
2016-02-29 18:52:12 +01:00
|
|
|
|
2016-07-18 17:17:52 +02:00
|
|
|
eachLimit(podsList, constants.REQUESTS_IN_PARALLEL, function (pod, callbackEach) {
|
2016-06-18 16:13:54 +02:00
|
|
|
const params = {
|
2016-11-14 20:03:04 +01:00
|
|
|
url: constants.REMOTE_SCHEME.HTTP + '://' + pod.host + '/api/' + constants.API_VERSION + '/pods/',
|
2016-06-18 16:13:54 +02:00
|
|
|
method: 'POST',
|
|
|
|
json: {
|
2016-11-14 20:03:04 +01:00
|
|
|
host: constants.CONFIG.WEBSERVER.HOST,
|
2016-06-18 16:13:54 +02:00
|
|
|
publicKey: cert
|
|
|
|
}
|
2016-02-29 18:52:12 +01:00
|
|
|
}
|
|
|
|
|
2016-06-18 16:13:54 +02:00
|
|
|
requests.makeRetryRequest(params, function (err, res, body) {
|
|
|
|
if (err) {
|
2016-11-14 20:03:04 +01:00
|
|
|
logger.error('Error with adding %s pod.', pod.host, { error: err })
|
2016-06-18 16:13:54 +02:00
|
|
|
// Don't break the process
|
|
|
|
return callbackEach()
|
|
|
|
}
|
2016-02-29 18:52:12 +01:00
|
|
|
|
2016-06-18 16:13:54 +02:00
|
|
|
if (res.statusCode === 200) {
|
2016-12-11 21:50:51 +01:00
|
|
|
const podObj = db.Pod.build({ host: pod.host, publicKey: body.cert })
|
|
|
|
podObj.save().asCallback(function (err, podCreated) {
|
2016-06-30 22:39:08 +02:00
|
|
|
if (err) {
|
2016-11-14 20:03:04 +01:00
|
|
|
logger.error('Cannot add friend %s pod.', pod.host, { error: err })
|
2016-06-30 22:39:08 +02:00
|
|
|
return callbackEach()
|
|
|
|
}
|
2016-02-29 18:52:12 +01:00
|
|
|
|
2016-06-18 16:13:54 +02:00
|
|
|
// Add our videos to the request scheduler
|
|
|
|
sendOwnedVideosToPod(podCreated._id)
|
2016-02-29 18:52:12 +01:00
|
|
|
|
2016-06-18 16:13:54 +02:00
|
|
|
return callbackEach()
|
|
|
|
})
|
|
|
|
} else {
|
2016-11-14 20:03:04 +01:00
|
|
|
logger.error('Status not 200 for %s pod.', pod.host)
|
2016-06-18 16:13:54 +02:00
|
|
|
return callbackEach()
|
2016-02-29 18:52:12 +01:00
|
|
|
}
|
2016-06-18 16:13:54 +02:00
|
|
|
})
|
|
|
|
}, function endRequests () {
|
|
|
|
// Final callback, we've ended all the requests
|
|
|
|
// Now we made new friends, we can re activate the pool of requests
|
2016-12-11 21:50:51 +01:00
|
|
|
db.Request.activate()
|
2016-06-18 16:13:54 +02:00
|
|
|
|
|
|
|
logger.debug('makeRequestsToWinningPods finished.')
|
|
|
|
return callback()
|
2016-02-29 18:52:12 +01:00
|
|
|
})
|
|
|
|
}
|
2016-06-28 20:10:32 +02:00
|
|
|
|
2016-12-11 21:50:51 +01:00
|
|
|
// Wrapper that populate "to" argument with all our friends if it is not specified
|
2016-11-01 18:47:57 +01:00
|
|
|
function createRequest (type, endpoint, data, to) {
|
2016-12-11 21:50:51 +01:00
|
|
|
if (to) return _createRequest(type, endpoint, data, to)
|
|
|
|
|
|
|
|
// If the "to" pods is not specified, we send the request to all our friends
|
|
|
|
db.Pod.listAllIds(function (err, podIds) {
|
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot get pod ids', { error: err })
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
return _createRequest(type, endpoint, data, podIds)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function _createRequest (type, endpoint, data, to) {
|
|
|
|
const pods = []
|
|
|
|
|
|
|
|
// If there are no destination pods abort
|
|
|
|
if (to.length === 0) return
|
|
|
|
|
|
|
|
to.forEach(function (toPod) {
|
|
|
|
pods.push(db.Pod.build({ id: toPod }))
|
|
|
|
})
|
|
|
|
|
|
|
|
const createQuery = {
|
2016-11-01 18:47:57 +01:00
|
|
|
endpoint,
|
2016-06-28 20:10:32 +02:00
|
|
|
request: {
|
|
|
|
type: type,
|
|
|
|
data: data
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-11 21:50:51 +01:00
|
|
|
// We run in transaction to keep coherency between Request and RequestToPod tables
|
|
|
|
db.sequelize.transaction(function (t) {
|
|
|
|
const dbRequestOptions = {
|
|
|
|
transaction: t
|
|
|
|
}
|
|
|
|
|
|
|
|
return db.Request.create(createQuery, dbRequestOptions).then(function (request) {
|
|
|
|
return request.setPods(pods, dbRequestOptions)
|
|
|
|
})
|
|
|
|
}).asCallback(function (err) {
|
|
|
|
if (err) logger.error('Error in createRequest transaction.', { error: err })
|
2016-06-28 20:10:32 +02:00
|
|
|
})
|
|
|
|
}
|
2016-10-23 19:31:47 +02:00
|
|
|
|
2016-11-14 20:03:04 +01:00
|
|
|
function isMe (host) {
|
|
|
|
return host === constants.CONFIG.WEBSERVER.HOST
|
2016-10-23 19:31:47 +02:00
|
|
|
}
|