57e4e1c1a9
In the future we'll stop to expose all available rates to improve users privacy
42 lines
1.5 KiB
TypeScript
42 lines
1.5 KiB
TypeScript
import { Transaction } from 'sequelize'
|
|
import { VideoViews } from '@server/lib/video-views'
|
|
import { MActorAudience, MVideoImmutable, MVideoUrl } from '@server/types/models'
|
|
import { ActivityAudience, ActivityView } from '@shared/models'
|
|
import { logger } from '../../../helpers/logger'
|
|
import { ActorModel } from '../../../models/actor/actor'
|
|
import { audiencify, getAudience } from '../audience'
|
|
import { getLocalVideoViewActivityPubUrl } from '../url'
|
|
import { sendVideoRelatedActivity } from './shared/send-utils'
|
|
|
|
async function sendView (byActor: ActorModel, video: MVideoImmutable, t: Transaction) {
|
|
logger.info('Creating job to send view of %s.', video.url)
|
|
|
|
const activityBuilder = (audience: ActivityAudience) => {
|
|
const url = getLocalVideoViewActivityPubUrl(byActor, video)
|
|
|
|
return buildViewActivity(url, byActor, video, audience)
|
|
}
|
|
|
|
return sendVideoRelatedActivity(activityBuilder, { byActor, video, transaction: t, contextType: 'View' })
|
|
}
|
|
|
|
function buildViewActivity (url: string, byActor: MActorAudience, video: MVideoUrl, audience?: ActivityAudience): ActivityView {
|
|
if (!audience) audience = getAudience(byActor)
|
|
|
|
return audiencify(
|
|
{
|
|
id: url,
|
|
type: 'View' as 'View',
|
|
actor: byActor.url,
|
|
object: video.url,
|
|
expires: new Date(VideoViews.Instance.buildViewerExpireTime()).toISOString()
|
|
},
|
|
audience
|
|
)
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export {
|
|
sendView
|
|
}
|