aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/activitypub/send/send-view.ts
blob: 1088bf2582d3456271ec822a966122e8400369ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import { Transaction } from 'sequelize'
import { VideoViewsManager } from '@server/lib/views/video-views-manager'
import { MActorAudience, MActorLight, MVideoImmutable, MVideoUrl } from '@server/types/models'
import { ActivityAudience, ActivityView } from '@shared/models'
import { logger } from '../../../helpers/logger'
import { audiencify, getAudience } from '../audience'
import { getLocalVideoViewActivityPubUrl } from '../url'
import { sendVideoRelatedActivity } from './shared/send-utils'

type ViewType = 'view' | 'viewer'

async function sendView (options: {
  byActor: MActorLight
  type: ViewType
  video: MVideoImmutable
  transaction?: Transaction
}) {
  const { byActor, type, video, transaction } = options

  logger.info('Creating job to send %s of %s.', type, video.url)

  const activityBuilder = (audience: ActivityAudience) => {
    const url = getLocalVideoViewActivityPubUrl(byActor, video)

    return buildViewActivity({ url, byActor, video, audience, type })
  }

  return sendVideoRelatedActivity(activityBuilder, { byActor, video, transaction, contextType: 'View' })
}

// ---------------------------------------------------------------------------

export {
  sendView
}

// ---------------------------------------------------------------------------

function buildViewActivity (options: {
  url: string
  byActor: MActorAudience
  video: MVideoUrl
  type: ViewType
  audience?: ActivityAudience
}): ActivityView {
  const { url, byActor, type, video, audience = getAudience(byActor) } = options

  return audiencify(
    {
      id: url,
      type: 'View' as 'View',
      actor: byActor.url,
      object: video.url,

      expires: type === 'viewer'
        ? new Date(VideoViewsManager.Instance.buildViewerExpireTime()).toISOString()
        : undefined
    },
    audience
  )
}