X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Factivitypub%2Fvideo-rates.ts;h=f40c07fea368f90e092163baa545a7ce50c41773;hb=a786d8a08bf99f339bf16808f46e160404497ae2;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..f40c07fea 100644 --- a/server/lib/activitypub/video-rates.ts +++ b/server/lib/activitypub/video-rates.ts @@ -1,52 +1,80 @@ +import * as Bluebird from 'bluebird' 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 { doJSONRequest } from '@server/helpers/requests' +import { VideoRateType } from '../../../shared/models/videos' +import { checkUrlsSameHost, getAPId } from '../../helpers/activitypub' +import { logger } from '../../helpers/logger' +import { CRAWL_REQUEST_CONCURRENCY } from '../../initializers/constants' +import { AccountVideoRateModel } from '../../models/account/account-video-rate' +import { MAccountActor, MActorUrl, MVideo, MVideoAccountLight, MVideoId } from '../../types/models' +import { getOrCreateActorAndServerAndModel } from './actor' +import { sendLike, sendUndoDislike, sendUndoLike } from './send' +import { sendDislike } from './send/send-dislike' +import { getVideoDislikeActivityPubUrlByLocalActor, getVideoLikeActivityPubUrlByLocalActor } from './url' - // Keep the order: first we undo and then we create +async function createRates (ratesUrl: string[], video: MVideo, rate: VideoRateType) { + await Bluebird.map(ratesUrl, async rateUrl => { + try { + // Fetch url + const { body } = await doJSONRequest(rateUrl, { activityPub: true }) + if (!body || !body.actor) throw new Error('Body or body actor is invalid') - // Undo Like - if (likes < 0) await sendUndoLikeToVideoFollowers(actor, video, t) - // Undo Dislike - if (dislikes < 0) await sendUndoDislikeToVideoFollowers(actor, video, t) + 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}`) + } - // Like - if (likes > 0) await sendLikeToVideoFollowers(actor, video, t) - // Dislike - if (dislikes > 0) await sendCreateDislikeToVideoFollowers(actor, video, t) + 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) + + const entry = { + videoId: video.id, + accountId: actor.Account.id, + type: rate, + url: body.id + } + + // Video "likes"/"dislikes" will be updated by the caller + await AccountVideoRateModel.upsert(entry) + } catch (err) { + logger.warn('Cannot add rate %s.', rateUrl, { err }) + } + }, { concurrency: CRAWL_REQUEST_CONCURRENCY }) } -async function sendVideoRateChangeToOrigin (account: AccountModel, - video: VideoModel, - likes: number, - dislikes: number, - t: Transaction) { +async function sendVideoRateChange ( + account: MAccountActor, + video: MVideoAccountLight, + 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 sendDislike(actor, video, t) +} + +function getLocalRateUrl (rateType: VideoRateType, actor: MActorUrl, video: MVideoId) { + return rateType === 'like' + ? getVideoLikeActivityPubUrlByLocalActor(actor, video) + : getVideoDislikeActivityPubUrlByLocalActor(actor, video) } export { - sendVideoRateChangeToFollowers, - sendVideoRateChangeToOrigin + getLocalRateUrl, + createRates, + sendVideoRateChange }