2019-01-15 05:14:12 -05:00
|
|
|
import { getOrCreateVideoAndAccountAndChannel } from '../videos'
|
|
|
|
import { forwardVideoRelatedActivity } from '../send/utils'
|
|
|
|
import { Redis } from '../../redis'
|
|
|
|
import { ActivityCreate, ActivityView, ViewObject } from '../../../../shared/models/activitypub'
|
2020-06-18 04:45:25 -04:00
|
|
|
import { APProcessorOptions } from '../../../types/activitypub-processor.model'
|
|
|
|
import { MActorSignature } from '../../../types/models'
|
2020-11-06 10:42:23 -05:00
|
|
|
import { LiveManager } from '@server/lib/live-manager'
|
2019-01-15 05:14:12 -05:00
|
|
|
|
2019-08-02 04:53:36 -04:00
|
|
|
async function processViewActivity (options: APProcessorOptions<ActivityCreate | ActivityView>) {
|
|
|
|
const { activity, byActor } = options
|
2019-01-15 05:14:12 -05:00
|
|
|
return processCreateView(activity, byActor)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processViewActivity
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
async function processCreateView (activity: ActivityView | ActivityCreate, byActor: MActorSignature) {
|
2020-11-06 10:42:23 -05:00
|
|
|
const videoObject = activity.type === 'View'
|
|
|
|
? activity.object
|
|
|
|
: (activity.object as ViewObject).object
|
2019-01-15 05:14:12 -05:00
|
|
|
|
|
|
|
const options = {
|
2019-08-15 05:53:26 -04:00
|
|
|
videoObject,
|
2020-11-06 10:42:23 -05:00
|
|
|
fetchType: 'only-video' as 'only-video',
|
2020-02-04 09:45:41 -05:00
|
|
|
allowRefresh: false as false
|
2019-01-15 05:14:12 -05:00
|
|
|
}
|
|
|
|
const { video } = await getOrCreateVideoAndAccountAndChannel(options)
|
|
|
|
|
2020-11-06 10:43:43 -05:00
|
|
|
if (!video.isLive) {
|
|
|
|
await Redis.Instance.addVideoView(video.id)
|
|
|
|
}
|
|
|
|
|
2019-01-15 05:14:12 -05:00
|
|
|
if (video.isOwned()) {
|
2020-11-06 10:42:23 -05:00
|
|
|
// Our live manager will increment the counter and send the view to followers
|
|
|
|
if (video.isLive) {
|
|
|
|
LiveManager.Instance.addViewTo(video.id)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
}
|
|
|
|
}
|