aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/activitypub/video-rates.ts
blob: 9fb97ef843ae6ffe3a8a736aa77fdc7ad3e5bef1 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import * as Bluebird from 'bluebird'
import { Transaction } from 'sequelize'
import { doJSONRequest } from '@server/helpers/requests'
import { VideoRateType } from '../../../shared/models/videos'
import { checkUrlsSameHost, getAPId } from '../../helpers/activitypub'
import { logger, loggerTagsFactory } from '../../helpers/logger'
import { CRAWL_REQUEST_CONCURRENCY } from '../../initializers/constants'
import { AccountVideoRateModel } from '../../models/account/account-video-rate'
import { MAccountActor, MActorUrl, MVideo, MVideoAccountLight, MVideoId } from '../../types/models'
import { getOrCreateAPActor } from './actors'
import { sendLike, sendUndoDislike, sendUndoLike } from './send'
import { sendDislike } from './send/send-dislike'
import { getVideoDislikeActivityPubUrlByLocalActor, getVideoLikeActivityPubUrlByLocalActor } from './url'

const lTags = loggerTagsFactory('ap', 'video-rate', 'create')

async function createRates (ratesUrl: string[], video: MVideo, rate: VideoRateType) {
  await Bluebird.map(ratesUrl, async rateUrl => {
    try {
      await createRate(rateUrl, video, rate)
    } catch (err) {
      logger.info('Cannot add rate %s.', rateUrl, { err, ...lTags(rateUrl, video.uuid, video.url) })
    }
  }, { concurrency: CRAWL_REQUEST_CONCURRENCY })
}

async function sendVideoRateChange (
  account: MAccountActor,
  video: MVideoAccountLight,
  likes: number,
  dislikes: number,
  t: Transaction
) {
  const actor = account.Actor

  // Keep the order: first we undo and then we create

  // Undo Like
  if (likes < 0) await sendUndoLike(actor, video, t)
  // Undo Dislike
  if (dislikes < 0) await sendUndoDislike(actor, video, t)

  // Like
  if (likes > 0) await sendLike(actor, video, t)
  // Dislike
  if (dislikes > 0) await sendDislike(actor, video, t)
}

function getLocalRateUrl (rateType: VideoRateType, actor: MActorUrl, video: MVideoId) {
  return rateType === 'like'
    ? getVideoLikeActivityPubUrlByLocalActor(actor, video)
    : getVideoDislikeActivityPubUrlByLocalActor(actor, video)
}

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

export {
  getLocalRateUrl,
  createRates,
  sendVideoRateChange
}

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

async function createRate (rateUrl: string, video: MVideo, rate: VideoRateType) {
  // Fetch url
  const { body } = await doJSONRequest<any>(rateUrl, { activityPub: true })
  if (!body || !body.actor) throw new Error('Body or body actor is invalid')

  const actorUrl = getAPId(body.actor)
  if (checkUrlsSameHost(actorUrl, rateUrl) !== true) {
    throw new Error(`Rate url ${rateUrl} has not the same host than actor url ${actorUrl}`)
  }

  if (checkUrlsSameHost(body.id, rateUrl) !== true) {
    throw new Error(`Rate url ${rateUrl} host is different from the AP object id ${body.id}`)
  }

  const actor = await getOrCreateAPActor(actorUrl)

  const entry = {
    videoId: video.id,
    accountId: actor.Account.id,
    type: rate,
    url: body.id
  }

  // Video "likes"/"dislikes" will be updated by the caller
  await AccountVideoRateModel.upsert(entry)
}