2018-01-10 11:18:12 -05:00
|
|
|
import { Transaction } from 'sequelize'
|
2019-01-15 08:52:33 -05:00
|
|
|
import { sendLike, sendUndoDislike, sendUndoLike } from './send'
|
2018-08-22 10:15:35 -04: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'
|
2019-04-11 08:26:41 -04:00
|
|
|
import { CRAWL_REQUEST_CONCURRENCY } from '../../initializers/constants'
|
2018-11-14 09:01:28 -05:00
|
|
|
import { doRequest } from '../../helpers/requests'
|
2019-01-15 05:14:12 -05:00
|
|
|
import { checkUrlsSameHost, getAPId } from '../../helpers/activitypub'
|
2018-11-14 09:01:28 -05:00
|
|
|
import { getVideoDislikeActivityPubUrl, getVideoLikeActivityPubUrl } from './url'
|
2019-01-15 08:52:33 -05:00
|
|
|
import { sendDislike } from './send/send-dislike'
|
2019-08-15 05:53:26 -04:00
|
|
|
import { MAccountActor, MActorUrl, MVideo, MVideoAccountLight, MVideoId } from '../../typings/models'
|
2018-08-22 10:15:35 -04:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
async function createRates (ratesUrl: string[], video: MVideo, rate: VideoRateType) {
|
2018-08-22 10:15:35 -04:00
|
|
|
let rateCounts = 0
|
|
|
|
|
2018-11-14 09:01:28 -05:00
|
|
|
await Bluebird.map(ratesUrl, async rateUrl => {
|
2018-08-22 10:15:35 -04:00
|
|
|
try {
|
2018-11-14 09:01:28 -05:00
|
|
|
// 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')
|
|
|
|
|
2019-01-15 05:14:12 -05:00
|
|
|
const actorUrl = getAPId(body.actor)
|
2018-11-14 09:01:28 -05: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 10:15:35 -04:00
|
|
|
const actor = await getOrCreateActorAndServerAndModel(actorUrl)
|
2018-11-14 09:01:28 -05:00
|
|
|
|
2019-03-19 11:23:02 -04:00
|
|
|
const entry = {
|
|
|
|
videoId: video.id,
|
|
|
|
accountId: actor.Account.id,
|
|
|
|
type: rate,
|
|
|
|
url: body.id
|
|
|
|
}
|
|
|
|
|
|
|
|
const created = await AccountVideoRateModel.upsert(entry)
|
2018-08-22 10:15:35 -04:00
|
|
|
|
|
|
|
if (created) rateCounts += 1
|
|
|
|
} catch (err) {
|
2018-11-14 09:01:28 -05:00
|
|
|
logger.warn('Cannot add rate %s.', rateUrl, { err })
|
2018-08-22 10:15:35 -04:00
|
|
|
}
|
|
|
|
}, { concurrency: CRAWL_REQUEST_CONCURRENCY })
|
|
|
|
|
|
|
|
logger.info('Adding %d %s to video %s.', rateCounts, rate, video.uuid)
|
|
|
|
|
|
|
|
// This is "likes" and "dislikes"
|
2019-04-18 05:28:17 -04:00
|
|
|
if (rateCounts !== 0) {
|
|
|
|
const field = rate === 'like' ? 'likes' : 'dislikes'
|
|
|
|
await video.increment(field, { by: rateCounts })
|
|
|
|
}
|
2018-08-22 10:15:35 -04:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
function getRateUrl (rateType: VideoRateType, actor: MActorUrl, video: MVideoId) {
|
|
|
|
return rateType === 'like'
|
|
|
|
? getVideoLikeActivityPubUrl(actor, video)
|
|
|
|
: getVideoDislikeActivityPubUrl(actor, video)
|
2018-11-14 09:01:28 -05:00
|
|
|
}
|
|
|
|
|
2018-01-10 11:18:12 -05:00
|
|
|
export {
|
2018-11-14 09:01:28 -05:00
|
|
|
getRateUrl,
|
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
|
|
|
}
|