]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/activitypub/video-rates.ts
Cleaner warning of IP address leaking on embedded videos (#2034)
[github/Chocobozzz/PeerTube.git] / server / lib / activitypub / video-rates.ts
CommitLineData
2ccaeeb3
C
1import { Transaction } from 'sequelize'
2import { AccountModel } from '../../models/account/account'
3import { VideoModel } from '../../models/video/video'
1e7eb25f 4import { sendLike, sendUndoDislike, sendUndoLike } from './send'
1297eb5d
C
5import { VideoRateType } from '../../../shared/models/videos'
6import * as Bluebird from 'bluebird'
7import { getOrCreateActorAndServerAndModel } from './actor'
8import { AccountVideoRateModel } from '../../models/account/account-video-rate'
9import { logger } from '../../helpers/logger'
74dc3bca 10import { CRAWL_REQUEST_CONCURRENCY } from '../../initializers/constants'
5c6d985f 11import { doRequest } from '../../helpers/requests'
848f499d 12import { checkUrlsSameHost, getAPId } from '../../helpers/activitypub'
5c6d985f
C
13import { ActorModel } from '../../models/activitypub/actor'
14import { getVideoDislikeActivityPubUrl, getVideoLikeActivityPubUrl } from './url'
1e7eb25f 15import { sendDislike } from './send/send-dislike'
1297eb5d 16
5c6d985f 17async function createRates (ratesUrl: string[], video: VideoModel, rate: VideoRateType) {
1297eb5d
C
18 let rateCounts = 0
19
5c6d985f 20 await Bluebird.map(ratesUrl, async rateUrl => {
1297eb5d 21 try {
5c6d985f
C
22 // Fetch url
23 const { body } = await doRequest({
24 uri: rateUrl,
25 json: true,
26 activityPub: true
27 })
28 if (!body || !body.actor) throw new Error('Body or body actor is invalid')
29
848f499d 30 const actorUrl = getAPId(body.actor)
5c6d985f
C
31 if (checkUrlsSameHost(actorUrl, rateUrl) !== true) {
32 throw new Error(`Rate url ${rateUrl} has not the same host than actor url ${actorUrl}`)
33 }
34
35 if (checkUrlsSameHost(body.id, rateUrl) !== true) {
36 throw new Error(`Rate url ${rateUrl} host is different from the AP object id ${body.id}`)
37 }
38
1297eb5d 39 const actor = await getOrCreateActorAndServerAndModel(actorUrl)
5c6d985f 40
2ba92871
C
41 const entry = {
42 videoId: video.id,
43 accountId: actor.Account.id,
44 type: rate,
45 url: body.id
46 }
47
48 const created = await AccountVideoRateModel.upsert(entry)
1297eb5d
C
49
50 if (created) rateCounts += 1
51 } catch (err) {
5c6d985f 52 logger.warn('Cannot add rate %s.', rateUrl, { err })
1297eb5d
C
53 }
54 }, { concurrency: CRAWL_REQUEST_CONCURRENCY })
55
56 logger.info('Adding %d %s to video %s.', rateCounts, rate, video.uuid)
57
58 // This is "likes" and "dislikes"
1735c825
C
59 if (rateCounts !== 0) {
60 const field = rate === 'like' ? 'likes' : 'dislikes'
61 await video.increment(field, { by: rateCounts })
62 }
1297eb5d
C
63
64 return
65}
2ccaeeb3 66
07197db4
C
67async function sendVideoRateChange (account: AccountModel,
68 video: VideoModel,
69 likes: number,
70 dislikes: number,
71 t: Transaction) {
2ccaeeb3
C
72 const actor = account.Actor
73
74 // Keep the order: first we undo and then we create
75
76 // Undo Like
07197db4 77 if (likes < 0) await sendUndoLike(actor, video, t)
2ccaeeb3 78 // Undo Dislike
07197db4 79 if (dislikes < 0) await sendUndoDislike(actor, video, t)
2ccaeeb3
C
80
81 // Like
07197db4 82 if (likes > 0) await sendLike(actor, video, t)
2ccaeeb3 83 // Dislike
1e7eb25f 84 if (dislikes > 0) await sendDislike(actor, video, t)
2ccaeeb3
C
85}
86
5c6d985f
C
87function getRateUrl (rateType: VideoRateType, actor: ActorModel, video: VideoModel) {
88 return rateType === 'like' ? getVideoLikeActivityPubUrl(actor, video) : getVideoDislikeActivityPubUrl(actor, video)
89}
90
2ccaeeb3 91export {
5c6d985f 92 getRateUrl,
1297eb5d 93 createRates,
07197db4 94 sendVideoRateChange
2ccaeeb3 95}