X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Factivitypub%2Fprocess%2Fprocess-view.ts;h=84697673b6ee5f1359a0b3db9b17ae91a9e1aac2;hb=543442a3be9d7740749eb3918dc59f502ff042f9;hp=0170b74f4502492a8cf438a27fd6e8bc4d185b8b;hpb=1198edf4bb06ce5f1668b97cf9ca8fb483fe3f41;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/activitypub/process/process-view.ts b/server/lib/activitypub/process/process-view.ts index 0170b74f4..84697673b 100644 --- a/server/lib/activitypub/process/process-view.ts +++ b/server/lib/activitypub/process/process-view.ts @@ -1,9 +1,10 @@ -import { ActorModel } from '../../../models/activitypub/actor' 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 { APProcessorOptions } from '../../../types/activitypub-processor.model' +import { MActorSignature } from '../../../types/models' +import { LiveManager } from '@server/lib/live-manager' async function processViewActivity (options: APProcessorOptions) { const { activity, byActor } = options @@ -18,19 +19,30 @@ export { // --------------------------------------------------------------------------- -async function processCreateView (activity: ActivityView | ActivityCreate, byActor: ActorModel) { - const videoObject = activity.type === 'View' ? activity.object : (activity.object as ViewObject).object +async function processCreateView (activity: ActivityView | ActivityCreate, byActor: MActorSignature) { + const videoObject = activity.type === 'View' + ? activity.object + : (activity.object as ViewObject).object const options = { - videoObject: videoObject, - fetchType: 'only-video' as 'only-video' + videoObject, + fetchType: 'only-video' as 'only-video', + allowRefresh: false as false } const { video } = await getOrCreateVideoAndAccountAndChannel(options) - await Redis.Instance.addVideoView(video.id) + if (!video.isLive) { + await Redis.Instance.addVideoView(video.id) + } if (video.isOwned()) { - // Don't resend the activity to the sender + // Our live manager will increment the counter and send the view to followers + if (video.isLive) { + LiveManager.Instance.addViewTo(video.id) + return + } + + // Forward the view but don't resend the activity to the sender const exceptions = [ byActor ] await forwardVideoRelatedActivity(activity, undefined, exceptions, video) }