2016-02-07 05:23:23 -05:00
|
|
|
'use strict'
|
|
|
|
|
2016-07-18 11:17:52 -04:00
|
|
|
const each = require('async/each')
|
|
|
|
const eachLimit = require('async/eachLimit')
|
|
|
|
const eachSeries = require('async/eachSeries')
|
2016-03-16 17:29:27 -04:00
|
|
|
const fs = require('fs')
|
2016-06-24 11:42:51 -04:00
|
|
|
const mongoose = require('mongoose')
|
2016-03-16 17:29:27 -04:00
|
|
|
const request = require('request')
|
2016-07-18 11:17:52 -04:00
|
|
|
const waterfall = require('async/waterfall')
|
2016-03-16 17:29:27 -04:00
|
|
|
|
|
|
|
const constants = require('../initializers/constants')
|
|
|
|
const logger = require('../helpers/logger')
|
|
|
|
const requests = require('../helpers/requests')
|
|
|
|
|
2016-06-30 16:39:08 -04:00
|
|
|
const Pod = mongoose.model('Pod')
|
2016-06-28 14:10:32 -04:00
|
|
|
const Request = mongoose.model('Request')
|
2016-06-24 11:42:51 -04:00
|
|
|
const Video = mongoose.model('Video')
|
2016-03-16 17:29:27 -04:00
|
|
|
|
2016-06-30 16:39:08 -04:00
|
|
|
const friends = {
|
2016-10-02 06:19:02 -04:00
|
|
|
addVideoToFriends,
|
|
|
|
hasFriends,
|
|
|
|
getMyCertificate,
|
|
|
|
makeFriends,
|
|
|
|
quitFriends,
|
|
|
|
removeVideoToFriends,
|
|
|
|
sendOwnedVideosToPod
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function addVideoToFriends (video) {
|
2016-06-28 14:10:32 -04:00
|
|
|
createRequest('add', video)
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function hasFriends (callback) {
|
2016-06-30 16:39:08 -04:00
|
|
|
Pod.countAll(function (err, count) {
|
2016-02-07 05:23:23 -05:00
|
|
|
if (err) return callback(err)
|
|
|
|
|
2016-05-11 15:19:34 -04:00
|
|
|
const hasFriends = (count !== 0)
|
|
|
|
callback(null, hasFriends)
|
2016-02-07 05:23:23 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-05-10 15:19:24 -04:00
|
|
|
function getMyCertificate (callback) {
|
2016-08-19 15:34:51 -04:00
|
|
|
fs.readFile(constants.CONFIG.STORAGE.CERT_DIR + 'peertube.pub', 'utf8', callback)
|
2016-05-10 15:19:24 -04:00
|
|
|
}
|
|
|
|
|
2016-08-20 10:59:25 -04:00
|
|
|
function makeFriends (urls, callback) {
|
2016-05-11 15:19:34 -04:00
|
|
|
const podsScore = {}
|
2016-02-07 05:23:23 -05:00
|
|
|
|
|
|
|
logger.info('Make friends!')
|
2016-05-10 15:19:24 -04:00
|
|
|
getMyCertificate(function (err, cert) {
|
2016-02-07 05:23:23 -05:00
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot read public cert.')
|
|
|
|
return callback(err)
|
|
|
|
}
|
2016-02-04 15:10:33 -05:00
|
|
|
|
2016-07-18 11:17:52 -04:00
|
|
|
eachSeries(urls, function (url, callbackEach) {
|
2016-05-11 15:19:34 -04:00
|
|
|
computeForeignPodsList(url, podsScore, callbackEach)
|
2016-02-29 12:52:12 -05:00
|
|
|
}, function (err) {
|
2016-02-04 15:10:33 -05:00
|
|
|
if (err) return callback(err)
|
|
|
|
|
2016-05-11 15:19:34 -04:00
|
|
|
logger.debug('Pods scores computed.', { podsScore: podsScore })
|
|
|
|
const podsList = computeWinningPods(urls, podsScore)
|
|
|
|
logger.debug('Pods that we keep.', { podsToKeep: podsList })
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-05-11 15:19:34 -04:00
|
|
|
makeRequestsToWinningPods(cert, podsList, callback)
|
2016-02-04 15:10:33 -05:00
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function quitFriends (callback) {
|
|
|
|
// Stop pool requests
|
2016-06-28 14:10:32 -04:00
|
|
|
Request.deactivate()
|
2016-02-07 05:23:23 -05:00
|
|
|
// Flush pool requests
|
2016-06-28 14:10:32 -04:00
|
|
|
Request.flush()
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-07-18 11:17:52 -04:00
|
|
|
waterfall([
|
2016-05-15 04:42:17 -04:00
|
|
|
function getPodsList (callbackAsync) {
|
2016-06-30 16:39:08 -04:00
|
|
|
return Pod.list(callbackAsync)
|
2016-05-15 04:42:17 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
function announceIQuitMyFriends (pods, callbackAsync) {
|
2016-06-18 10:13:54 -04:00
|
|
|
const requestParams = {
|
2016-05-15 04:42:17 -04:00
|
|
|
method: 'POST',
|
|
|
|
path: '/api/' + constants.API_VERSION + '/pods/remove',
|
2016-06-18 10:13:54 -04:00
|
|
|
sign: true
|
2016-02-04 15:10:33 -05:00
|
|
|
}
|
|
|
|
|
2016-05-15 04:42:17 -04:00
|
|
|
// Announce we quit them
|
2016-06-18 10:13:54 -04:00
|
|
|
// We don't care if the request fails
|
|
|
|
// The other pod will exclude us automatically after a while
|
2016-07-18 11:17:52 -04:00
|
|
|
eachLimit(pods, constants.REQUESTS_IN_PARALLEL, function (pod, callbackEach) {
|
2016-06-18 10:13:54 -04: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
|
|
|
|
}
|
|
|
|
|
|
|
|
return callbackAsync()
|
2016-05-15 04:42:17 -04:00
|
|
|
})
|
|
|
|
},
|
2016-02-04 15:10:33 -05:00
|
|
|
|
2016-05-15 04:42:17 -04:00
|
|
|
function removePodsFromDB (callbackAsync) {
|
2016-06-30 16:39:08 -04:00
|
|
|
Pod.removeAll(function (err) {
|
2016-05-15 04:42:17 -04:00
|
|
|
return callbackAsync(err)
|
|
|
|
})
|
|
|
|
},
|
2016-02-04 15:10:33 -05:00
|
|
|
|
2016-05-15 04:42:17 -04:00
|
|
|
function listRemoteVideos (callbackAsync) {
|
|
|
|
logger.info('Broke friends, so sad :(')
|
2016-02-04 15:10:33 -05:00
|
|
|
|
2016-06-24 11:42:51 -04:00
|
|
|
Video.listRemotes(callbackAsync)
|
2016-05-15 04:42:17 -04:00
|
|
|
},
|
2016-02-04 15:10:33 -05:00
|
|
|
|
2016-05-15 04:42:17 -04:00
|
|
|
function removeTheRemoteVideos (videosList, callbackAsync) {
|
2016-07-18 11:17:52 -04:00
|
|
|
each(videosList, function (video, callbackEach) {
|
2016-06-24 11:42:51 -04:00
|
|
|
video.remove(callbackEach)
|
|
|
|
}, callbackAsync)
|
2016-05-15 04:42:17 -04:00
|
|
|
}
|
|
|
|
], function (err) {
|
|
|
|
// Don't forget to re activate the scheduler, even if there was an error
|
2016-06-28 14:10:32 -04:00
|
|
|
Request.activate()
|
2016-05-15 04:42:17 -04:00
|
|
|
|
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
logger.info('Removed all remote videos.')
|
|
|
|
return callback(null)
|
2016-02-07 05:23:23 -05:00
|
|
|
})
|
|
|
|
}
|
2016-02-04 15:10:33 -05:00
|
|
|
|
2016-06-28 14:10:32 -04:00
|
|
|
function removeVideoToFriends (videoParams) {
|
|
|
|
createRequest('remove', videoParams)
|
2016-06-18 10:13:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function sendOwnedVideosToPod (podId) {
|
2016-06-24 11:42:51 -04:00
|
|
|
Video.listOwned(function (err, videosList) {
|
2016-06-18 10:13:54 -04:00
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot get the list of videos we own.')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
videosList.forEach(function (video) {
|
2016-06-24 11:42:51 -04:00
|
|
|
video.toRemoteJSON(function (err, remoteVideo) {
|
2016-06-18 10:13:54 -04:00
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot convert video to remote.', { error: err })
|
|
|
|
// Don't break the process
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-06-28 14:10:32 -04:00
|
|
|
createRequest('add', remoteVideo, [ podId ])
|
2016-06-18 10:13:54 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
2016-02-04 15:10:33 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-02-04 15:10:33 -05:00
|
|
|
|
2016-06-30 16:39:08 -04:00
|
|
|
module.exports = friends
|
2016-02-04 15:10:33 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-02-04 15:10:33 -05:00
|
|
|
|
2016-05-11 15:19:34 -04:00
|
|
|
function computeForeignPodsList (url, podsScore, callback) {
|
|
|
|
getForeignPodsList(url, function (err, foreignPodsList) {
|
2016-02-29 12:52:12 -05:00
|
|
|
if (err) return callback(err)
|
2016-06-18 10:13:54 -04:00
|
|
|
|
|
|
|
if (!foreignPodsList) foreignPodsList = []
|
|
|
|
|
|
|
|
// Let's give 1 point to the pod we ask the friends list
|
|
|
|
foreignPodsList.push({ url: url })
|
2016-02-29 12:52:12 -05:00
|
|
|
|
2016-05-11 15:19:34 -04:00
|
|
|
foreignPodsList.forEach(function (foreignPod) {
|
2016-06-18 10:13:54 -04:00
|
|
|
const foreignPodUrl = foreignPod.url
|
2016-02-29 12:52:12 -05:00
|
|
|
|
2016-06-18 10:13:54 -04:00
|
|
|
if (podsScore[foreignPodUrl]) podsScore[foreignPodUrl]++
|
|
|
|
else podsScore[foreignPodUrl] = 1
|
2016-02-29 12:52:12 -05:00
|
|
|
})
|
2016-05-10 15:19:24 -04:00
|
|
|
|
|
|
|
callback()
|
2016-02-29 12:52:12 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-05-11 15:19:34 -04:00
|
|
|
function computeWinningPods (urls, podsScore) {
|
2016-02-29 12:52:12 -05: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 15:19:34 -04:00
|
|
|
const podsList = []
|
|
|
|
const baseScore = urls.length / 2
|
2016-05-13 09:02:51 -04:00
|
|
|
Object.keys(podsScore).forEach(function (pod) {
|
2016-05-11 15:19:34 -04:00
|
|
|
if (podsScore[pod] > baseScore) podsList.push({ url: pod })
|
2016-02-29 12:52:12 -05:00
|
|
|
})
|
2016-05-15 04:42:17 -04:00
|
|
|
|
2016-05-11 15:19:34 -04:00
|
|
|
return podsList
|
2016-02-29 12:52:12 -05:00
|
|
|
}
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
function getForeignPodsList (url, callback) {
|
2016-03-16 17:29:27 -04:00
|
|
|
const path = '/api/' + constants.API_VERSION + '/pods'
|
2016-02-04 15:10:33 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
request.get(url + path, function (err, response, body) {
|
|
|
|
if (err) return callback(err)
|
2016-02-05 13:02:05 -05:00
|
|
|
|
2016-08-23 08:37:36 -04:00
|
|
|
try {
|
|
|
|
const json = JSON.parse(body)
|
|
|
|
return callback(null, json)
|
|
|
|
} catch (err) {
|
|
|
|
return callback(err)
|
|
|
|
}
|
2016-02-07 05:23:23 -05:00
|
|
|
})
|
|
|
|
}
|
2016-02-29 12:52:12 -05:00
|
|
|
|
2016-05-11 15:19:34 -04:00
|
|
|
function makeRequestsToWinningPods (cert, podsList, callback) {
|
2016-02-29 12:52:12 -05:00
|
|
|
// Stop pool requests
|
2016-06-28 14:10:32 -04:00
|
|
|
Request.deactivate()
|
2016-02-29 12:52:12 -05:00
|
|
|
// Flush pool requests
|
2016-06-28 14:10:32 -04:00
|
|
|
Request.forceSend()
|
2016-02-29 12:52:12 -05:00
|
|
|
|
2016-07-18 11:17:52 -04:00
|
|
|
eachLimit(podsList, constants.REQUESTS_IN_PARALLEL, function (pod, callbackEach) {
|
2016-06-18 10:13:54 -04:00
|
|
|
const params = {
|
|
|
|
url: pod.url + '/api/' + constants.API_VERSION + '/pods/',
|
|
|
|
method: 'POST',
|
|
|
|
json: {
|
2016-08-19 15:34:51 -04:00
|
|
|
url: constants.CONFIG.WEBSERVER.URL,
|
2016-06-18 10:13:54 -04:00
|
|
|
publicKey: cert
|
|
|
|
}
|
2016-02-29 12:52:12 -05:00
|
|
|
}
|
|
|
|
|
2016-06-18 10:13:54 -04:00
|
|
|
requests.makeRetryRequest(params, function (err, res, body) {
|
|
|
|
if (err) {
|
|
|
|
logger.error('Error with adding %s pod.', pod.url, { error: err })
|
|
|
|
// Don't break the process
|
|
|
|
return callbackEach()
|
|
|
|
}
|
2016-02-29 12:52:12 -05:00
|
|
|
|
2016-06-18 10:13:54 -04:00
|
|
|
if (res.statusCode === 200) {
|
2016-06-30 16:39:08 -04:00
|
|
|
const podObj = new Pod({ url: pod.url, publicKey: body.cert })
|
|
|
|
podObj.save(function (err, podCreated) {
|
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot add friend %s pod.', pod.url, { error: err })
|
|
|
|
return callbackEach()
|
|
|
|
}
|
2016-02-29 12:52:12 -05:00
|
|
|
|
2016-06-18 10:13:54 -04:00
|
|
|
// Add our videos to the request scheduler
|
|
|
|
sendOwnedVideosToPod(podCreated._id)
|
2016-02-29 12:52:12 -05:00
|
|
|
|
2016-06-18 10:13:54 -04:00
|
|
|
return callbackEach()
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
logger.error('Status not 200 for %s pod.', pod.url)
|
|
|
|
return callbackEach()
|
2016-02-29 12:52:12 -05:00
|
|
|
}
|
2016-06-18 10:13:54 -04: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-06-28 14:10:32 -04:00
|
|
|
Request.activate()
|
2016-06-18 10:13:54 -04:00
|
|
|
|
|
|
|
logger.debug('makeRequestsToWinningPods finished.')
|
|
|
|
return callback()
|
2016-02-29 12:52:12 -05:00
|
|
|
})
|
|
|
|
}
|
2016-06-28 14:10:32 -04:00
|
|
|
|
|
|
|
function createRequest (type, data, to) {
|
|
|
|
const req = new Request({
|
|
|
|
request: {
|
|
|
|
type: type,
|
|
|
|
data: data
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
if (to) {
|
|
|
|
req.to = to
|
|
|
|
}
|
|
|
|
|
|
|
|
req.save(function (err) {
|
|
|
|
if (err) logger.error('Cannot save the request.', { error: err })
|
|
|
|
})
|
|
|
|
}
|