]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/lib/activitypub/process/process-dislike.ts
Optimize AP fetch
[github/Chocobozzz/PeerTube.git] / server / lib / activitypub / process / process-dislike.ts
1 import { ActivityCreate, ActivityDislike } from '../../../../shared'
2 import { DislikeObject } from '../../../../shared/models/activitypub/objects'
3 import { retryTransactionWrapper } from '../../../helpers/database-utils'
4 import { sequelizeTypescript } from '../../../initializers/database'
5 import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
6 import { APProcessorOptions } from '../../../types/activitypub-processor.model'
7 import { MActorSignature } from '../../../types/models'
8 import { forwardVideoRelatedActivity } from '../send/utils'
9 import { getOrCreateAPVideo } from '../videos'
10
11 async function processDislikeActivity (options: APProcessorOptions<ActivityCreate | ActivityDislike>) {
12 const { activity, byActor } = options
13 return retryTransactionWrapper(processDislike, activity, byActor)
14 }
15
16 // ---------------------------------------------------------------------------
17
18 export {
19 processDislikeActivity
20 }
21
22 // ---------------------------------------------------------------------------
23
24 async function processDislike (activity: ActivityCreate | ActivityDislike, byActor: MActorSignature) {
25 const dislikeObject = activity.type === 'Dislike'
26 ? activity.object
27 : (activity.object as DislikeObject).object
28
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 getOrCreateAPVideo({ videoObject: dislikeObject })
34
35 return sequelizeTypescript.transaction(async t => {
36 const existingRate = await AccountVideoRateModel.loadByAccountAndVideoOrUrl(byAccount.id, video.id, activity.id, t)
37 if (existingRate && existingRate.type === 'dislike') return
38
39 await video.increment('dislikes', { transaction: t })
40
41 if (existingRate && existingRate.type === 'like') {
42 await video.decrement('likes', { transaction: t })
43 }
44
45 const rate = existingRate || new AccountVideoRateModel()
46 rate.type = 'dislike'
47 rate.videoId = video.id
48 rate.accountId = byAccount.id
49 rate.url = activity.id
50
51 await rate.save({ transaction: t })
52
53 if (video.isOwned()) {
54 // Don't resend the activity to the sender
55 const exceptions = [ byActor ]
56
57 await forwardVideoRelatedActivity(activity, t, exceptions, video)
58 }
59 })
60 }