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