2022-03-24 07:36:47 -05:00
|
|
|
import { VideoViewsManager } from '@server/lib/views/video-views-manager'
|
2021-11-09 03:11:20 -06:00
|
|
|
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'
|
2022-03-18 05:17:35 -05:00
|
|
|
import { forwardVideoRelatedActivity } from '../send/shared/send-utils'
|
2021-11-09 03:11:20 -06:00
|
|
|
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
|
|
|
|
2022-04-06 01:50:43 -05:00
|
|
|
await VideoViewsManager.Instance.processRemoteView({ video, viewerId: activity.id, 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)
|
|
|
|
}
|
|
|
|
}
|