PeerTube/server/lib/activitypub/process/process-like.ts

61 lines
2.0 KiB
TypeScript
Raw Normal View History

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'
2017-12-14 17:38:41 +01:00
import { ActorModel } from '../../../models/activitypub/actor'
import { getOrCreateActorAndServerAndModel } from '../actor'
import { forwardActivity } from '../send/misc'
2018-01-10 17:18:12 +01:00
import { getOrCreateAccountAndVideoAndChannel } from '../videos'
2017-11-23 14:19:55 +01:00
async function processLikeActivity (activity: ActivityLike) {
2017-12-14 17:38:41 +01:00
const actor = await getOrCreateActorAndServerAndModel(activity.actor)
2017-11-23 14:19:55 +01:00
2017-12-14 17:38:41 +01:00
return processLikeVideo(actor, activity)
2017-11-23 14:19:55 +01:00
}
// ---------------------------------------------------------------------------
export {
processLikeActivity
}
// ---------------------------------------------------------------------------
2017-12-14 17:38:41 +01:00
async function processLikeVideo (actor: ActorModel, activity: ActivityLike) {
2017-11-23 14:19:55 +01:00
const options = {
2017-12-14 17:38:41 +01:00
arguments: [ actor, activity ],
2017-11-23 14:19:55 +01:00
errorMessage: 'Cannot like the video with many retries.'
}
return retryTransactionWrapper(createVideoLike, options)
}
2018-01-10 17:18:12 +01:00
async function createVideoLike (byActor: ActorModel, activity: ActivityLike) {
const videoUrl = activity.object
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-01-10 17:18:12 +01:00
const { video } = await getOrCreateAccountAndVideoAndChannel(videoUrl)
2017-11-23 14:19:55 +01:00
2018-01-10 17:18:12 +01:00
return sequelizeTypescript.transaction(async t => {
2017-11-23 14:19:55 +01:00
const rate = {
type: 'like' as 'like',
videoId: video.id,
accountId: byAccount.id
}
2017-12-12 17:53:50 +01:00
const [ , created ] = await AccountVideoRateModel.findOrCreate({
2017-11-23 14:19:55 +01:00
where: rate,
defaults: rate,
transaction: t
2017-11-23 14:19:55 +01:00
})
2017-11-30 13:51:53 +01:00
if (created === true) await video.increment('likes', { transaction: t })
2017-11-23 14:19:55 +01:00
if (video.isOwned() && created === true) {
// Don't resend the activity to the sender
2017-12-14 17:38:41 +01:00
const exceptions = [ byActor ]
await forwardActivity(activity, t, exceptions)
}
2017-11-23 14:19:55 +01:00
})
}