PeerTube/server/lib/activitypub/process/process-like.ts

61 lines
2.2 KiB
TypeScript
Raw Normal View History

import { VideoModel } from '@server/models/video/video'
2017-12-12 17:53:50 +01:00
import { ActivityLike } from '../../../../shared/models/activitypub'
2017-12-28 11:16:08 +01:00
import { retryTransactionWrapper } from '../../../helpers/database-utils'
2020-05-07 14:58:24 +02:00
import { sequelizeTypescript } from '../../../initializers/database'
import { getAPId } from '../../../lib/activitypub/activity'
2017-12-12 17:53:50 +01:00
import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
2020-06-18 10:45:25 +02:00
import { APProcessorOptions } from '../../../types/activitypub-processor.model'
import { MActorSignature } from '../../../types/models'
import { federateVideoIfNeeded, getOrCreateAPVideo } from '../videos'
2017-11-23 14:19:55 +01:00
2019-08-02 10:53:36 +02:00
async function processLikeActivity (options: APProcessorOptions<ActivityLike>) {
const { activity, byActor } = options
return retryTransactionWrapper(processLikeVideo, byActor, activity)
2017-11-23 14:19:55 +01:00
}
// ---------------------------------------------------------------------------
export {
processLikeActivity
}
// ---------------------------------------------------------------------------
2019-08-15 11:53:26 +02:00
async function processLikeVideo (byActor: MActorSignature, activity: ActivityLike) {
const videoUrl = getAPId(activity.object)
2017-12-14 17:38:41 +01:00
const byAccount = byActor.Account
if (!byAccount) throw new Error('Cannot create like with the non account actor ' + byActor.url)
const { video: onlyVideo } = await getOrCreateAPVideo({ videoObject: videoUrl, fetchType: 'only-video' })
// We don't care about likes of remote videos
if (!onlyVideo.isOwned()) return
2017-11-23 14:19:55 +01:00
2018-01-10 17:18:12 +01:00
return sequelizeTypescript.transaction(async t => {
2022-06-28 14:57:51 +02:00
const video = await VideoModel.loadFull(onlyVideo.id, t)
2020-12-08 14:30:29 +01:00
const existingRate = await AccountVideoRateModel.loadByAccountAndVideoOrUrl(byAccount.id, video.id, activity.id, t)
2019-08-01 10:15:28 +02:00
if (existingRate && existingRate.type === 'like') return
2019-08-01 14:19:18 +02:00
if (existingRate && existingRate.type === 'dislike') {
await video.decrement('dislikes', { transaction: t })
video.dislikes--
2019-08-01 14:19:18 +02:00
}
2019-08-01 14:26:49 +02:00
await video.increment('likes', { transaction: t })
video.likes++
2019-08-01 14:26:49 +02:00
const rate = existingRate || new AccountVideoRateModel()
rate.type = 'like'
rate.videoId = video.id
rate.accountId = byAccount.id
2020-11-20 11:21:08 +01:00
rate.url = activity.id
2019-08-01 14:26:49 +02:00
await rate.save({ transaction: t })
await federateVideoIfNeeded(video, false, t)
2017-11-23 14:19:55 +01:00
})
}