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

85 lines
2.8 KiB
TypeScript
Raw Normal View History

2018-01-10 17:18:12 +01:00
import { Transaction } from 'sequelize'
import { sendLike, sendUndoDislike, sendUndoLike } from './send'
2018-08-22 16:15:35 +02:00
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'
2018-11-14 15:01:28 +01:00
import { doRequest } from '../../helpers/requests'
import { checkUrlsSameHost, getAPId } from '../../helpers/activitypub'
2020-11-20 11:21:08 +01:00
import { getVideoDislikeActivityPubUrlByLocalActor, getVideoLikeActivityPubUrlByLocalActor } from './url'
import { sendDislike } from './send/send-dislike'
2020-06-18 10:45:25 +02:00
import { MAccountActor, MActorUrl, MVideo, MVideoAccountLight, MVideoId } from '../../types/models'
2018-08-22 16:15:35 +02:00
2019-08-15 11:53:26 +02:00
async function createRates (ratesUrl: string[], video: MVideo, rate: VideoRateType) {
2018-11-14 15:01:28 +01:00
await Bluebird.map(ratesUrl, async rateUrl => {
2018-08-22 16:15:35 +02:00
try {
2018-11-14 15:01:28 +01:00
// Fetch url
2020-02-28 16:51:25 +01:00
const { body } = await doRequest<any>({
2018-11-14 15:01:28 +01:00
uri: rateUrl,
json: true,
activityPub: true
})
if (!body || !body.actor) throw new Error('Body or body actor is invalid')
const actorUrl = getAPId(body.actor)
2018-11-14 15:01:28 +01:00
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}`)
}
2018-08-22 16:15:35 +02:00
const actor = await getOrCreateActorAndServerAndModel(actorUrl)
2018-11-14 15:01:28 +01:00
2019-03-19 16:23:02 +01:00
const entry = {
videoId: video.id,
accountId: actor.Account.id,
type: rate,
url: body.id
}
2020-12-08 14:30:29 +01:00
// Video "likes"/"dislikes" will be updated by the caller
await AccountVideoRateModel.upsert(entry)
2018-08-22 16:15:35 +02:00
} catch (err) {
2018-11-14 15:01:28 +01:00
logger.warn('Cannot add rate %s.', rateUrl, { err })
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
}
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
}