2017-12-12 11:53:50 -05:00
|
|
|
import { ActivityLike } from '../../../../shared/models/activitypub'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { retryTransactionWrapper } from '../../../helpers/database-utils'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { sequelizeTypescript } from '../../../initializers'
|
|
|
|
import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
|
2017-12-14 11:38:41 -05:00
|
|
|
import { ActorModel } from '../../../models/activitypub/actor'
|
2018-06-13 08:27:40 -04:00
|
|
|
import { forwardVideoRelatedActivity } from '../send/utils'
|
2018-08-22 10:15:35 -04:00
|
|
|
import { getOrCreateVideoAndAccountAndChannel } from '../videos'
|
2018-11-22 09:30:41 -05:00
|
|
|
import { getVideoLikeActivityPubUrl } from '../url'
|
2017-11-23 08:19:55 -05:00
|
|
|
|
2018-09-19 08:44:20 -04:00
|
|
|
async function processLikeActivity (activity: ActivityLike, byActor: ActorModel) {
|
|
|
|
return retryTransactionWrapper(processLikeVideo, byActor, activity)
|
2017-11-23 08:19:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processLikeActivity
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2018-06-13 08:27:40 -04:00
|
|
|
async function processLikeVideo (byActor: ActorModel, activity: ActivityLike) {
|
2017-11-24 07:41:10 -05:00
|
|
|
const videoUrl = activity.object
|
|
|
|
|
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 => {
|
2017-11-23 08:19:55 -05:00
|
|
|
const rate = {
|
|
|
|
type: 'like' as 'like',
|
|
|
|
videoId: video.id,
|
|
|
|
accountId: byAccount.id
|
|
|
|
}
|
2017-12-12 11:53:50 -05:00
|
|
|
const [ , created ] = await AccountVideoRateModel.findOrCreate({
|
2017-11-23 08:19:55 -05:00
|
|
|
where: rate,
|
2018-11-22 09:30:41 -05:00
|
|
|
defaults: Object.assign({}, rate, { url: getVideoLikeActivityPubUrl(byActor, video) }),
|
2017-11-24 07:41:10 -05:00
|
|
|
transaction: t
|
2017-11-23 08:19:55 -05:00
|
|
|
})
|
2017-11-30 07:51:53 -05:00
|
|
|
if (created === true) await video.increment('likes', { transaction: t })
|
2017-11-23 08:19:55 -05:00
|
|
|
|
2017-11-24 07:41:10 -05:00
|
|
|
if (video.isOwned() && created === true) {
|
|
|
|
// 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
|
|
|
})
|
|
|
|
}
|