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'
|
2017-12-12 17:53:50 +01:00
|
|
|
import { sequelizeTypescript } from '../../../initializers'
|
|
|
|
import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
|
2018-06-13 14:27:40 +02:00
|
|
|
import { forwardVideoRelatedActivity } from '../send/utils'
|
2018-08-22 16:15:35 +02:00
|
|
|
import { getOrCreateVideoAndAccountAndChannel } from '../videos'
|
2018-11-22 15:30:41 +01:00
|
|
|
import { getVideoLikeActivityPubUrl } from '../url'
|
2019-01-15 11:14:12 +01:00
|
|
|
import { getAPId } from '../../../helpers/activitypub'
|
2019-08-02 10:53:36 +02:00
|
|
|
import { APProcessorOptions } from '../../../typings/activitypub-processor.model'
|
2019-08-15 11:53:26 +02:00
|
|
|
import { MActorSignature } from '../../../typings/models'
|
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
|
2018-09-19 14:44:20 +02:00
|
|
|
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) {
|
2019-01-15 11:14:12 +01:00
|
|
|
const videoUrl = getAPId(activity.object)
|
2017-11-24 13:41:10 +01:00
|
|
|
|
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)
|
|
|
|
|
2018-09-19 11:16:23 +02:00
|
|
|
const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: videoUrl })
|
2017-11-23 14:19:55 +01:00
|
|
|
|
2018-01-10 17:18:12 +01:00
|
|
|
return sequelizeTypescript.transaction(async t => {
|
2019-08-01 10:15:28 +02:00
|
|
|
const url = getVideoLikeActivityPubUrl(byActor, video)
|
|
|
|
|
|
|
|
const existingRate = await AccountVideoRateModel.loadByAccountAndVideoOrUrl(byAccount.id, video.id, url)
|
|
|
|
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 })
|
|
|
|
}
|
|
|
|
|
2019-08-01 14:26:49 +02:00
|
|
|
await video.increment('likes', { transaction: t })
|
|
|
|
|
|
|
|
const rate = existingRate || new AccountVideoRateModel()
|
|
|
|
rate.type = 'like'
|
|
|
|
rate.videoId = video.id
|
|
|
|
rate.accountId = byAccount.id
|
|
|
|
rate.url = url
|
|
|
|
|
|
|
|
await rate.save({ transaction: t })
|
|
|
|
|
2019-08-01 10:15:28 +02:00
|
|
|
if (video.isOwned()) {
|
2017-11-24 13:41:10 +01:00
|
|
|
// Don't resend the activity to the sender
|
2017-12-14 17:38:41 +01:00
|
|
|
const exceptions = [ byActor ]
|
2018-05-31 10:23:56 +02:00
|
|
|
|
|
|
|
await forwardVideoRelatedActivity(activity, t, exceptions, video)
|
2017-11-24 13:41:10 +01:00
|
|
|
}
|
2017-11-23 14:19:55 +01:00
|
|
|
})
|
|
|
|
}
|