]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/lib/activitypub/process/process-create.ts
Speed up videos indexation
[github/Chocobozzz/PeerTube.git] / server / lib / activitypub / process / process-create.ts
1 import { isRedundancyAccepted } from '@server/lib/redundancy'
2 import { ActivityCreate, CacheFileObject, VideoTorrentObject } from '../../../../shared'
3 import { PlaylistObject } from '../../../../shared/models/activitypub/objects/playlist-object'
4 import { VideoCommentObject } from '../../../../shared/models/activitypub/objects/video-comment-object'
5 import { retryTransactionWrapper } from '../../../helpers/database-utils'
6 import { logger } from '../../../helpers/logger'
7 import { sequelizeTypescript } from '../../../initializers/database'
8 import { APProcessorOptions } from '../../../typings/activitypub-processor.model'
9 import { MActorSignature, MCommentOwnerVideo, MVideoAccountLightBlacklistAllFiles } from '../../../typings/models'
10 import { Notifier } from '../../notifier'
11 import { createOrUpdateCacheFile } from '../cache-file'
12 import { createOrUpdateVideoPlaylist } from '../playlist'
13 import { forwardVideoRelatedActivity } from '../send/utils'
14 import { resolveThread } from '../video-comments'
15 import { getOrCreateVideoAndAccountAndChannel } from '../videos'
16 import { isBlockedByServerOrAccount } from '@server/lib/blocklist'
17
18 async function processCreateActivity (options: APProcessorOptions<ActivityCreate>) {
19 const { activity, byActor } = options
20
21 // Only notify if it is not from a fetcher job
22 const notify = options.fromFetch !== true
23 const activityObject = activity.object
24 const activityType = activityObject.type
25
26 if (activityType === 'Video') {
27 return processCreateVideo(activity, notify)
28 }
29
30 if (activityType === 'Note') {
31 return retryTransactionWrapper(processCreateVideoComment, activity, byActor, notify)
32 }
33
34 if (activityType === 'CacheFile') {
35 return retryTransactionWrapper(processCreateCacheFile, activity, byActor)
36 }
37
38 if (activityType === 'Playlist') {
39 return retryTransactionWrapper(processCreatePlaylist, activity, byActor)
40 }
41
42 logger.warn('Unknown activity object type %s when creating activity.', activityType, { activity: activity.id })
43 return Promise.resolve(undefined)
44 }
45
46 // ---------------------------------------------------------------------------
47
48 export {
49 processCreateActivity
50 }
51
52 // ---------------------------------------------------------------------------
53
54 async function processCreateVideo (activity: ActivityCreate, notify: boolean) {
55 const videoToCreateData = activity.object as VideoTorrentObject
56
57 const syncParam = { likes: false, dislikes: false, shares: false, comments: false, thumbnail: true, refreshVideo: false }
58 const { video, created } = await getOrCreateVideoAndAccountAndChannel({ videoObject: videoToCreateData, syncParam })
59
60 if (created && notify) Notifier.Instance.notifyOnNewVideoIfNeeded(video)
61
62 return video
63 }
64
65 async function processCreateCacheFile (activity: ActivityCreate, byActor: MActorSignature) {
66 if (await isRedundancyAccepted(activity, byActor) !== true) return
67
68 const cacheFile = activity.object as CacheFileObject
69
70 const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: cacheFile.object })
71
72 await sequelizeTypescript.transaction(async t => {
73 return createOrUpdateCacheFile(cacheFile, video, byActor, t)
74 })
75
76 if (video.isOwned()) {
77 // Don't resend the activity to the sender
78 const exceptions = [ byActor ]
79 await forwardVideoRelatedActivity(activity, undefined, exceptions, video)
80 }
81 }
82
83 async function processCreateVideoComment (activity: ActivityCreate, byActor: MActorSignature, notify: boolean) {
84 const commentObject = activity.object as VideoCommentObject
85 const byAccount = byActor.Account
86
87 if (!byAccount) throw new Error('Cannot create video comment with the non account actor ' + byActor.url)
88
89 let video: MVideoAccountLightBlacklistAllFiles
90 let created: boolean
91 let comment: MCommentOwnerVideo
92 try {
93 const resolveThreadResult = await resolveThread({ url: commentObject.id, isVideo: false })
94 video = resolveThreadResult.video
95 created = resolveThreadResult.commentCreated
96 comment = resolveThreadResult.comment
97 } catch (err) {
98 logger.debug(
99 'Cannot process video comment because we could not resolve thread %s. Maybe it was not a video thread, so skip it.',
100 commentObject.inReplyTo,
101 { err }
102 )
103 return
104 }
105
106 // Try to not forward unwanted commments on our videos
107 if (video.isOwned() && await isBlockedByServerOrAccount(comment.Account, video.VideoChannel.Account)) {
108 logger.info('Skip comment forward from blocked account or server %s.', comment.Account.Actor.url)
109 return
110 }
111
112 if (video.isOwned() && created === true) {
113 // Don't resend the activity to the sender
114 const exceptions = [ byActor ]
115
116 await forwardVideoRelatedActivity(activity, undefined, exceptions, video)
117 }
118
119 if (created && notify) Notifier.Instance.notifyOnNewComment(comment)
120 }
121
122 async function processCreatePlaylist (activity: ActivityCreate, byActor: MActorSignature) {
123 const playlistObject = activity.object as PlaylistObject
124 const byAccount = byActor.Account
125
126 if (!byAccount) throw new Error('Cannot create video playlist with the non account actor ' + byActor.url)
127
128 await createOrUpdateVideoPlaylist(playlistObject, byAccount, activity.to)
129 }