]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/activitypub/process/process-like.ts
Fix like/dislike federation
[github/Chocobozzz/PeerTube.git] / server / lib / activitypub / process / process-like.ts
CommitLineData
3fd3ab2d 1import { ActivityLike } from '../../../../shared/models/activitypub'
da854ddd 2import { retryTransactionWrapper } from '../../../helpers/database-utils'
3fd3ab2d 3import { sequelizeTypescript } from '../../../initializers'
3fd3ab2d 4import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
50d6de9c 5import { ActorModel } from '../../../models/activitypub/actor'
90d4bb81 6import { forwardVideoRelatedActivity } from '../send/utils'
1297eb5d 7import { getOrCreateVideoAndAccountAndChannel } from '../videos'
a8f378e0 8import { getVideoLikeActivityPubUrl } from '../url'
848f499d 9import { getAPId } from '../../../helpers/activitypub'
0032ebe9 10
e587e0ec
C
11async function processLikeActivity (activity: ActivityLike, byActor: ActorModel) {
12 return retryTransactionWrapper(processLikeVideo, byActor, activity)
0032ebe9
C
13}
14
15// ---------------------------------------------------------------------------
16
17export {
18 processLikeActivity
19}
20
21// ---------------------------------------------------------------------------
22
90d4bb81 23async function processLikeVideo (byActor: ActorModel, activity: ActivityLike) {
848f499d 24 const videoUrl = getAPId(activity.object)
63c93323 25
50d6de9c
C
26 const byAccount = byActor.Account
27 if (!byAccount) throw new Error('Cannot create like with the non account actor ' + byActor.url)
28
4157cdb1 29 const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: videoUrl })
0032ebe9 30
2ccaeeb3 31 return sequelizeTypescript.transaction(async t => {
970ceac0
C
32 const url = getVideoLikeActivityPubUrl(byActor, video)
33
34 const existingRate = await AccountVideoRateModel.loadByAccountAndVideoOrUrl(byAccount.id, video.id, url)
35 if (existingRate && existingRate.type === 'like') return
36
29d4e137
C
37 if (existingRate && existingRate.type === 'dislike') {
38 await video.decrement('dislikes', { transaction: t })
39 }
40
a21e25ff
C
41 await video.increment('likes', { transaction: t })
42
43 const rate = existingRate || new AccountVideoRateModel()
44 rate.type = 'like'
45 rate.videoId = video.id
46 rate.accountId = byAccount.id
47 rate.url = url
48
49 await rate.save({ transaction: t })
50
970ceac0 51 if (video.isOwned()) {
63c93323 52 // Don't resend the activity to the sender
50d6de9c 53 const exceptions = [ byActor ]
9588d4f4
C
54
55 await forwardVideoRelatedActivity(activity, t, exceptions, video)
63c93323 56 }
0032ebe9
C
57 })
58}