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