X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Factivitypub%2Fvideo-rates.ts;h=2e7920f4e2d0d8dc83ea1fdb3800a45c22d0cf17;hb=866b5d3f5230204d611a556260102996c1aefe10;hp=79ccfbc7edbba0e8b8c9d27496dec066e7659791;hpb=a3b7421abb4192e215aa280418b62e96958c5e42;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/activitypub/video-rates.ts b/server/lib/activitypub/video-rates.ts index 79ccfbc7e..2e7920f4e 100644 --- a/server/lib/activitypub/video-rates.ts +++ b/server/lib/activitypub/video-rates.ts @@ -1,72 +1,48 @@ import { Transaction } from 'sequelize' -import { 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/constants' -import { doRequest } from '../../helpers/requests' -import { checkUrlsSameHost, getAPId } from '../../helpers/activitypub' -import { getVideoDislikeActivityPubUrl, getVideoLikeActivityPubUrl } from './url' +import { MAccountActor, MActorUrl, MVideoAccountLight, MVideoFullLight, MVideoId } from '../../types/models' +import { sendLike, sendUndoDislike, sendUndoLike } from './send' import { sendDislike } from './send/send-dislike' -import { MAccountActor, MActorUrl, MVideo, MVideoAccountLight, MVideoId } from '../../typings/models' - -async function createRates (ratesUrl: string[], video: MVideo, rate: VideoRateType) { - let rateCounts = 0 - - await Bluebird.map(ratesUrl, async rateUrl => { - try { - // Fetch url - const { body } = await doRequest({ - uri: rateUrl, - json: true, - activityPub: true - }) - if (!body || !body.actor) throw new Error('Body or body actor is invalid') - - const actorUrl = getAPId(body.actor) - if (checkUrlsSameHost(actorUrl, rateUrl) !== true) { - throw new Error(`Rate url ${rateUrl} has not the same host than actor url ${actorUrl}`) - } - - if (checkUrlsSameHost(body.id, rateUrl) !== true) { - throw new Error(`Rate url ${rateUrl} host is different from the AP object id ${body.id}`) - } - - const actor = await getOrCreateActorAndServerAndModel(actorUrl) +import { getVideoDislikeActivityPubUrlByLocalActor, getVideoLikeActivityPubUrlByLocalActor } from './url' +import { federateVideoIfNeeded } from './videos' - const entry = { - videoId: video.id, - accountId: actor.Account.id, - type: rate, - url: body.id - } +async function sendVideoRateChange ( + account: MAccountActor, + video: MVideoFullLight, + likes: number, + dislikes: number, + t: Transaction +) { + if (video.isOwned()) return federateVideoIfNeeded(video, false, t) - const created = await AccountVideoRateModel.upsert(entry) + return sendVideoRateChangeToOrigin(account, video, likes, dislikes, t) +} - if (created) rateCounts += 1 - } catch (err) { - logger.warn('Cannot add rate %s.', rateUrl, { err }) - } - }, { concurrency: CRAWL_REQUEST_CONCURRENCY }) +function getLocalRateUrl (rateType: VideoRateType, actor: MActorUrl, video: MVideoId) { + return rateType === 'like' + ? getVideoLikeActivityPubUrlByLocalActor(actor, video) + : getVideoDislikeActivityPubUrlByLocalActor(actor, video) +} - logger.info('Adding %d %s to video %s.', rateCounts, rate, video.uuid) +// --------------------------------------------------------------------------- - // This is "likes" and "dislikes" - if (rateCounts !== 0) { - const field = rate === 'like' ? 'likes' : 'dislikes' - await video.increment(field, { by: rateCounts }) - } +export { + getLocalRateUrl, + sendVideoRateChange } -async function sendVideoRateChange ( +// --------------------------------------------------------------------------- + +async function sendVideoRateChangeToOrigin ( account: MAccountActor, video: MVideoAccountLight, likes: number, dislikes: number, t: Transaction ) { + // Local video, we don't need to send like + if (video.isOwned()) return + const actor = account.Actor // Keep the order: first we undo and then we create @@ -81,15 +57,3 @@ async function sendVideoRateChange ( // Dislike if (dislikes > 0) await sendDislike(actor, video, t) } - -function getRateUrl (rateType: VideoRateType, actor: MActorUrl, video: MVideoId) { - return rateType === 'like' - ? getVideoLikeActivityPubUrl(actor, video) - : getVideoDislikeActivityPubUrl(actor, video) -} - -export { - getRateUrl, - createRates, - sendVideoRateChange -}