2017-06-05 15:53:49 -04:00
|
|
|
import * as request from 'request'
|
2017-06-10 16:15:25 -04:00
|
|
|
import * as Sequelize from 'sequelize'
|
2017-07-05 07:26:25 -04:00
|
|
|
import * as Promise from 'bluebird'
|
2017-07-12 05:56:02 -04:00
|
|
|
import { join } from 'path'
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
import { database as db } from '../initializers/database'
|
2017-05-15 16:22:03 -04:00
|
|
|
import {
|
|
|
|
API_VERSION,
|
|
|
|
CONFIG,
|
|
|
|
REQUESTS_IN_PARALLEL,
|
|
|
|
REQUEST_ENDPOINTS,
|
|
|
|
REQUEST_ENDPOINT_ACTIONS,
|
2017-07-12 05:56:02 -04:00
|
|
|
REMOTE_SCHEME,
|
|
|
|
STATIC_PATHS
|
2017-05-15 16:22:03 -04:00
|
|
|
} from '../initializers'
|
|
|
|
import {
|
|
|
|
logger,
|
|
|
|
getMyPublicCert,
|
|
|
|
makeSecureRequest,
|
2017-07-05 07:26:25 -04:00
|
|
|
makeRetryRequest
|
2017-05-15 16:22:03 -04:00
|
|
|
} from '../helpers'
|
|
|
|
import {
|
|
|
|
RequestScheduler,
|
2017-06-10 16:15:25 -04:00
|
|
|
RequestSchedulerOptions,
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
RequestVideoQaduScheduler,
|
2017-06-10 16:15:25 -04:00
|
|
|
RequestVideoQaduSchedulerOptions,
|
|
|
|
|
|
|
|
RequestVideoEventScheduler,
|
|
|
|
RequestVideoEventSchedulerOptions
|
2017-05-15 16:22:03 -04:00
|
|
|
} from './request'
|
2017-06-16 04:36:18 -04:00
|
|
|
import {
|
|
|
|
PodInstance,
|
|
|
|
VideoInstance
|
|
|
|
} from '../models'
|
|
|
|
import {
|
|
|
|
RequestEndpoint,
|
|
|
|
RequestVideoEventType,
|
2017-07-10 13:43:21 -04:00
|
|
|
RequestVideoQaduType,
|
|
|
|
RemoteVideoCreateData,
|
|
|
|
RemoteVideoUpdateData,
|
|
|
|
RemoteVideoRemoveData,
|
2017-07-11 04:59:13 -04:00
|
|
|
RemoteVideoReportAbuseData,
|
|
|
|
ResultList,
|
2017-08-25 05:45:31 -04:00
|
|
|
Pod as FormattedPod
|
2017-06-16 04:36:18 -04:00
|
|
|
} from '../../shared'
|
2017-06-10 16:15:25 -04:00
|
|
|
|
2017-07-11 10:01:56 -04:00
|
|
|
type QaduParam = { videoId: number, type: RequestVideoQaduType }
|
|
|
|
type EventParam = { videoId: number, type: RequestVideoEventType }
|
2017-05-15 16:22:03 -04:00
|
|
|
|
|
|
|
const ENDPOINT_ACTIONS = REQUEST_ENDPOINT_ACTIONS[REQUEST_ENDPOINTS.VIDEOS]
|
2017-02-21 15:35:59 -05:00
|
|
|
|
2017-02-18 12:37:26 -05:00
|
|
|
const requestScheduler = new RequestScheduler()
|
2017-02-27 15:56:55 -05:00
|
|
|
const requestVideoQaduScheduler = new RequestVideoQaduScheduler()
|
|
|
|
const requestVideoEventScheduler = new RequestVideoEventScheduler()
|
2017-01-17 14:59:16 -05:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
function activateSchedulers () {
|
2017-02-18 04:29:36 -05:00
|
|
|
requestScheduler.activate()
|
2017-02-27 15:56:55 -05:00
|
|
|
requestVideoQaduScheduler.activate()
|
|
|
|
requestVideoEventScheduler.activate()
|
2017-02-18 04:29:36 -05:00
|
|
|
}
|
|
|
|
|
2017-07-10 13:43:21 -04:00
|
|
|
function addVideoToFriends (videoData: RemoteVideoCreateData, transaction: Sequelize.Transaction) {
|
2017-01-06 17:24:47 -05:00
|
|
|
const options = {
|
2017-01-17 14:59:16 -05:00
|
|
|
type: ENDPOINT_ACTIONS.ADD,
|
2017-05-15 16:22:03 -04:00
|
|
|
endpoint: REQUEST_ENDPOINTS.VIDEOS,
|
2017-01-06 17:24:47 -05:00
|
|
|
data: videoData,
|
|
|
|
transaction
|
|
|
|
}
|
2017-07-05 07:26:25 -04:00
|
|
|
return createRequest(options)
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
|
|
|
|
2017-07-10 13:43:21 -04:00
|
|
|
function updateVideoToFriends (videoData: RemoteVideoUpdateData, transaction: Sequelize.Transaction) {
|
2017-01-06 17:24:47 -05:00
|
|
|
const options = {
|
2017-01-17 14:59:16 -05:00
|
|
|
type: ENDPOINT_ACTIONS.UPDATE,
|
2017-05-15 16:22:03 -04:00
|
|
|
endpoint: REQUEST_ENDPOINTS.VIDEOS,
|
2017-01-06 17:24:47 -05:00
|
|
|
data: videoData,
|
|
|
|
transaction
|
|
|
|
}
|
2017-07-05 07:26:25 -04:00
|
|
|
return createRequest(options)
|
2017-01-04 14:59:23 -05:00
|
|
|
}
|
|
|
|
|
2017-07-10 13:43:21 -04:00
|
|
|
function removeVideoToFriends (videoParams: RemoteVideoRemoveData) {
|
2017-01-06 17:24:47 -05:00
|
|
|
const options = {
|
2017-01-17 14:59:16 -05:00
|
|
|
type: ENDPOINT_ACTIONS.REMOVE,
|
2017-05-15 16:22:03 -04:00
|
|
|
endpoint: REQUEST_ENDPOINTS.VIDEOS,
|
2017-06-10 16:15:25 -04:00
|
|
|
data: videoParams,
|
|
|
|
transaction: null
|
2017-01-06 17:24:47 -05:00
|
|
|
}
|
2017-07-05 07:26:25 -04:00
|
|
|
return createRequest(options)
|
2017-01-04 14:59:23 -05:00
|
|
|
}
|
|
|
|
|
2017-07-10 13:43:21 -04:00
|
|
|
function reportAbuseVideoToFriend (reportData: RemoteVideoReportAbuseData, video: VideoInstance, transaction: Sequelize.Transaction) {
|
2017-01-10 16:24:42 -05:00
|
|
|
const options = {
|
2017-01-17 14:59:16 -05:00
|
|
|
type: ENDPOINT_ACTIONS.REPORT_ABUSE,
|
2017-05-15 16:22:03 -04:00
|
|
|
endpoint: REQUEST_ENDPOINTS.VIDEOS,
|
2017-01-10 16:24:42 -05:00
|
|
|
data: reportData,
|
2017-06-10 16:15:25 -04:00
|
|
|
toIds: [ video.Author.podId ],
|
2017-07-05 07:26:25 -04:00
|
|
|
transaction
|
2017-01-10 16:24:42 -05:00
|
|
|
}
|
2017-07-05 07:26:25 -04:00
|
|
|
return createRequest(options)
|
2016-12-29 13:07:05 -05:00
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
function quickAndDirtyUpdateVideoToFriends (qaduParam: QaduParam, transaction?: Sequelize.Transaction) {
|
2017-02-21 15:35:59 -05:00
|
|
|
const options = {
|
2017-06-10 16:15:25 -04:00
|
|
|
videoId: qaduParam.videoId,
|
|
|
|
type: qaduParam.type,
|
2017-02-21 15:35:59 -05:00
|
|
|
transaction
|
|
|
|
}
|
2017-07-05 07:26:25 -04:00
|
|
|
return createVideoQaduRequest(options)
|
2017-02-21 15:35:59 -05:00
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
function quickAndDirtyUpdatesVideoToFriends (qadusParams: QaduParam[], transaction: Sequelize.Transaction) {
|
2017-03-08 15:35:43 -05:00
|
|
|
const tasks = []
|
|
|
|
|
2017-07-11 11:04:57 -04:00
|
|
|
qadusParams.forEach(qaduParams => {
|
2017-07-05 07:26:25 -04:00
|
|
|
tasks.push(quickAndDirtyUpdateVideoToFriends(qaduParams, transaction))
|
2017-03-08 15:35:43 -05:00
|
|
|
})
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return Promise.all(tasks)
|
2017-03-08 15:35:43 -05:00
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
function addEventToRemoteVideo (eventParam: EventParam, transaction?: Sequelize.Transaction) {
|
2017-02-26 12:57:33 -05:00
|
|
|
const options = {
|
2017-06-10 16:15:25 -04:00
|
|
|
videoId: eventParam.videoId,
|
|
|
|
type: eventParam.type,
|
2017-02-26 12:57:33 -05:00
|
|
|
transaction
|
|
|
|
}
|
2017-07-05 07:26:25 -04:00
|
|
|
return createVideoEventRequest(options)
|
2017-02-26 12:57:33 -05:00
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
function addEventsToRemoteVideo (eventsParams: EventParam[], transaction: Sequelize.Transaction) {
|
2017-03-08 15:35:43 -05:00
|
|
|
const tasks = []
|
|
|
|
|
2017-07-11 11:04:57 -04:00
|
|
|
eventsParams.forEach(eventParams => {
|
2017-07-05 07:26:25 -04:00
|
|
|
tasks.push(addEventToRemoteVideo(eventParams, transaction))
|
2017-03-08 15:35:43 -05:00
|
|
|
})
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return Promise.all(tasks)
|
2017-03-08 15:35:43 -05:00
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
function hasFriends () {
|
|
|
|
return db.Pod.countAll().then(count => count !== 0)
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
function makeFriends (hosts: string[]) {
|
2016-05-11 15:19:34 -04:00
|
|
|
const podsScore = {}
|
2016-02-07 05:23:23 -05:00
|
|
|
|
|
|
|
logger.info('Make friends!')
|
2017-07-05 07:26:25 -04:00
|
|
|
return getMyPublicCert()
|
|
|
|
.then(cert => {
|
2017-07-07 10:57:28 -04:00
|
|
|
return Promise.each(hosts, host => computeForeignPodsList(host, podsScore)).then(() => cert)
|
2017-07-05 07:26:25 -04:00
|
|
|
})
|
|
|
|
.then(cert => {
|
2016-05-11 15:19:34 -04:00
|
|
|
logger.debug('Pods scores computed.', { podsScore: podsScore })
|
2016-11-14 14:03:04 -05:00
|
|
|
const podsList = computeWinningPods(hosts, podsScore)
|
2016-05-11 15:19:34 -04:00
|
|
|
logger.debug('Pods that we keep.', { podsToKeep: podsList })
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return makeRequestsToWinningPods(cert, podsList)
|
2016-02-04 15:10:33 -05:00
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
function quitFriends () {
|
2016-02-07 05:23:23 -05:00
|
|
|
// Stop pool requests
|
2017-02-18 04:29:36 -05:00
|
|
|
requestScheduler.deactivate()
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return requestScheduler.flush()
|
|
|
|
.then(() => {
|
|
|
|
return requestVideoQaduScheduler.flush()
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
return db.Pod.list()
|
|
|
|
})
|
|
|
|
.then(pods => {
|
2016-06-18 10:13:54 -04:00
|
|
|
const requestParams = {
|
2017-06-10 16:15:25 -04:00
|
|
|
method: 'POST' as 'POST',
|
2017-05-15 16:22:03 -04:00
|
|
|
path: '/api/' + API_VERSION + '/remote/pods/remove',
|
|
|
|
toPod: null
|
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
|
2017-07-05 07:26:25 -04:00
|
|
|
return Promise.map(pods, pod => {
|
2016-06-18 10:13:54 -04:00
|
|
|
requestParams.toPod = pod
|
2017-07-07 10:57:28 -04:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return makeSecureRequest(requestParams)
|
|
|
|
}, { concurrency: REQUESTS_IN_PARALLEL })
|
|
|
|
.then(() => pods)
|
|
|
|
.catch(err => {
|
2017-07-07 12:26:12 -04:00
|
|
|
logger.error('Some errors while quitting friends.', err)
|
2017-07-05 07:26:25 -04:00
|
|
|
// Don't stop the process
|
2016-05-15 04:42:17 -04:00
|
|
|
})
|
2017-07-05 07:26:25 -04:00
|
|
|
})
|
|
|
|
.then(pods => {
|
|
|
|
const tasks = []
|
|
|
|
pods.forEach(pod => tasks.push(pod.destroy()))
|
2016-05-15 04:42:17 -04:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return Promise.all(pods)
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
logger.info('Removed all remote videos.')
|
|
|
|
// Don't forget to re activate the scheduler, even if there was an error
|
|
|
|
return requestScheduler.activate()
|
|
|
|
})
|
|
|
|
.finally(() => requestScheduler.activate())
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
2016-02-04 15:10:33 -05:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function sendOwnedVideosToPod (podId: number) {
|
2017-07-05 07:26:25 -04:00
|
|
|
db.Video.listOwnedAndPopulateAuthorAndTags()
|
|
|
|
.then(videosList => {
|
|
|
|
const tasks = []
|
|
|
|
videosList.forEach(video => {
|
|
|
|
const promise = video.toAddRemoteJSON()
|
|
|
|
.then(remoteVideo => {
|
|
|
|
const options = {
|
|
|
|
type: 'add',
|
|
|
|
endpoint: REQUEST_ENDPOINTS.VIDEOS,
|
|
|
|
data: remoteVideo,
|
|
|
|
toIds: [ podId ],
|
|
|
|
transaction: null
|
|
|
|
}
|
|
|
|
return createRequest(options)
|
|
|
|
})
|
|
|
|
.catch(err => {
|
2017-07-07 12:26:12 -04:00
|
|
|
logger.error('Cannot convert video to remote.', err)
|
2017-07-05 07:26:25 -04:00
|
|
|
// Don't break the process
|
|
|
|
return undefined
|
|
|
|
})
|
|
|
|
|
|
|
|
tasks.push(promise)
|
2016-06-18 10:13:54 -04:00
|
|
|
})
|
2017-07-05 07:26:25 -04:00
|
|
|
|
|
|
|
return Promise.all(tasks)
|
2016-06-18 10:13:54 -04:00
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
2016-02-04 15:10:33 -05:00
|
|
|
|
2017-07-12 05:56:02 -04:00
|
|
|
function fetchRemotePreview (pod: PodInstance, video: VideoInstance) {
|
|
|
|
const host = video.Author.Pod.host
|
|
|
|
const path = join(STATIC_PATHS.PREVIEWS, video.getPreviewName())
|
|
|
|
|
|
|
|
return request.get(REMOTE_SCHEME.HTTP + '://' + host + path)
|
|
|
|
}
|
|
|
|
|
2017-08-02 15:50:42 -04:00
|
|
|
function removeFriend (pod: PodInstance) {
|
|
|
|
const requestParams = {
|
|
|
|
method: 'POST' as 'POST',
|
|
|
|
path: '/api/' + API_VERSION + '/remote/pods/remove',
|
|
|
|
toPod: pod
|
|
|
|
}
|
|
|
|
|
|
|
|
return makeSecureRequest(requestParams)
|
|
|
|
.then(() => pod.destroy())
|
|
|
|
.then(() => {
|
|
|
|
logger.info('Removed friend.')
|
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
logger.error('Some errors while quitting friend %s (id: %d).', pod.host, pod.id, err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-02-27 15:56:55 -05:00
|
|
|
function getRequestScheduler () {
|
|
|
|
return requestScheduler
|
|
|
|
}
|
|
|
|
|
|
|
|
function getRequestVideoQaduScheduler () {
|
|
|
|
return requestVideoQaduScheduler
|
|
|
|
}
|
|
|
|
|
|
|
|
function getRequestVideoEventScheduler () {
|
|
|
|
return requestVideoEventScheduler
|
|
|
|
}
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-02-04 15:10:33 -05:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
|
|
|
activateSchedulers,
|
|
|
|
addVideoToFriends,
|
|
|
|
updateVideoToFriends,
|
|
|
|
reportAbuseVideoToFriend,
|
|
|
|
quickAndDirtyUpdateVideoToFriends,
|
|
|
|
quickAndDirtyUpdatesVideoToFriends,
|
|
|
|
addEventToRemoteVideo,
|
|
|
|
addEventsToRemoteVideo,
|
|
|
|
hasFriends,
|
|
|
|
makeFriends,
|
|
|
|
quitFriends,
|
2017-08-02 15:50:42 -04:00
|
|
|
removeFriend,
|
2017-05-15 16:22:03 -04:00
|
|
|
removeVideoToFriends,
|
|
|
|
sendOwnedVideosToPod,
|
|
|
|
getRequestScheduler,
|
|
|
|
getRequestVideoQaduScheduler,
|
2017-07-12 05:56:02 -04:00
|
|
|
getRequestVideoEventScheduler,
|
|
|
|
fetchRemotePreview
|
2017-05-15 16:22:03 -04: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
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
function computeForeignPodsList (host: string, podsScore: { [ host: string ]: number }) {
|
|
|
|
// TODO: type res
|
2017-07-11 04:59:13 -04:00
|
|
|
return getForeignPodsList(host).then(res => {
|
|
|
|
const foreignPodsList: { host: string }[] = res.data
|
2016-06-18 10:13:54 -04:00
|
|
|
|
|
|
|
// Let's give 1 point to the pod we ask the friends list
|
2016-11-14 14:03:04 -05:00
|
|
|
foreignPodsList.push({ host })
|
2016-02-29 12:52:12 -05:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
foreignPodsList.forEach(foreignPod => {
|
2016-11-14 14:03:04 -05:00
|
|
|
const foreignPodHost = foreignPod.host
|
2016-02-29 12:52:12 -05:00
|
|
|
|
2016-11-14 14:03:04 -05:00
|
|
|
if (podsScore[foreignPodHost]) podsScore[foreignPodHost]++
|
|
|
|
else podsScore[foreignPodHost] = 1
|
2016-02-29 12:52:12 -05:00
|
|
|
})
|
2016-05-10 15:19:24 -04:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return undefined
|
2016-02-29 12:52:12 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function computeWinningPods (hosts: string[], podsScore: { [ host: string ]: number }) {
|
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 = []
|
2016-11-14 14:03:04 -05:00
|
|
|
const baseScore = hosts.length / 2
|
2017-01-17 15:17:07 -05:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
Object.keys(podsScore).forEach(podHost => {
|
2016-10-23 13:31:47 -04:00
|
|
|
// If the pod is not me and with a good score we add it
|
2016-11-14 14:03:04 -05:00
|
|
|
if (isMe(podHost) === false && podsScore[podHost] > baseScore) {
|
|
|
|
podsList.push({ host: podHost })
|
2016-10-23 13:31:47 -04:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
function getForeignPodsList (host: string) {
|
2017-08-25 05:45:31 -04:00
|
|
|
return new Promise< ResultList<FormattedPod> >((res, rej) => {
|
2017-07-05 07:26:25 -04:00
|
|
|
const path = '/api/' + API_VERSION + '/pods'
|
2016-02-04 15:10:33 -05:00
|
|
|
|
2017-07-11 11:04:57 -04:00
|
|
|
request.get(REMOTE_SCHEME.HTTP + '://' + host + path, (err, response, body) => {
|
2017-07-05 07:26:25 -04:00
|
|
|
if (err) return rej(err)
|
2016-02-05 13:02:05 -05:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
try {
|
|
|
|
const json = JSON.parse(body)
|
|
|
|
return res(json)
|
|
|
|
} catch (err) {
|
|
|
|
return rej(err)
|
|
|
|
}
|
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
})
|
|
|
|
}
|
2016-02-29 12:52:12 -05:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
function makeRequestsToWinningPods (cert: string, podsList: PodInstance[]) {
|
2016-02-29 12:52:12 -05:00
|
|
|
// Stop pool requests
|
2017-02-18 04:29:36 -05:00
|
|
|
requestScheduler.deactivate()
|
2016-02-29 12:52:12 -05:00
|
|
|
// Flush pool requests
|
2017-02-18 04:29:36 -05:00
|
|
|
requestScheduler.forceSend()
|
2016-02-29 12:52:12 -05:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return Promise.map(podsList, pod => {
|
2016-06-18 10:13:54 -04:00
|
|
|
const params = {
|
2017-05-15 16:22:03 -04:00
|
|
|
url: REMOTE_SCHEME.HTTP + '://' + pod.host + '/api/' + API_VERSION + '/pods/',
|
2017-06-10 16:15:25 -04:00
|
|
|
method: 'POST' as 'POST',
|
2016-06-18 10:13:54 -04:00
|
|
|
json: {
|
2017-05-15 16:22:03 -04:00
|
|
|
host: CONFIG.WEBSERVER.HOST,
|
|
|
|
email: CONFIG.ADMIN.EMAIL,
|
2016-06-18 10:13:54 -04:00
|
|
|
publicKey: cert
|
|
|
|
}
|
2016-02-29 12:52:12 -05:00
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return makeRetryRequest(params)
|
|
|
|
.then(({ response, body }) => {
|
|
|
|
body = body as { cert: string, email: string }
|
|
|
|
|
|
|
|
if (response.statusCode === 200) {
|
|
|
|
const podObj = db.Pod.build({ host: pod.host, publicKey: body.cert, email: body.email })
|
|
|
|
return podObj.save()
|
|
|
|
.then(podCreated => {
|
|
|
|
|
|
|
|
// Add our videos to the request scheduler
|
|
|
|
sendOwnedVideosToPod(podCreated.id)
|
|
|
|
})
|
|
|
|
.catch(err => {
|
2017-07-07 12:26:12 -04:00
|
|
|
logger.error('Cannot add friend %s pod.', pod.host, err)
|
2017-07-05 07:26:25 -04:00
|
|
|
})
|
|
|
|
} else {
|
|
|
|
logger.error('Status not 200 for %s pod.', pod.host)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
logger.error('Error with adding %s pod.', pod.host, { error: err.stack })
|
2016-06-18 10:13:54 -04:00
|
|
|
// Don't break the process
|
2017-07-05 07:26:25 -04:00
|
|
|
})
|
|
|
|
}, { concurrency: REQUESTS_IN_PARALLEL })
|
|
|
|
.then(() => logger.debug('makeRequestsToWinningPods finished.'))
|
|
|
|
.finally(() => {
|
2016-06-18 10:13:54 -04:00
|
|
|
// Final callback, we've ended all the requests
|
|
|
|
// Now we made new friends, we can re activate the pool of requests
|
2017-02-18 04:29:36 -05:00
|
|
|
requestScheduler.activate()
|
2016-02-29 12:52:12 -05:00
|
|
|
})
|
|
|
|
}
|
2016-06-28 14:10:32 -04:00
|
|
|
|
2017-01-04 14:59:23 -05:00
|
|
|
// Wrapper that populate "toIds" argument with all our friends if it is not specified
|
2017-06-10 16:15:25 -04:00
|
|
|
type CreateRequestOptions = {
|
|
|
|
type: string
|
2017-06-16 04:36:18 -04:00
|
|
|
endpoint: RequestEndpoint
|
2017-06-10 16:15:25 -04:00
|
|
|
data: Object
|
|
|
|
toIds?: number[]
|
|
|
|
transaction: Sequelize.Transaction
|
|
|
|
}
|
2017-07-05 07:26:25 -04:00
|
|
|
function createRequest (options: CreateRequestOptions) {
|
|
|
|
if (options.toIds !== undefined) return requestScheduler.createRequest(options as RequestSchedulerOptions)
|
2016-12-11 15:50:51 -05:00
|
|
|
|
2017-01-04 14:59:23 -05:00
|
|
|
// If the "toIds" pods is not specified, we send the request to all our friends
|
2017-07-05 07:26:25 -04:00
|
|
|
return db.Pod.listAllIds(options.transaction).then(podIds => {
|
2017-01-06 17:24:47 -05:00
|
|
|
const newOptions = Object.assign(options, { toIds: podIds })
|
2017-07-05 07:26:25 -04:00
|
|
|
return requestScheduler.createRequest(newOptions)
|
2016-06-28 14:10:32 -04:00
|
|
|
})
|
|
|
|
}
|
2016-10-23 13:31:47 -04:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
function createVideoQaduRequest (options: RequestVideoQaduSchedulerOptions) {
|
|
|
|
return requestVideoQaduScheduler.createRequest(options)
|
2017-02-21 15:35:59 -05:00
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
function createVideoEventRequest (options: RequestVideoEventSchedulerOptions) {
|
|
|
|
return requestVideoEventScheduler.createRequest(options)
|
2017-02-26 12:57:33 -05:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function isMe (host: string) {
|
2017-05-15 16:22:03 -04:00
|
|
|
return host === CONFIG.WEBSERVER.HOST
|
2016-10-23 13:31:47 -04:00
|
|
|
}
|