PeerTube/server/lib/activitypub/process/process-view.ts

49 lines
1.6 KiB
TypeScript
Raw Normal View History

2021-06-02 15:47:05 +02:00
import { getOrCreateAPVideo } from '../videos'
import { forwardVideoRelatedActivity } from '../send/utils'
import { Redis } from '../../redis'
import { ActivityCreate, ActivityView, ViewObject } from '../../../../shared/models/activitypub'
2020-06-18 10:45:25 +02:00
import { APProcessorOptions } from '../../../types/activitypub-processor.model'
import { MActorSignature } from '../../../types/models'
2021-06-16 15:14:41 +02:00
import { LiveManager } from '@server/lib/live/live-manager'
2019-08-02 10:53:36 +02:00
async function processViewActivity (options: APProcessorOptions<ActivityCreate | ActivityView>) {
const { activity, byActor } = options
return processCreateView(activity, byActor)
}
// ---------------------------------------------------------------------------
export {
processViewActivity
}
// ---------------------------------------------------------------------------
2019-08-15 11:53:26 +02:00
async function processCreateView (activity: ActivityView | ActivityCreate, byActor: MActorSignature) {
2020-11-06 16:42:23 +01:00
const videoObject = activity.type === 'View'
? activity.object
: (activity.object as ViewObject).object
2021-06-08 17:29:45 +02:00
const { video } = await getOrCreateAPVideo({
2019-08-15 11:53:26 +02:00
videoObject,
2021-06-08 17:29:45 +02:00
fetchType: 'only-video',
allowRefresh: false
})
2020-11-06 16:43:43 +01:00
if (!video.isLive) {
await Redis.Instance.addVideoView(video.id)
}
if (video.isOwned()) {
2020-11-06 16:42:23 +01:00
// 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)
}
}