mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 02:39:33 +02:00
Federate likes/dislikes
This commit is contained in:
parent
d52eb8f656
commit
0032ebe94a
27 changed files with 548 additions and 62 deletions
50
server/lib/activitypub/process/process-like.ts
Normal file
50
server/lib/activitypub/process/process-like.ts
Normal file
|
@ -0,0 +1,50 @@
|
|||
import { ActivityLike } from '../../../../shared/models/activitypub/activity'
|
||||
import { database as db } from '../../../initializers'
|
||||
import { AccountInstance } from '../../../models/account/account-interface'
|
||||
import { getOrCreateAccountAndServer } from '../account'
|
||||
import { sendLikeToVideoFollowers } from '../send/send-like'
|
||||
import { retryTransactionWrapper } from '../../../helpers/database-utils'
|
||||
|
||||
async function processLikeActivity (activity: ActivityLike) {
|
||||
const account = await getOrCreateAccountAndServer(activity.actor)
|
||||
|
||||
return processLikeVideo(account, activity.object)
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
export {
|
||||
processLikeActivity
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
async function processLikeVideo (byAccount: AccountInstance, videoUrl: string) {
|
||||
const options = {
|
||||
arguments: [ byAccount, videoUrl ],
|
||||
errorMessage: 'Cannot like the video with many retries.'
|
||||
}
|
||||
|
||||
return retryTransactionWrapper(createVideoLike, options)
|
||||
}
|
||||
|
||||
function createVideoLike (byAccount: AccountInstance, videoUrl: string) {
|
||||
return db.sequelize.transaction(async t => {
|
||||
const video = await db.Video.loadByUrlAndPopulateAccount(videoUrl)
|
||||
|
||||
if (!video) throw new Error('Unknown video ' + videoUrl)
|
||||
|
||||
const rate = {
|
||||
type: 'like' as 'like',
|
||||
videoId: video.id,
|
||||
accountId: byAccount.id
|
||||
}
|
||||
const [ , created ] = await db.AccountVideoRate.findOrCreate({
|
||||
where: rate,
|
||||
defaults: rate
|
||||
})
|
||||
await video.increment('likes')
|
||||
|
||||
if (video.isOwned() && created === true) await sendLikeToVideoFollowers(byAccount, video, undefined)
|
||||
})
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue