2018-08-29 16:26:25 +02:00
|
|
|
import { Redis } from '../../redis'
|
|
|
|
import { logger } from '../../../helpers/logger'
|
|
|
|
import { VideoModel } from '../../../models/video/video'
|
|
|
|
import { VideoViewModel } from '../../../models/video/video-views'
|
2018-09-13 13:59:41 +02:00
|
|
|
import { isTestInstance } from '../../../helpers/core-utils'
|
2018-08-29 16:26:25 +02:00
|
|
|
|
|
|
|
async function processVideosViewsViews () {
|
2018-09-13 13:59:41 +02:00
|
|
|
const lastHour = new Date()
|
|
|
|
|
|
|
|
// In test mode, we run this function multiple times per hour, so we don't want the values of the previous hour
|
|
|
|
if (!isTestInstance()) lastHour.setHours(lastHour.getHours() - 1)
|
|
|
|
|
|
|
|
const hour = lastHour.getHours()
|
|
|
|
const startDate = lastHour.setMinutes(0, 0, 0)
|
|
|
|
const endDate = lastHour.setMinutes(59, 59, 999)
|
2018-08-29 16:26:25 +02:00
|
|
|
|
|
|
|
const videoIds = await Redis.Instance.getVideosIdViewed(hour)
|
|
|
|
if (videoIds.length === 0) return
|
|
|
|
|
|
|
|
logger.info('Processing videos views in job for hour %d.', hour)
|
|
|
|
|
|
|
|
for (const videoId of videoIds) {
|
2018-09-13 10:13:25 +02:00
|
|
|
try {
|
|
|
|
const views = await Redis.Instance.getVideoViews(videoId, hour)
|
|
|
|
if (isNaN(views)) {
|
|
|
|
logger.error('Cannot process videos views of video %d in hour %d: views number is NaN.', videoId, hour)
|
|
|
|
} else {
|
|
|
|
logger.debug('Adding %d views to video %d in hour %d.', views, videoId, hour)
|
|
|
|
|
|
|
|
await VideoModel.incrementViews(videoId, views)
|
|
|
|
|
|
|
|
try {
|
|
|
|
await VideoViewModel.create({
|
|
|
|
startDate,
|
|
|
|
endDate,
|
|
|
|
views,
|
|
|
|
videoId
|
|
|
|
})
|
|
|
|
} catch (err) {
|
|
|
|
logger.debug('Cannot create video views for video %d in hour %d. Maybe the video does not exist anymore?', videoId, hour)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
await Redis.Instance.deleteVideoViews(videoId, hour)
|
|
|
|
} catch (err) {
|
|
|
|
logger.error('Cannot update video views of video %d in hour %d.', videoId, hour)
|
2018-08-29 16:26:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processVideosViewsViews
|
|
|
|
}
|