]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/activitypub/process/process-dislike.ts
Fix incorrect IDs in AP federation
[github/Chocobozzz/PeerTube.git] / server / lib / activitypub / process / process-dislike.ts
CommitLineData
848f499d
C
1import { ActivityCreate, ActivityDislike } from '../../../../shared'
2import { DislikeObject } from '../../../../shared/models/activitypub/objects'
3import { retryTransactionWrapper } from '../../../helpers/database-utils'
80fdaf06 4import { sequelizeTypescript } from '../../../initializers/database'
848f499d 5import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
26d6bf65
C
6import { APProcessorOptions } from '../../../types/activitypub-processor.model'
7import { MActorSignature } from '../../../types/models'
de94ac86
C
8import { forwardVideoRelatedActivity } from '../send/utils'
9import { getOrCreateVideoAndAccountAndChannel } from '../videos'
848f499d 10
1198edf4
C
11async function processDislikeActivity (options: APProcessorOptions<ActivityCreate | ActivityDislike>) {
12 const { activity, byActor } = options
848f499d
C
13 return retryTransactionWrapper(processDislike, activity, byActor)
14}
15
16// ---------------------------------------------------------------------------
17
18export {
19 processDislikeActivity
20}
21
22// ---------------------------------------------------------------------------
23
453e83ea 24async function processDislike (activity: ActivityCreate | ActivityDislike, byActor: MActorSignature) {
de94ac86
C
25 const dislikeObject = activity.type === 'Dislike'
26 ? activity.object
27 : (activity.object as DislikeObject).object
28
848f499d
C
29 const byAccount = byActor.Account
30
31 if (!byAccount) throw new Error('Cannot create dislike with the non account actor ' + byActor.url)
32
33 const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: dislikeObject })
34
35 return sequelizeTypescript.transaction(async t => {
de94ac86 36 const existingRate = await AccountVideoRateModel.loadByAccountAndVideoOrUrl(byAccount.id, video.id, activity.id)
970ceac0
C
37 if (existingRate && existingRate.type === 'dislike') return
38
970ceac0 39 await video.increment('dislikes', { transaction: t })
848f499d 40
29d4e137
C
41 if (existingRate && existingRate.type === 'like') {
42 await video.decrement('likes', { transaction: t })
43 }
44
a21e25ff
C
45 const rate = existingRate || new AccountVideoRateModel()
46 rate.type = 'dislike'
47 rate.videoId = video.id
48 rate.accountId = byAccount.id
de94ac86 49 rate.url = activity.id
a21e25ff
C
50
51 await rate.save({ transaction: t })
52
970ceac0 53 if (video.isOwned()) {
848f499d
C
54 // Don't resend the activity to the sender
55 const exceptions = [ byActor ]
56
57 await forwardVideoRelatedActivity(activity, t, exceptions, video)
58 }
59 })
60}