X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Factivitypub%2Fvideo-rates.ts;h=1619251c3b4f424f107f4203e1ccb79e00cb6535;hb=1297eb5db651a230474670c5da1517862fb9cc3e;hp=19011b4ab835efb47a10515dcdc2d5ad4887846d;hpb=07197db4c567f22bbc9c12339062896dc76bac2f;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/activitypub/video-rates.ts b/server/lib/activitypub/video-rates.ts index 19011b4ab..1619251c3 100644 --- a/server/lib/activitypub/video-rates.ts +++ b/server/lib/activitypub/video-rates.ts @@ -2,6 +2,45 @@ import { Transaction } from 'sequelize' import { AccountModel } from '../../models/account/account' import { VideoModel } from '../../models/video/video' 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' + +async function createRates (actorUrls: string[], video: VideoModel, rate: VideoRateType) { + let rateCounts = 0 + + 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 + } + }) + + 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 sendVideoRateChange (account: AccountModel, video: VideoModel, @@ -24,5 +63,6 @@ async function sendVideoRateChange (account: AccountModel, } export { + createRates, sendVideoRateChange }