PeerTube/server/lib/activitypub/share.ts

122 lines
3.9 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import { map } from 'bluebird'
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'
import { CRAWL_REQUEST_CONCURRENCY } from '../../initializers/constants'
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-06-03 16:02:29 +02:00
import { getOrCreateAPActor } from './actors'
import { sendUndoAnnounce, sendVideoAnnounce } from './send'
import { getLocalVideoAnnounceActivityPubUrl } from './url'
const lTags = loggerTagsFactory('share')
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
) {
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) {
2021-08-27 14:32:44 +02:00
await map(shareUrls, async shareUrl => {
2018-08-22 16:15:35 +02:00
try {
2021-06-03 14:30:09 +02:00
await addVideoShare(shareUrl, video)
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
}
// ---------------------------------------------------------------------------
2021-06-03 14:30:09 +02: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 16:02:29 +02:00
const actor = await getOrCreateAPActor(actorUrl)
2021-06-03 14:30:09 +02:00
const entry = {
actorId: actor.id,
videoId: video.id,
url: shareUrl
}
await VideoShareModel.upsert(entry)
}
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()
2020-11-20 11:21:08 +01:00
const serverShareUrl = getLocalVideoAnnounceActivityPubUrl(serverActor, video)
const [ serverShare ] = await VideoShareModel.findOrCreate({
defaults: {
actorId: serverActor.id,
videoId: video.id,
url: serverShareUrl
},
where: {
url: serverShareUrl
},
transaction: t
})
return sendVideoAnnounce(serverActor, serverShare, video, t)
2018-05-11 15:10:13 +02: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)
const [ videoChannelShare ] = await VideoShareModel.findOrCreate({
defaults: {
actorId: video.VideoChannel.actorId,
videoId: video.id,
url: videoChannelShareUrl
},
where: {
url: videoChannelShareUrl
},
transaction: t
})
return sendVideoAnnounce(video.VideoChannel.Actor, videoChannelShare, video, t)
}
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 })
}