2018-08-29 10:26:25 -04:00
|
|
|
import { Redis } from '../../redis'
|
|
|
|
import { logger } from '../../../helpers/logger'
|
|
|
|
import { VideoModel } from '../../../models/video/video'
|
2020-06-15 09:18:54 -04:00
|
|
|
import { VideoViewModel } from '../../../models/video/video-view'
|
2018-09-13 07:59:41 -04:00
|
|
|
import { isTestInstance } from '../../../helpers/core-utils'
|
2020-04-23 03:32:53 -04:00
|
|
|
import { federateVideoIfNeeded } from '../../activitypub/videos'
|
2018-08-29 10:26:25 -04:00
|
|
|
|
2018-11-15 10:18:12 -05:00
|
|
|
async function processVideosViews () {
|
2018-09-13 07:59:41 -04: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 10:26:25 -04: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 04:13:25 -04:00
|
|
|
try {
|
|
|
|
const views = await Redis.Instance.getVideoViews(videoId, hour)
|
2020-01-30 05:53:38 -05:00
|
|
|
await Redis.Instance.deleteVideoViews(videoId, hour)
|
|
|
|
|
2018-12-04 10:02:49 -05:00
|
|
|
if (views) {
|
2018-09-13 04:13:25 -04:00
|
|
|
logger.debug('Adding %d views to video %d in hour %d.', views, videoId, hour)
|
|
|
|
|
|
|
|
try {
|
2019-05-21 07:14:27 -04:00
|
|
|
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(videoId)
|
|
|
|
if (!video) {
|
|
|
|
logger.debug('Video %d does not exist anymore, skipping videos view addition.', videoId)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-09-13 04:13:25 -04:00
|
|
|
await VideoViewModel.create({
|
|
|
|
startDate,
|
|
|
|
endDate,
|
|
|
|
views,
|
|
|
|
videoId
|
|
|
|
})
|
2018-11-15 10:18:12 -05:00
|
|
|
|
2018-12-03 03:14:56 -05:00
|
|
|
if (video.isOwned()) {
|
|
|
|
// If this is a remote video, the origin instance will send us an update
|
|
|
|
await VideoModel.incrementViews(videoId, views)
|
|
|
|
|
|
|
|
// Send video update
|
|
|
|
video.views += views
|
|
|
|
await federateVideoIfNeeded(video, false)
|
|
|
|
}
|
2018-09-13 04:13:25 -04:00
|
|
|
} catch (err) {
|
2019-05-21 07:14:27 -04:00
|
|
|
logger.error('Cannot create video views for video %d in hour %d.', videoId, hour, { err })
|
2018-09-13 04:13:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (err) {
|
2019-05-21 07:14:27 -04:00
|
|
|
logger.error('Cannot update video views of video %d in hour %d.', videoId, hour, { err })
|
2018-08-29 10:26:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2018-11-15 10:18:12 -05:00
|
|
|
processVideosViews
|
2018-08-29 10:26:25 -04:00
|
|
|
}
|