X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Factivitypub%2Fvideo-rates.ts;h=1619251c3b4f424f107f4203e1ccb79e00cb6535;hb=b88a459664957d6ab9c417a6749b611e6cc6c0e2;hp=1b2958cca0417e6ac36f796df455fcdb6fd3a08f;hpb=2ccaeeb341ffe8c2609039bf4c6d8835b4650316;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/activitypub/video-rates.ts b/server/lib/activitypub/video-rates.ts index 1b2958cca..1619251c3 100644 --- a/server/lib/activitypub/video-rates.ts +++ b/server/lib/activitypub/video-rates.ts @@ -1,52 +1,68 @@ import { Transaction } from 'sequelize' import { AccountModel } from '../../models/account/account' import { VideoModel } from '../../models/video/video' -import { - sendCreateDislikeToOrigin, sendCreateDislikeToVideoFollowers, sendLikeToOrigin, sendLikeToVideoFollowers, sendUndoDislikeToOrigin, - sendUndoDislikeToVideoFollowers, sendUndoLikeToOrigin, sendUndoLikeToVideoFollowers -} from './send' - -async function sendVideoRateChangeToFollowers (account: AccountModel, - video: VideoModel, - likes: number, - dislikes: number, - t: Transaction) { - const actor = account.Actor +import { sendCreateDislike, sendLike, sendUndoDislike, sendUndoLike } from './send' +import { VideoRateType } from '../../../shared/models/videos' +import * as Bluebird from 'bluebird' +import { getOrCreateActorAndServerAndModel } from './actor' +import { AccountVideoRateModel } from '../../models/account/account-video-rate' +import { logger } from '../../helpers/logger' +import { CRAWL_REQUEST_CONCURRENCY } from '../../initializers' - // Keep the order: first we undo and then we create +async function createRates (actorUrls: string[], video: VideoModel, rate: VideoRateType) { + let rateCounts = 0 - // Undo Like - if (likes < 0) await sendUndoLikeToVideoFollowers(actor, video, t) - // Undo Dislike - if (dislikes < 0) await sendUndoDislikeToVideoFollowers(actor, video, t) + await Bluebird.map(actorUrls, async actorUrl => { + try { + const actor = await getOrCreateActorAndServerAndModel(actorUrl) + const [ , created ] = await AccountVideoRateModel + .findOrCreate({ + where: { + videoId: video.id, + accountId: actor.Account.id + }, + defaults: { + videoId: video.id, + accountId: actor.Account.id, + type: rate + } + }) - // Like - if (likes > 0) await sendLikeToVideoFollowers(actor, video, t) - // Dislike - if (dislikes > 0) await sendCreateDislikeToVideoFollowers(actor, video, t) + if (created) rateCounts += 1 + } catch (err) { + logger.warn('Cannot add rate %s for actor %s.', rate, actorUrl, { err }) + } + }, { concurrency: CRAWL_REQUEST_CONCURRENCY }) + + logger.info('Adding %d %s to video %s.', rateCounts, rate, video.uuid) + + // This is "likes" and "dislikes" + if (rateCounts !== 0) await video.increment(rate + 's', { by: rateCounts }) + + return } -async function sendVideoRateChangeToOrigin (account: AccountModel, - video: VideoModel, - likes: number, - dislikes: number, - t: Transaction) { +async function sendVideoRateChange (account: AccountModel, + video: VideoModel, + likes: number, + dislikes: number, + t: Transaction) { const actor = account.Actor // Keep the order: first we undo and then we create // Undo Like - if (likes < 0) await sendUndoLikeToOrigin(actor, video, t) + if (likes < 0) await sendUndoLike(actor, video, t) // Undo Dislike - if (dislikes < 0) await sendUndoDislikeToOrigin(actor, video, t) + if (dislikes < 0) await sendUndoDislike(actor, video, t) // Like - if (likes > 0) await sendLikeToOrigin(actor, video, t) + if (likes > 0) await sendLike(actor, video, t) // Dislike - if (dislikes > 0) await sendCreateDislikeToOrigin(actor, video, t) + if (dislikes > 0) await sendCreateDislike(actor, video, t) } export { - sendVideoRateChangeToFollowers, - sendVideoRateChangeToOrigin + createRates, + sendVideoRateChange }