1
0
Fork 0
peertube/server/lib/activitypub/share.ts

119 lines
3.9 KiB
TypeScript
Raw Normal View History

import { Transaction } from 'sequelize'
2017-12-19 09:34:56 +00:00
import { VideoPrivacy } from '../../../shared/models/videos'
2017-12-28 10:16:08 +00:00
import { getServerActor } from '../../helpers/utils'
2017-12-12 16:53:50 +00:00
import { VideoShareModel } from '../../models/video/video-share'
2018-05-11 13:10:13 +00:00
import { sendUndoAnnounce, sendVideoAnnounce } from './send'
2018-11-14 14:01:28 +00:00
import { getVideoAnnounceActivityPubUrl } from './url'
2018-08-22 14:15:35 +00:00
import * as Bluebird from 'bluebird'
import { doRequest } from '../../helpers/requests'
import { getOrCreateActorAndServerAndModel } from './actor'
import { logger } from '../../helpers/logger'
import { CRAWL_REQUEST_CONCURRENCY } from '../../initializers/constants'
import { checkUrlsSameHost, getAPId } from '../../helpers/activitypub'
2019-08-15 09:53:26 +00:00
import { MChannelActor, MChannelActorLight, MVideo, MVideoAccountLight, MVideoId } from '../../typings/models/video'
2019-08-15 09:53:26 +00:00
async function shareVideoByServerAndChannel (video: MVideoAccountLight, t: Transaction) {
2017-12-19 13:22:38 +00:00
if (video.privacy === VideoPrivacy.PRIVATE) return undefined
2017-12-19 09:34:56 +00:00
2018-05-11 13:10:13 +00:00
return Promise.all([
shareByServer(video, t),
shareByVideoChannel(video, t)
])
}
2019-08-15 09:53:26 +00:00
async function changeVideoChannelShare (
video: MVideoAccountLight,
oldVideoChannel: MChannelActorLight,
t: Transaction
) {
2018-09-04 08:22:10 +00:00
logger.info('Updating video channel of video %s: %s -> %s.', video.uuid, oldVideoChannel.name, video.VideoChannel.name)
2018-05-11 13:10:13 +00:00
await undoShareByVideoChannel(video, oldVideoChannel, t)
await shareByVideoChannel(video, t)
}
2019-08-15 09:53:26 +00:00
async function addVideoShares (shareUrls: string[], video: MVideoId) {
2018-08-22 14:15:35 +00:00
await Bluebird.map(shareUrls, async shareUrl => {
try {
// Fetch url
const { body } = await doRequest({
uri: shareUrl,
json: true,
activityPub: true
})
2018-11-14 14:01:28 +00:00
if (!body || !body.actor) throw new Error('Body or body actor is invalid')
const actorUrl = getAPId(body.actor)
2018-11-14 14:01:28 +00: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 14:15:35 +00:00
const actor = await getOrCreateActorAndServerAndModel(actorUrl)
const entry = {
actorId: actor.id,
2019-08-15 09:53:26 +00:00
videoId: video.id,
2018-08-22 14:15:35 +00:00
url: shareUrl
}
2019-03-19 15:23:02 +00:00
await VideoShareModel.upsert(entry)
2018-08-22 14:15:35 +00:00
} catch (err) {
logger.warn('Cannot add share %s.', shareUrl, { err })
}
}, { concurrency: CRAWL_REQUEST_CONCURRENCY })
}
2018-05-11 13:10:13 +00:00
export {
changeVideoChannelShare,
2018-08-22 14:15:35 +00:00
addVideoShares,
2018-05-11 13:10:13 +00:00
shareVideoByServerAndChannel
}
// ---------------------------------------------------------------------------
2019-08-15 09:53:26 +00:00
async function shareByServer (video: MVideo, t: Transaction) {
2017-12-14 16:38:41 +00:00
const serverActor = await getServerActor()
2018-11-14 14:01:28 +00:00
const serverShareUrl = getVideoAnnounceActivityPubUrl(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 13:10:13 +00:00
}
2019-08-15 09:53:26 +00:00
async function shareByVideoChannel (video: MVideoAccountLight, t: Transaction) {
2018-11-14 14:01:28 +00:00
const videoChannelShareUrl = getVideoAnnounceActivityPubUrl(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 09:53:26 +00:00
async function undoShareByVideoChannel (video: MVideo, oldVideoChannel: MChannelActorLight, t: Transaction) {
2018-05-11 13:10:13 +00: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 })
}