2021-11-09 10:11:20 +01:00
|
|
|
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'
|
2021-11-09 10:11:20 +01:00
|
|
|
import { forwardVideoRelatedActivity } from '../send/utils'
|
|
|
|
import { getOrCreateAPVideo } from '../videos'
|
2019-01-15 11:14:12 +01:00
|
|
|
|
2021-11-09 10:11:20 +01:00
|
|
|
async function processViewActivity (options: APProcessorOptions<ActivityView>) {
|
2019-08-02 10:53:36 +02:00
|
|
|
const { activity, byActor } = options
|
2021-11-09 10:11:20 +01:00
|
|
|
|
2019-01-15 11:14:12 +01:00
|
|
|
return processCreateView(activity, byActor)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processViewActivity
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2021-11-09 10:11:20 +01:00
|
|
|
async function processCreateView (activity: ActivityView, byActor: MActorSignature) {
|
|
|
|
const videoObject = activity.object
|
2019-01-15 11:14:12 +01:00
|
|
|
|
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
|
|
|
|
})
|
2019-01-15 11:14:12 +01:00
|
|
|
|
2021-11-09 10:11:20 +01:00
|
|
|
const viewerExpires = activity.expires
|
|
|
|
? new Date(activity.expires)
|
|
|
|
: undefined
|
2020-11-06 16:43:43 +01:00
|
|
|
|
2021-11-09 10:11:20 +01:00
|
|
|
await VideoViews.Instance.processView({ video, ip: null, viewerExpires })
|
2020-11-06 16:42:23 +01:00
|
|
|
|
2021-11-09 10:11:20 +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
|
2019-01-15 11:14:12 +01:00
|
|
|
const exceptions = [ byActor ]
|
|
|
|
await forwardVideoRelatedActivity(activity, undefined, exceptions, video)
|
|
|
|
}
|
|
|
|
}
|