PeerTube/server/lib/request/request-video-event-schedul...

122 lines
3.4 KiB
TypeScript
Raw Normal View History

2017-06-10 20:15:25 +00:00
import * as Sequelize from 'sequelize'
2017-05-22 18:58:25 +00:00
import { database as db } from '../../initializers/database'
import { AbstractRequestScheduler } from './abstract-request-scheduler'
2017-05-15 20:22:03 +00:00
import {
REQUESTS_VIDEO_EVENT_LIMIT_PODS,
REQUESTS_VIDEO_EVENT_LIMIT_PER_POD,
REQUEST_VIDEO_EVENT_ENDPOINT
} from '../../initializers'
import { RequestsVideoEventGrouped } from '../../models'
2017-06-16 08:36:18 +00:00
import { RequestVideoEventType } from '../../../shared'
2017-05-15 20:22:03 +00:00
2017-06-10 20:15:25 +00:00
export type RequestVideoEventSchedulerOptions = {
2017-06-16 08:36:18 +00:00
type: RequestVideoEventType
2017-06-10 20:15:25 +00:00
videoId: string
count?: number
transaction?: Sequelize.Transaction
}
class RequestVideoEventScheduler extends AbstractRequestScheduler<RequestsVideoEventGrouped> {
2017-02-26 17:57:33 +00:00
constructor () {
super()
// We limit the size of the requests
2017-05-15 20:22:03 +00:00
this.limitPods = REQUESTS_VIDEO_EVENT_LIMIT_PODS
this.limitPerPod = REQUESTS_VIDEO_EVENT_LIMIT_PER_POD
2017-02-26 17:57:33 +00:00
this.description = 'video event requests'
}
getRequestModel () {
return db.RequestVideoEvent
}
getRequestToPodModel () {
return db.RequestVideoEvent
}
buildRequestObjects (eventRequests: RequestsVideoEventGrouped) {
2017-02-26 17:57:33 +00:00
const requestsToMakeGrouped = {}
/* Example:
{
pod1: {
video1: { views: 4, likes: 5 },
video2: { likes: 5 }
}
}
*/
const eventsPerVideoPerPod = {}
// We group video events per video and per pod
// We add the counts of the same event types
Object.keys(eventRequests).forEach(toPodId => {
eventRequests[toPodId].forEach(eventToProcess => {
2017-02-26 17:57:33 +00:00
if (!eventsPerVideoPerPod[toPodId]) eventsPerVideoPerPod[toPodId] = {}
if (!requestsToMakeGrouped[toPodId]) {
requestsToMakeGrouped[toPodId] = {
toPod: eventToProcess.pod,
2017-05-15 20:22:03 +00:00
endpoint: REQUEST_VIDEO_EVENT_ENDPOINT,
2017-02-26 17:57:33 +00:00
ids: [], // request ids, to delete them from the DB in the future
datas: [] // requests data
}
}
requestsToMakeGrouped[toPodId].ids.push(eventToProcess.id)
const eventsPerVideo = eventsPerVideoPerPod[toPodId]
const remoteId = eventToProcess.video.remoteId
if (!eventsPerVideo[remoteId]) eventsPerVideo[remoteId] = {}
const events = eventsPerVideo[remoteId]
if (!events[eventToProcess.type]) events[eventToProcess.type] = 0
events[eventToProcess.type] += eventToProcess.count
})
})
// Now we build our requests array per pod
Object.keys(eventsPerVideoPerPod).forEach(toPodId => {
const eventsForPod = eventsPerVideoPerPod[toPodId]
Object.keys(eventsForPod).forEach(remoteId => {
const eventsForVideo = eventsForPod[remoteId]
Object.keys(eventsForVideo).forEach(eventType => {
requestsToMakeGrouped[toPodId].datas.push({
data: {
remoteId,
eventType,
count: eventsForVideo[eventType]
}
})
})
})
})
return requestsToMakeGrouped
}
createRequest ({ type, videoId, count, transaction }: RequestVideoEventSchedulerOptions) {
2017-02-26 17:57:33 +00:00
if (count === undefined) count = 1
2017-06-10 20:15:25 +00:00
const dbRequestOptions: Sequelize.CreateOptions = {}
2017-02-26 17:57:33 +00:00
if (transaction) dbRequestOptions.transaction = transaction
const createQuery = {
type,
count,
videoId
}
return db.RequestVideoEvent.create(createQuery, dbRequestOptions)
2017-02-26 17:57:33 +00:00
}
}
2017-05-15 20:22:03 +00:00
// ---------------------------------------------------------------------------
export {
RequestVideoEventScheduler
}