2017-12-12 11:53:50 -05:00
|
|
|
import { ActivityLike } from '../../../../shared/models/activitypub'
|
2020-11-20 05:21:08 -05:00
|
|
|
import { getAPId } from '../../../helpers/activitypub'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { retryTransactionWrapper } from '../../../helpers/database-utils'
|
2020-05-07 08:58:24 -04:00
|
|
|
import { sequelizeTypescript } from '../../../initializers/database'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
|
2020-06-18 04:45:25 -04:00
|
|
|
import { APProcessorOptions } from '../../../types/activitypub-processor.model'
|
|
|
|
import { MActorSignature } from '../../../types/models'
|
2020-11-20 05:21:08 -05:00
|
|
|
import { forwardVideoRelatedActivity } from '../send/utils'
|
|
|
|
import { getOrCreateVideoAndAccountAndChannel } from '../videos'
|
2017-11-23 08:19:55 -05:00
|
|
|
|
2019-08-02 04:53:36 -04:00
|
|
|
async function processLikeActivity (options: APProcessorOptions<ActivityLike>) {
|
|
|
|
const { activity, byActor } = options
|
2018-09-19 08:44:20 -04:00
|
|
|
return retryTransactionWrapper(processLikeVideo, byActor, activity)
|
2017-11-23 08:19:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processLikeActivity
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
async function processLikeVideo (byActor: MActorSignature, activity: ActivityLike) {
|
2019-01-15 05:14:12 -05:00
|
|
|
const videoUrl = getAPId(activity.object)
|
2017-11-24 07:41:10 -05:00
|
|
|
|
2017-12-14 11:38:41 -05:00
|
|
|
const byAccount = byActor.Account
|
|
|
|
if (!byAccount) throw new Error('Cannot create like with the non account actor ' + byActor.url)
|
|
|
|
|
2018-09-19 05:16:23 -04:00
|
|
|
const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: videoUrl })
|
2017-11-23 08:19:55 -05:00
|
|
|
|
2018-01-10 11:18:12 -05:00
|
|
|
return sequelizeTypescript.transaction(async t => {
|
2020-12-08 08:30:29 -05:00
|
|
|
const existingRate = await AccountVideoRateModel.loadByAccountAndVideoOrUrl(byAccount.id, video.id, activity.id, t)
|
2019-08-01 04:15:28 -04:00
|
|
|
if (existingRate && existingRate.type === 'like') return
|
|
|
|
|
2019-08-01 08:19:18 -04:00
|
|
|
if (existingRate && existingRate.type === 'dislike') {
|
|
|
|
await video.decrement('dislikes', { transaction: t })
|
|
|
|
}
|
|
|
|
|
2019-08-01 08:26:49 -04:00
|
|
|
await video.increment('likes', { transaction: t })
|
|
|
|
|
|
|
|
const rate = existingRate || new AccountVideoRateModel()
|
|
|
|
rate.type = 'like'
|
|
|
|
rate.videoId = video.id
|
|
|
|
rate.accountId = byAccount.id
|
2020-11-20 05:21:08 -05:00
|
|
|
rate.url = activity.id
|
2019-08-01 08:26:49 -04:00
|
|
|
|
|
|
|
await rate.save({ transaction: t })
|
|
|
|
|
2019-08-01 04:15:28 -04:00
|
|
|
if (video.isOwned()) {
|
2017-11-24 07:41:10 -05:00
|
|
|
// Don't resend the activity to the sender
|
2017-12-14 11:38:41 -05:00
|
|
|
const exceptions = [ byActor ]
|
2018-05-31 04:23:56 -04:00
|
|
|
|
|
|
|
await forwardVideoRelatedActivity(activity, t, exceptions, video)
|
2017-11-24 07:41:10 -05:00
|
|
|
}
|
2017-11-23 08:19:55 -05:00
|
|
|
})
|
|
|
|
}
|