]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/activitypub/process/process-like.ts
Update Angular -> 8.2.0
[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
37 await AccountVideoRateModel.create({
0032ebe9
C
38 type: 'like' as 'like',
39 videoId: video.id,
970ceac0
C
40 accountId: byAccount.id,
41 url
42 }, { transaction: t })
43
44 await video.increment('likes', { transaction: t })
45
46 if (video.isOwned()) {
63c93323 47 // Don't resend the activity to the sender
50d6de9c 48 const exceptions = [ byActor ]
9588d4f4
C
49
50 await forwardVideoRelatedActivity(activity, t, exceptions, video)
63c93323 51 }
0032ebe9
C
52 })
53}