2018-08-22 16:15:35 +02:00
|
|
|
import * as Bluebird from 'bluebird'
|
2021-03-05 13:26:02 +01:00
|
|
|
import { Transaction } from 'sequelize'
|
|
|
|
import { getServerActor } from '@server/models/application/application'
|
|
|
|
import { checkUrlsSameHost, getAPId } from '../../helpers/activitypub'
|
|
|
|
import { logger, loggerTagsFactory } from '../../helpers/logger'
|
2021-03-08 14:24:11 +01:00
|
|
|
import { doJSONRequest } from '../../helpers/requests'
|
2019-04-11 14:26:41 +02:00
|
|
|
import { CRAWL_REQUEST_CONCURRENCY } from '../../initializers/constants'
|
2021-03-05 13:26:02 +01:00
|
|
|
import { VideoShareModel } from '../../models/video/video-share'
|
2020-06-18 10:45:25 +02:00
|
|
|
import { MChannelActorLight, MVideo, MVideoAccountLight, MVideoId } from '../../types/models/video'
|
2021-03-05 13:26:02 +01:00
|
|
|
import { getOrCreateActorAndServerAndModel } from './actor'
|
|
|
|
import { sendUndoAnnounce, sendVideoAnnounce } from './send'
|
|
|
|
import { getLocalVideoAnnounceActivityPubUrl } from './url'
|
|
|
|
|
|
|
|
const lTags = loggerTagsFactory('share')
|
2017-11-20 10:24:29 +01:00
|
|
|
|
2019-08-15 11:53:26 +02:00
|
|
|
async function shareVideoByServerAndChannel (video: MVideoAccountLight, t: Transaction) {
|
2019-12-12 15:47:47 +01:00
|
|
|
if (!video.hasPrivacyForFederation()) return undefined
|
2017-12-19 10:34:56 +01:00
|
|
|
|
2018-05-11 15:10:13 +02:00
|
|
|
return Promise.all([
|
|
|
|
shareByServer(video, t),
|
|
|
|
shareByVideoChannel(video, t)
|
|
|
|
])
|
|
|
|
}
|
|
|
|
|
2019-08-15 11:53:26 +02:00
|
|
|
async function changeVideoChannelShare (
|
|
|
|
video: MVideoAccountLight,
|
|
|
|
oldVideoChannel: MChannelActorLight,
|
|
|
|
t: Transaction
|
|
|
|
) {
|
2021-03-05 13:26:02 +01:00
|
|
|
logger.info(
|
|
|
|
'Updating video channel of video %s: %s -> %s.', video.uuid, oldVideoChannel.name, video.VideoChannel.name,
|
|
|
|
lTags(video.uuid)
|
|
|
|
)
|
2018-09-04 10:22:10 +02:00
|
|
|
|
2018-05-11 15:10:13 +02:00
|
|
|
await undoShareByVideoChannel(video, oldVideoChannel, t)
|
|
|
|
|
|
|
|
await shareByVideoChannel(video, t)
|
|
|
|
}
|
|
|
|
|
2019-08-15 11:53:26 +02:00
|
|
|
async function addVideoShares (shareUrls: string[], video: MVideoId) {
|
2018-08-22 16:15:35 +02:00
|
|
|
await Bluebird.map(shareUrls, async shareUrl => {
|
|
|
|
try {
|
2021-03-08 14:24:11 +01:00
|
|
|
const { body } = await doJSONRequest<any>(shareUrl, { activityPub: true })
|
2018-11-14 15:01:28 +01:00
|
|
|
if (!body || !body.actor) throw new Error('Body or body actor is invalid')
|
|
|
|
|
2019-01-15 11:14:12 +01:00
|
|
|
const actorUrl = getAPId(body.actor)
|
2018-11-14 15:01:28 +01:00
|
|
|
if (checkUrlsSameHost(shareUrl, actorUrl) !== true) {
|
|
|
|
throw new Error(`Actor url ${actorUrl} has not the same host than the share url ${shareUrl}`)
|
|
|
|
}
|
2018-08-22 16:15:35 +02:00
|
|
|
|
|
|
|
const actor = await getOrCreateActorAndServerAndModel(actorUrl)
|
|
|
|
|
|
|
|
const entry = {
|
|
|
|
actorId: actor.id,
|
2019-08-15 11:53:26 +02:00
|
|
|
videoId: video.id,
|
2018-08-22 16:15:35 +02:00
|
|
|
url: shareUrl
|
|
|
|
}
|
|
|
|
|
2019-03-19 16:23:02 +01:00
|
|
|
await VideoShareModel.upsert(entry)
|
2018-08-22 16:15:35 +02:00
|
|
|
} catch (err) {
|
|
|
|
logger.warn('Cannot add share %s.', shareUrl, { err })
|
|
|
|
}
|
|
|
|
}, { concurrency: CRAWL_REQUEST_CONCURRENCY })
|
|
|
|
}
|
|
|
|
|
2018-05-11 15:10:13 +02:00
|
|
|
export {
|
|
|
|
changeVideoChannelShare,
|
2018-08-22 16:15:35 +02:00
|
|
|
addVideoShares,
|
2018-05-11 15:10:13 +02:00
|
|
|
shareVideoByServerAndChannel
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-08-15 11:53:26 +02:00
|
|
|
async function shareByServer (video: MVideo, t: Transaction) {
|
2017-12-14 17:38:41 +01:00
|
|
|
const serverActor = await getServerActor()
|
2017-11-20 10:24:29 +01:00
|
|
|
|
2020-11-20 11:21:08 +01:00
|
|
|
const serverShareUrl = getLocalVideoAnnounceActivityPubUrl(serverActor, video)
|
2019-01-10 15:39:51 +01:00
|
|
|
const [ serverShare ] = await VideoShareModel.findOrCreate({
|
2018-03-19 15:02:36 +01:00
|
|
|
defaults: {
|
|
|
|
actorId: serverActor.id,
|
|
|
|
videoId: video.id,
|
|
|
|
url: serverShareUrl
|
|
|
|
},
|
|
|
|
where: {
|
|
|
|
url: serverShareUrl
|
|
|
|
},
|
|
|
|
transaction: t
|
|
|
|
})
|
2019-01-10 15:39:51 +01:00
|
|
|
|
|
|
|
return sendVideoAnnounce(serverActor, serverShare, video, t)
|
2018-05-11 15:10:13 +02:00
|
|
|
}
|
2017-11-20 10:24:29 +01:00
|
|
|
|
2019-08-15 11:53:26 +02:00
|
|
|
async function shareByVideoChannel (video: MVideoAccountLight, t: Transaction) {
|
2020-11-20 11:21:08 +01:00
|
|
|
const videoChannelShareUrl = getLocalVideoAnnounceActivityPubUrl(video.VideoChannel.Actor, video)
|
2019-01-10 15:39:51 +01:00
|
|
|
const [ videoChannelShare ] = await VideoShareModel.findOrCreate({
|
2018-03-19 15:02:36 +01:00
|
|
|
defaults: {
|
|
|
|
actorId: video.VideoChannel.actorId,
|
|
|
|
videoId: video.id,
|
|
|
|
url: videoChannelShareUrl
|
|
|
|
},
|
|
|
|
where: {
|
|
|
|
url: videoChannelShareUrl
|
|
|
|
},
|
|
|
|
transaction: t
|
|
|
|
})
|
2019-01-10 15:39:51 +01:00
|
|
|
|
|
|
|
return sendVideoAnnounce(video.VideoChannel.Actor, videoChannelShare, video, t)
|
2017-11-20 10:24:29 +01:00
|
|
|
}
|
|
|
|
|
2019-08-15 11:53:26 +02:00
|
|
|
async function undoShareByVideoChannel (video: MVideo, oldVideoChannel: MChannelActorLight, t: Transaction) {
|
2018-05-11 15:10:13 +02:00
|
|
|
// Load old share
|
|
|
|
const oldShare = await VideoShareModel.load(oldVideoChannel.actorId, video.id, t)
|
|
|
|
if (!oldShare) return new Error('Cannot find old video channel share ' + oldVideoChannel.actorId + ' for video ' + video.id)
|
|
|
|
|
|
|
|
await sendUndoAnnounce(oldVideoChannel.Actor, oldShare, video, t)
|
|
|
|
await oldShare.destroy({ transaction: t })
|
2017-11-20 10:24:29 +01:00
|
|
|
}
|