1
0
Fork 0
peertube/server/lib/activitypub/process/process-view.ts

49 lines
1.6 KiB
TypeScript
Raw Normal View History

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