]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/job-queue/handlers/video-views.ts
Improve translation plugin guide
[github/Chocobozzz/PeerTube.git] / server / lib / job-queue / handlers / video-views.ts
CommitLineData
6b616860
C
1import { Redis } from '../../redis'
2import { logger } from '../../../helpers/logger'
3import { VideoModel } from '../../../models/video/video'
4import { VideoViewModel } from '../../../models/video/video-views'
6f0c46be 5import { isTestInstance } from '../../../helpers/core-utils'
030177d2 6import { federateVideoIfNeeded } from '../../activitypub'
6b616860 7
030177d2 8async function processVideosViews () {
6f0c46be
C
9 const lastHour = new Date()
10
11 // In test mode, we run this function multiple times per hour, so we don't want the values of the previous hour
12 if (!isTestInstance()) lastHour.setHours(lastHour.getHours() - 1)
13
14 const hour = lastHour.getHours()
15 const startDate = lastHour.setMinutes(0, 0, 0)
16 const endDate = lastHour.setMinutes(59, 59, 999)
6b616860
C
17
18 const videoIds = await Redis.Instance.getVideosIdViewed(hour)
19 if (videoIds.length === 0) return
20
21 logger.info('Processing videos views in job for hour %d.', hour)
22
23 for (const videoId of videoIds) {
9431cabf
C
24 try {
25 const views = await Redis.Instance.getVideoViews(videoId, hour)
6040f87d 26 if (views) {
9431cabf
C
27 logger.debug('Adding %d views to video %d in hour %d.', views, videoId, hour)
28
9431cabf 29 try {
63dc5898
C
30 const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(videoId)
31 if (!video) {
32 logger.debug('Video %d does not exist anymore, skipping videos view addition.', videoId)
33 continue
34 }
35
9431cabf
C
36 await VideoViewModel.create({
37 startDate,
38 endDate,
39 views,
40 videoId
41 })
030177d2 42
dbe6aa69
C
43 if (video.isOwned()) {
44 // If this is a remote video, the origin instance will send us an update
45 await VideoModel.incrementViews(videoId, views)
46
47 // Send video update
48 video.views += views
49 await federateVideoIfNeeded(video, false)
50 }
9431cabf 51 } catch (err) {
63dc5898 52 logger.error('Cannot create video views for video %d in hour %d.', videoId, hour, { err })
9431cabf
C
53 }
54 }
55
56 await Redis.Instance.deleteVideoViews(videoId, hour)
57 } catch (err) {
63dc5898 58 logger.error('Cannot update video views of video %d in hour %d.', videoId, hour, { err })
6b616860 59 }
6b616860
C
60 }
61}
62
63// ---------------------------------------------------------------------------
64
65export {
030177d2 66 processVideosViews
6b616860 67}