]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/friends.js
Server: pod removing refractoring
[github/Chocobozzz/PeerTube.git] / server / lib / friends.js
CommitLineData
9f10b292
C
1'use strict'
2
1a42c9e2
C
3const each = require('async/each')
4const eachLimit = require('async/eachLimit')
5const eachSeries = require('async/eachSeries')
f0f5567b 6const fs = require('fs')
aaf61f38 7const mongoose = require('mongoose')
f0f5567b 8const request = require('request')
1a42c9e2 9const waterfall = require('async/waterfall')
f0f5567b
C
10
11const constants = require('../initializers/constants')
12const logger = require('../helpers/logger')
f0f5567b 13const requests = require('../helpers/requests')
f0f5567b 14
a3ee6fa2 15const Pod = mongoose.model('Pod')
00057e85 16const Request = mongoose.model('Request')
aaf61f38 17const Video = mongoose.model('Video')
f0f5567b 18
a3ee6fa2 19const friends = {
c4403b29
C
20 addVideoToFriends,
21 hasFriends,
22 getMyCertificate,
23 makeFriends,
24 quitFriends,
25 removeVideoToFriends,
26 sendOwnedVideosToPod
9f10b292
C
27}
28
29function addVideoToFriends (video) {
00057e85 30 createRequest('add', video)
9f10b292
C
31}
32
33function hasFriends (callback) {
a3ee6fa2 34 Pod.countAll(function (err, count) {
9f10b292
C
35 if (err) return callback(err)
36
bc503c2a
C
37 const hasFriends = (count !== 0)
38 callback(null, hasFriends)
9f10b292
C
39 })
40}
41
cbe2f7c3 42function getMyCertificate (callback) {
e861452f 43 fs.readFile(constants.CONFIG.STORAGE.CERT_DIR + 'peertube.pub', 'utf8', callback)
cbe2f7c3
C
44}
45
1e2564d3 46function makeFriends (urls, callback) {
bc503c2a 47 const podsScore = {}
9f10b292
C
48
49 logger.info('Make friends!')
cbe2f7c3 50 getMyCertificate(function (err, cert) {
9f10b292
C
51 if (err) {
52 logger.error('Cannot read public cert.')
53 return callback(err)
54 }
c173e565 55
1a42c9e2 56 eachSeries(urls, function (url, callbackEach) {
bc503c2a 57 computeForeignPodsList(url, podsScore, callbackEach)
89d1d8ba 58 }, function (err) {
c173e565
C
59 if (err) return callback(err)
60
bc503c2a
C
61 logger.debug('Pods scores computed.', { podsScore: podsScore })
62 const podsList = computeWinningPods(urls, podsScore)
63 logger.debug('Pods that we keep.', { podsToKeep: podsList })
9f10b292 64
bc503c2a 65 makeRequestsToWinningPods(cert, podsList, callback)
c173e565 66 })
9f10b292 67 })
9f10b292
C
68}
69
70function quitFriends (callback) {
71 // Stop pool requests
00057e85 72 Request.deactivate()
9f10b292 73 // Flush pool requests
00057e85 74 Request.flush()
9f10b292 75
1a42c9e2 76 waterfall([
e7ea2817 77 function getPodsList (callbackAsync) {
a3ee6fa2 78 return Pod.list(callbackAsync)
e7ea2817
C
79 },
80
81 function announceIQuitMyFriends (pods, callbackAsync) {
528a9efa 82 const requestParams = {
e7ea2817
C
83 method: 'POST',
84 path: '/api/' + constants.API_VERSION + '/pods/remove',
528a9efa 85 sign: true
c173e565
C
86 }
87
e7ea2817 88 // Announce we quit them
528a9efa
C
89 // We don't care if the request fails
90 // The other pod will exclude us automatically after a while
1a42c9e2 91 eachLimit(pods, constants.REQUESTS_IN_PARALLEL, function (pod, callbackEach) {
528a9efa
C
92 requestParams.toPod = pod
93 requests.makeSecureRequest(requestParams, callbackEach)
94 }, function (err) {
95 if (err) {
96 logger.error('Some errors while quitting friends.', { err: err })
97 // Don't stop the process
98 }
99
80a6c9e7 100 return callbackAsync(null, pods)
e7ea2817
C
101 })
102 },
c173e565 103
80a6c9e7
C
104 function removePodsFromDB (pods, callbackAsync) {
105 each(pods, function (pod, callbackEach) {
106 pod.remove(callbackEach)
aaf61f38 107 }, callbackAsync)
e7ea2817
C
108 }
109 ], function (err) {
110 // Don't forget to re activate the scheduler, even if there was an error
00057e85 111 Request.activate()
e7ea2817
C
112
113 if (err) return callback(err)
114
115 logger.info('Removed all remote videos.')
116 return callback(null)
9f10b292
C
117 })
118}
c173e565 119
00057e85
C
120function removeVideoToFriends (videoParams) {
121 createRequest('remove', videoParams)
528a9efa
C
122}
123
124function sendOwnedVideosToPod (podId) {
aaf61f38 125 Video.listOwned(function (err, videosList) {
528a9efa
C
126 if (err) {
127 logger.error('Cannot get the list of videos we own.')
128 return
129 }
130
131 videosList.forEach(function (video) {
aaf61f38 132 video.toRemoteJSON(function (err, remoteVideo) {
528a9efa
C
133 if (err) {
134 logger.error('Cannot convert video to remote.', { error: err })
135 // Don't break the process
136 return
137 }
138
00057e85 139 createRequest('add', remoteVideo, [ podId ])
528a9efa
C
140 })
141 })
142 })
9f10b292 143}
c173e565 144
9f10b292 145// ---------------------------------------------------------------------------
c173e565 146
a3ee6fa2 147module.exports = friends
c173e565 148
9f10b292 149// ---------------------------------------------------------------------------
c173e565 150
bc503c2a 151function computeForeignPodsList (url, podsScore, callback) {
bc503c2a 152 getForeignPodsList(url, function (err, foreignPodsList) {
89d1d8ba 153 if (err) return callback(err)
528a9efa
C
154
155 if (!foreignPodsList) foreignPodsList = []
156
157 // Let's give 1 point to the pod we ask the friends list
158 foreignPodsList.push({ url: url })
89d1d8ba 159
bc503c2a 160 foreignPodsList.forEach(function (foreignPod) {
528a9efa 161 const foreignPodUrl = foreignPod.url
89d1d8ba 162
528a9efa
C
163 if (podsScore[foreignPodUrl]) podsScore[foreignPodUrl]++
164 else podsScore[foreignPodUrl] = 1
89d1d8ba 165 })
cbe2f7c3
C
166
167 callback()
89d1d8ba
C
168 })
169}
170
bc503c2a 171function computeWinningPods (urls, podsScore) {
89d1d8ba
C
172 // Build the list of pods to add
173 // Only add a pod if it exists in more than a half base pods
bc503c2a
C
174 const podsList = []
175 const baseScore = urls.length / 2
d6ea0175 176 Object.keys(podsScore).forEach(function (pod) {
bc503c2a 177 if (podsScore[pod] > baseScore) podsList.push({ url: pod })
89d1d8ba 178 })
e7ea2817 179
bc503c2a 180 return podsList
89d1d8ba
C
181}
182
9f10b292 183function getForeignPodsList (url, callback) {
f0f5567b 184 const path = '/api/' + constants.API_VERSION + '/pods'
c173e565 185
9f10b292
C
186 request.get(url + path, function (err, response, body) {
187 if (err) return callback(err)
8425cb89 188
39f87cb2
C
189 try {
190 const json = JSON.parse(body)
191 return callback(null, json)
192 } catch (err) {
193 return callback(err)
194 }
9f10b292
C
195 })
196}
89d1d8ba 197
bc503c2a 198function makeRequestsToWinningPods (cert, podsList, callback) {
89d1d8ba 199 // Stop pool requests
00057e85 200 Request.deactivate()
89d1d8ba 201 // Flush pool requests
00057e85 202 Request.forceSend()
89d1d8ba 203
1a42c9e2 204 eachLimit(podsList, constants.REQUESTS_IN_PARALLEL, function (pod, callbackEach) {
528a9efa
C
205 const params = {
206 url: pod.url + '/api/' + constants.API_VERSION + '/pods/',
207 method: 'POST',
208 json: {
e861452f 209 url: constants.CONFIG.WEBSERVER.URL,
528a9efa
C
210 publicKey: cert
211 }
89d1d8ba
C
212 }
213
528a9efa
C
214 requests.makeRetryRequest(params, function (err, res, body) {
215 if (err) {
216 logger.error('Error with adding %s pod.', pod.url, { error: err })
217 // Don't break the process
218 return callbackEach()
219 }
89d1d8ba 220
528a9efa 221 if (res.statusCode === 200) {
a3ee6fa2
C
222 const podObj = new Pod({ url: pod.url, publicKey: body.cert })
223 podObj.save(function (err, podCreated) {
224 if (err) {
225 logger.error('Cannot add friend %s pod.', pod.url, { error: err })
226 return callbackEach()
227 }
89d1d8ba 228
528a9efa
C
229 // Add our videos to the request scheduler
230 sendOwnedVideosToPod(podCreated._id)
89d1d8ba 231
528a9efa
C
232 return callbackEach()
233 })
234 } else {
235 logger.error('Status not 200 for %s pod.', pod.url)
236 return callbackEach()
89d1d8ba 237 }
528a9efa
C
238 })
239 }, function endRequests () {
240 // Final callback, we've ended all the requests
241 // Now we made new friends, we can re activate the pool of requests
00057e85 242 Request.activate()
528a9efa
C
243
244 logger.debug('makeRequestsToWinningPods finished.')
245 return callback()
89d1d8ba
C
246 })
247}
00057e85
C
248
249function createRequest (type, data, to) {
250 const req = new Request({
251 request: {
252 type: type,
253 data: data
254 }
255 })
256
257 if (to) {
258 req.to = to
259 }
260
261 req.save(function (err) {
262 if (err) logger.error('Cannot save the request.', { error: err })
263 })
264}