2019-01-15 04:14:12 -06:00
|
|
|
import { ActivityCreate, ActivityDislike } from '../../../../shared'
|
|
|
|
import { DislikeObject } from '../../../../shared/models/activitypub/objects'
|
|
|
|
import { retryTransactionWrapper } from '../../../helpers/database-utils'
|
2020-05-07 07:58:24 -05:00
|
|
|
import { sequelizeTypescript } from '../../../initializers/database'
|
2019-01-15 04:14:12 -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'
|
2020-11-20 04:21:08 -06:00
|
|
|
import { forwardVideoRelatedActivity } from '../send/utils'
|
2021-06-02 08:47:05 -05:00
|
|
|
import { getOrCreateAPVideo } from '../videos'
|
2019-01-15 04:14:12 -06:00
|
|
|
|
2019-08-02 03:53:36 -05:00
|
|
|
async function processDislikeActivity (options: APProcessorOptions<ActivityCreate | ActivityDislike>) {
|
|
|
|
const { activity, byActor } = options
|
2019-01-15 04:14:12 -06:00
|
|
|
return retryTransactionWrapper(processDislike, activity, byActor)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processDislikeActivity
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-08-15 04:53:26 -05:00
|
|
|
async function processDislike (activity: ActivityCreate | ActivityDislike, byActor: MActorSignature) {
|
2020-11-20 04:21:08 -06:00
|
|
|
const dislikeObject = activity.type === 'Dislike'
|
|
|
|
? activity.object
|
|
|
|
: (activity.object as DislikeObject).object
|
|
|
|
|
2019-01-15 04:14:12 -06:00
|
|
|
const byAccount = byActor.Account
|
|
|
|
|
|
|
|
if (!byAccount) throw new Error('Cannot create dislike with the non account actor ' + byActor.url)
|
|
|
|
|
2021-06-02 08:47:05 -05:00
|
|
|
const { video } = await getOrCreateAPVideo({ videoObject: dislikeObject })
|
2019-01-15 04:14:12 -06:00
|
|
|
|
|
|
|
return sequelizeTypescript.transaction(async t => {
|
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 === 'dislike') return
|
|
|
|
|
|
|
|
await video.increment('dislikes', { transaction: t })
|
2019-01-15 04:14:12 -06:00
|
|
|
|
2019-08-01 07:19:18 -05:00
|
|
|
if (existingRate && existingRate.type === 'like') {
|
|
|
|
await video.decrement('likes', { transaction: t })
|
|
|
|
}
|
|
|
|
|
2019-08-01 07:26:49 -05:00
|
|
|
const rate = existingRate || new AccountVideoRateModel()
|
|
|
|
rate.type = 'dislike'
|
|
|
|
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 })
|
|
|
|
|
2019-08-01 03:15:28 -05:00
|
|
|
if (video.isOwned()) {
|
2019-01-15 04:14:12 -06:00
|
|
|
// Don't resend the activity to the sender
|
|
|
|
const exceptions = [ byActor ]
|
|
|
|
|
|
|
|
await forwardVideoRelatedActivity(activity, t, exceptions, video)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|