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