PeerTube/server/lib/request/request-video-qadu-schedule...

149 lines
4.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, RequestsObjects } from './abstract-request-scheduler'
2017-05-15 20:22:03 +00:00
import { logger } from '../../helpers'
import {
REQUESTS_VIDEO_QADU_LIMIT_PODS,
REQUESTS_VIDEO_QADU_LIMIT_PER_POD,
REQUEST_VIDEO_QADU_ENDPOINT,
REQUEST_VIDEO_QADU_TYPES
} from '../../initializers'
import { RequestsVideoQaduGrouped, PodInstance } from '../../models'
import { RemoteQaduVideoRequest, RequestVideoQaduType } from '../../../shared'
// We create a custom interface because we need "videos" attribute for our computations
interface RequestsObjectsCustom<U> extends RequestsObjects<U> {
[ id: string ]: {
toPod: PodInstance
endpoint: string
ids: number[] // ids
datas: U[]
videos: {
[ uuid: string ]: {
uuid: string
likes?: number
dislikes?: number
views?: number
}
}
}
}
2017-05-15 20:22:03 +00:00
2017-06-10 20:15:25 +00:00
export type RequestVideoQaduSchedulerOptions = {
2017-06-16 08:36:18 +00:00
type: RequestVideoQaduType
videoId: number
2017-06-10 20:15:25 +00:00
transaction?: Sequelize.Transaction
}
class RequestVideoQaduScheduler extends AbstractRequestScheduler<RequestsVideoQaduGrouped> {
constructor () {
super()
// We limit the size of the requests
2017-05-15 20:22:03 +00:00
this.limitPods = REQUESTS_VIDEO_QADU_LIMIT_PODS
this.limitPerPod = REQUESTS_VIDEO_QADU_LIMIT_PER_POD
this.description = 'video QADU requests'
}
getRequestModel () {
return db.RequestVideoQadu
}
getRequestToPodModel () {
return db.RequestVideoQadu
}
buildRequestsObjects (requests: RequestsVideoQaduGrouped) {
const requestsToMakeGrouped: RequestsObjectsCustom<RemoteQaduVideoRequest> = {}
Object.keys(requests).forEach(toPodId => {
requests[toPodId].forEach(data => {
const request = data.request
const video = data.video
const pod = data.pod
const hashKey = toPodId
if (!requestsToMakeGrouped[hashKey]) {
requestsToMakeGrouped[hashKey] = {
toPod: pod,
2017-05-15 20:22:03 +00:00
endpoint: REQUEST_VIDEO_QADU_ENDPOINT,
ids: [], // request ids, to delete them from the DB in the future
datas: [], // requests data
videos: {}
}
}
2017-03-08 20:35:43 +00:00
// Maybe another attribute was filled for this video
let videoData = requestsToMakeGrouped[hashKey].videos[video.id]
if (!videoData) videoData = { uuid: null }
2017-03-08 20:35:43 +00:00
switch (request.type) {
2017-09-04 19:45:05 +00:00
case REQUEST_VIDEO_QADU_TYPES.LIKES:
videoData.likes = video.likes
break
2017-09-04 19:45:05 +00:00
case REQUEST_VIDEO_QADU_TYPES.DISLIKES:
videoData.dislikes = video.dislikes
break
2017-09-04 19:45:05 +00:00
case REQUEST_VIDEO_QADU_TYPES.VIEWS:
videoData.views = video.views
break
2017-09-04 19:45:05 +00:00
default:
logger.error('Unknown request video QADU type %s.', request.type)
return
}
// Do not forget the uuid so the remote pod can identify the video
videoData.uuid = video.uuid
requestsToMakeGrouped[hashKey].ids.push(request.id)
2017-02-26 18:27:08 +00:00
// Maybe there are multiple quick and dirty update for the same video
2017-09-04 19:45:05 +00:00
// We use this hash map to dedupe them
requestsToMakeGrouped[hashKey].videos[video.id] = videoData
})
})
2017-09-04 19:45:05 +00:00
// Now we deduped similar quick and dirty updates, we can build our requests data
Object.keys(requestsToMakeGrouped).forEach(hashKey => {
Object.keys(requestsToMakeGrouped[hashKey].videos).forEach(videoUUID => {
const videoData = requestsToMakeGrouped[hashKey].videos[videoUUID]
requestsToMakeGrouped[hashKey].datas.push({
data: videoData
})
})
2017-09-04 19:45:05 +00:00
// We don't need it anymore, it was just to build our data array
delete requestsToMakeGrouped[hashKey].videos
})
return requestsToMakeGrouped
}
createRequest ({ type, videoId, transaction }: RequestVideoQaduSchedulerOptions) {
2017-06-10 20:15:25 +00:00
const dbRequestOptions: Sequelize.BulkCreateOptions = {}
if (transaction) dbRequestOptions.transaction = transaction
// Send the update to all our friends
return db.Pod.listAllIds(transaction).then(podIds => {
const queries = []
podIds.forEach(podId => {
queries.push({ type, videoId, podId })
})
return db.RequestVideoQadu.bulkCreate(queries, dbRequestOptions)
})
}
}
2017-05-15 20:22:03 +00:00
// ---------------------------------------------------------------------------
export {
RequestVideoQaduScheduler
}