X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Factivitypub%2Fprocess%2Fprocess-view.ts;h=e49506d8271b7041a8c39238c7d382eaa2e95561;hb=ac907dc7c158056e9b6a5cb58acd27df5c7c2670;hp=e4997b8282a492d606e56cca6cf08d0bb3cab5d1;hpb=5224c394b3bbac6ec1543e41fa0ec6db436e84fa;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/activitypub/process/process-view.ts b/server/lib/activitypub/process/process-view.ts index e4997b828..e49506d82 100644 --- a/server/lib/activitypub/process/process-view.ts +++ b/server/lib/activitypub/process/process-view.ts @@ -1,12 +1,13 @@ -import { getOrCreateVideoAndAccountAndChannel } from '../videos' -import { forwardVideoRelatedActivity } from '../send/utils' -import { Redis } from '../../redis' -import { ActivityCreate, ActivityView, ViewObject } from '../../../../shared/models/activitypub' -import { APProcessorOptions } from '../../../typings/activitypub-processor.model' -import { SignatureActorModel } from '../../../typings/models' - -async function processViewActivity (options: APProcessorOptions) { +import { VideoViewsManager } from '@server/lib/views/video-views-manager' +import { ActivityView } from '../../../../shared/models/activitypub' +import { APProcessorOptions } from '../../../types/activitypub-processor.model' +import { MActorSignature } from '../../../types/models' +import { forwardVideoRelatedActivity } from '../send/shared/send-utils' +import { getOrCreateAPVideo } from '../videos' + +async function processViewActivity (options: APProcessorOptions) { const { activity, byActor } = options + return processCreateView(activity, byActor) } @@ -18,19 +19,23 @@ export { // --------------------------------------------------------------------------- -async function processCreateView (activity: ActivityView | ActivityCreate, byActor: SignatureActorModel) { - const videoObject = activity.type === 'View' ? activity.object : (activity.object as ViewObject).object +async function processCreateView (activity: ActivityView, byActor: MActorSignature) { + const videoObject = activity.object - const options = { - videoObject: videoObject, - fetchType: 'only-video' as 'only-video' - } - const { video } = await getOrCreateVideoAndAccountAndChannel(options) + const { video } = await getOrCreateAPVideo({ + videoObject, + fetchType: 'only-video', + allowRefresh: false + }) + + const viewerExpires = activity.expires + ? new Date(activity.expires) + : undefined - await Redis.Instance.addVideoView(video.id) + await VideoViewsManager.Instance.processRemoteView({ video, viewerId: activity.id, viewerExpires }) if (video.isOwned()) { - // Don't resend the activity to the sender + // Forward the view but don't resend the activity to the sender const exceptions = [ byActor ] await forwardVideoRelatedActivity(activity, undefined, exceptions, video) }