PeerTube/server/lib/activitypub/video-rates.ts

91 lines
3.0 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import { map } from 'bluebird'
2018-01-10 17:18:12 +01:00
import { Transaction } from 'sequelize'
2021-03-08 14:24:11 +01:00
import { doJSONRequest } from '@server/helpers/requests'
2018-08-22 16:15:35 +02:00
import { VideoRateType } from '../../../shared/models/videos'
2021-03-08 14:24:11 +01:00
import { checkUrlsSameHost, getAPId } from '../../helpers/activitypub'
2021-06-03 17:12:38 +02:00
import { logger, loggerTagsFactory } from '../../helpers/logger'
import { CRAWL_REQUEST_CONCURRENCY } from '../../initializers/constants'
2021-03-08 14:24:11 +01:00
import { AccountVideoRateModel } from '../../models/account/account-video-rate'
2020-06-18 10:45:25 +02:00
import { MAccountActor, MActorUrl, MVideo, MVideoAccountLight, MVideoId } from '../../types/models'
2021-06-03 16:02:29 +02:00
import { getOrCreateAPActor } from './actors'
2021-03-08 14:24:11 +01:00
import { sendLike, sendUndoDislike, sendUndoLike } from './send'
import { sendDislike } from './send/send-dislike'
import { getVideoDislikeActivityPubUrlByLocalActor, getVideoLikeActivityPubUrlByLocalActor } from './url'
2018-08-22 16:15:35 +02:00
2021-06-03 17:12:38 +02:00
const lTags = loggerTagsFactory('ap', 'video-rate', 'create')
2019-08-15 11:53:26 +02:00
async function createRates (ratesUrl: string[], video: MVideo, rate: VideoRateType) {
2021-08-27 14:32:44 +02:00
await map(ratesUrl, async rateUrl => {
2018-08-22 16:15:35 +02:00
try {
2021-06-03 14:30:09 +02:00
await createRate(rateUrl, video, rate)
2018-08-22 16:15:35 +02:00
} catch (err) {
logger.info('Cannot add rate %s.', rateUrl, { err, ...lTags(rateUrl, video.uuid, video.url) })
2018-08-22 16:15:35 +02:00
}
}, { concurrency: CRAWL_REQUEST_CONCURRENCY })
}
2018-01-10 17:18:12 +01:00
2019-08-15 11:53:26 +02:00
async function sendVideoRateChange (
account: MAccountActor,
video: MVideoAccountLight,
likes: number,
dislikes: number,
t: Transaction
) {
2018-01-10 17:18:12 +01:00
const actor = account.Actor
// Keep the order: first we undo and then we create
// Undo Like
if (likes < 0) await sendUndoLike(actor, video, t)
2018-01-10 17:18:12 +01:00
// Undo Dislike
if (dislikes < 0) await sendUndoDislike(actor, video, t)
2018-01-10 17:18:12 +01:00
// Like
if (likes > 0) await sendLike(actor, video, t)
2018-01-10 17:18:12 +01:00
// Dislike
if (dislikes > 0) await sendDislike(actor, video, t)
2018-01-10 17:18:12 +01:00
}
2020-11-20 11:21:08 +01:00
function getLocalRateUrl (rateType: VideoRateType, actor: MActorUrl, video: MVideoId) {
2019-08-15 11:53:26 +02:00
return rateType === 'like'
2020-11-20 11:21:08 +01:00
? getVideoLikeActivityPubUrlByLocalActor(actor, video)
: getVideoDislikeActivityPubUrlByLocalActor(actor, video)
2018-11-14 15:01:28 +01:00
}
2021-06-03 14:30:09 +02:00
// ---------------------------------------------------------------------------
2018-01-10 17:18:12 +01:00
export {
2020-11-20 11:21:08 +01:00
getLocalRateUrl,
2018-08-22 16:15:35 +02:00
createRates,
sendVideoRateChange
2018-01-10 17:18:12 +01:00
}
2021-06-03 14:30:09 +02:00
// ---------------------------------------------------------------------------
async function createRate (rateUrl: string, video: MVideo, rate: VideoRateType) {
// Fetch url
const { body } = await doJSONRequest<any>(rateUrl, { 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}`)
}
2021-06-03 16:02:29 +02:00
const actor = await getOrCreateAPActor(actorUrl)
2021-06-03 14:30:09 +02:00
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)
}