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