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

43 lines
1.3 KiB
TypeScript
Raw Normal View History

import { VideoViews } from '@server/lib/video-views'
import { ActivityView } from '../../../../shared/models/activitypub'
2020-06-18 10:45:25 +02:00
import { APProcessorOptions } from '../../../types/activitypub-processor.model'
import { MActorSignature } from '../../../types/models'
import { forwardVideoRelatedActivity } from '../send/utils'
import { getOrCreateAPVideo } from '../videos'
async function processViewActivity (options: APProcessorOptions<ActivityView>) {
2019-08-02 10:53:36 +02:00
const { activity, byActor } = options
return processCreateView(activity, byActor)
}
// ---------------------------------------------------------------------------
export {
processViewActivity
}
// ---------------------------------------------------------------------------
async function processCreateView (activity: ActivityView, byActor: MActorSignature) {
const videoObject = activity.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
})
const viewerExpires = activity.expires
? new Date(activity.expires)
: undefined
2020-11-06 16:43:43 +01:00
await VideoViews.Instance.processView({ video, ip: null, viewerExpires })
2020-11-06 16:42:23 +01:00
if (video.isOwned()) {
2020-11-06 16:42:23 +01:00
// Forward the view but don't resend the activity to the sender
const exceptions = [ byActor ]
await forwardVideoRelatedActivity(activity, undefined, exceptions, video)
}
}