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