]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/friends.js
Server: add npm run check to check CORS, bittorrent tracker...
[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
100 return callbackAsync()
e7ea2817
C
101 })
102 },
c173e565 103
e7ea2817 104 function removePodsFromDB (callbackAsync) {
a3ee6fa2 105 Pod.removeAll(function (err) {
e7ea2817
C
106 return callbackAsync(err)
107 })
108 },
c173e565 109
e7ea2817
C
110 function listRemoteVideos (callbackAsync) {
111 logger.info('Broke friends, so sad :(')
c173e565 112
aaf61f38 113 Video.listRemotes(callbackAsync)
e7ea2817 114 },
c173e565 115
e7ea2817 116 function removeTheRemoteVideos (videosList, callbackAsync) {
1a42c9e2 117 each(videosList, function (video, callbackEach) {
aaf61f38
C
118 video.remove(callbackEach)
119 }, callbackAsync)
e7ea2817
C
120 }
121 ], function (err) {
122 // Don't forget to re activate the scheduler, even if there was an error
00057e85 123 Request.activate()
e7ea2817
C
124
125 if (err) return callback(err)
126
127 logger.info('Removed all remote videos.')
128 return callback(null)
9f10b292
C
129 })
130}
c173e565 131
00057e85
C
132function removeVideoToFriends (videoParams) {
133 createRequest('remove', videoParams)
528a9efa
C
134}
135
136function sendOwnedVideosToPod (podId) {
aaf61f38 137 Video.listOwned(function (err, videosList) {
528a9efa
C
138 if (err) {
139 logger.error('Cannot get the list of videos we own.')
140 return
141 }
142
143 videosList.forEach(function (video) {
aaf61f38 144 video.toRemoteJSON(function (err, remoteVideo) {
528a9efa
C
145 if (err) {
146 logger.error('Cannot convert video to remote.', { error: err })
147 // Don't break the process
148 return
149 }
150
00057e85 151 createRequest('add', remoteVideo, [ podId ])
528a9efa
C
152 })
153 })
154 })
9f10b292 155}
c173e565 156
9f10b292 157// ---------------------------------------------------------------------------
c173e565 158
a3ee6fa2 159module.exports = friends
c173e565 160
9f10b292 161// ---------------------------------------------------------------------------
c173e565 162
bc503c2a 163function computeForeignPodsList (url, podsScore, callback) {
bc503c2a 164 getForeignPodsList(url, function (err, foreignPodsList) {
89d1d8ba 165 if (err) return callback(err)
528a9efa
C
166
167 if (!foreignPodsList) foreignPodsList = []
168
169 // Let's give 1 point to the pod we ask the friends list
170 foreignPodsList.push({ url: url })
89d1d8ba 171
bc503c2a 172 foreignPodsList.forEach(function (foreignPod) {
528a9efa 173 const foreignPodUrl = foreignPod.url
89d1d8ba 174
528a9efa
C
175 if (podsScore[foreignPodUrl]) podsScore[foreignPodUrl]++
176 else podsScore[foreignPodUrl] = 1
89d1d8ba 177 })
cbe2f7c3
C
178
179 callback()
89d1d8ba
C
180 })
181}
182
bc503c2a 183function computeWinningPods (urls, podsScore) {
89d1d8ba
C
184 // Build the list of pods to add
185 // Only add a pod if it exists in more than a half base pods
bc503c2a
C
186 const podsList = []
187 const baseScore = urls.length / 2
d6ea0175 188 Object.keys(podsScore).forEach(function (pod) {
bc503c2a 189 if (podsScore[pod] > baseScore) podsList.push({ url: pod })
89d1d8ba 190 })
e7ea2817 191
bc503c2a 192 return podsList
89d1d8ba
C
193}
194
9f10b292 195function getForeignPodsList (url, callback) {
f0f5567b 196 const path = '/api/' + constants.API_VERSION + '/pods'
c173e565 197
9f10b292
C
198 request.get(url + path, function (err, response, body) {
199 if (err) return callback(err)
8425cb89 200
39f87cb2
C
201 try {
202 const json = JSON.parse(body)
203 return callback(null, json)
204 } catch (err) {
205 return callback(err)
206 }
9f10b292
C
207 })
208}
89d1d8ba 209
bc503c2a 210function makeRequestsToWinningPods (cert, podsList, callback) {
89d1d8ba 211 // Stop pool requests
00057e85 212 Request.deactivate()
89d1d8ba 213 // Flush pool requests
00057e85 214 Request.forceSend()
89d1d8ba 215
1a42c9e2 216 eachLimit(podsList, constants.REQUESTS_IN_PARALLEL, function (pod, callbackEach) {
528a9efa
C
217 const params = {
218 url: pod.url + '/api/' + constants.API_VERSION + '/pods/',
219 method: 'POST',
220 json: {
e861452f 221 url: constants.CONFIG.WEBSERVER.URL,
528a9efa
C
222 publicKey: cert
223 }
89d1d8ba
C
224 }
225
528a9efa
C
226 requests.makeRetryRequest(params, function (err, res, body) {
227 if (err) {
228 logger.error('Error with adding %s pod.', pod.url, { error: err })
229 // Don't break the process
230 return callbackEach()
231 }
89d1d8ba 232
528a9efa 233 if (res.statusCode === 200) {
a3ee6fa2
C
234 const podObj = new Pod({ url: pod.url, publicKey: body.cert })
235 podObj.save(function (err, podCreated) {
236 if (err) {
237 logger.error('Cannot add friend %s pod.', pod.url, { error: err })
238 return callbackEach()
239 }
89d1d8ba 240
528a9efa
C
241 // Add our videos to the request scheduler
242 sendOwnedVideosToPod(podCreated._id)
89d1d8ba 243
528a9efa
C
244 return callbackEach()
245 })
246 } else {
247 logger.error('Status not 200 for %s pod.', pod.url)
248 return callbackEach()
89d1d8ba 249 }
528a9efa
C
250 })
251 }, function endRequests () {
252 // Final callback, we've ended all the requests
253 // Now we made new friends, we can re activate the pool of requests
00057e85 254 Request.activate()
528a9efa
C
255
256 logger.debug('makeRequestsToWinningPods finished.')
257 return callback()
89d1d8ba
C
258 })
259}
00057e85
C
260
261function createRequest (type, data, to) {
262 const req = new Request({
263 request: {
264 type: type,
265 data: data
266 }
267 })
268
269 if (to) {
270 req.to = to
271 }
272
273 req.save(function (err) {
274 if (err) logger.error('Cannot save the request.', { error: err })
275 })
276}