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

42 lines
1.4 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 { VideoModel } from '../../models/video/video'
import { VideoShareModel } from '../../models/video/video-share'
2017-12-14 16:38:41 +00:00
import { sendVideoAnnounceToFollowers } from './send'
import { getAnnounceActivityPubUrl } from './url'
2017-12-15 16:34:38 +00:00
async function shareVideoByServerAndChannel (video: VideoModel, 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
2017-12-14 16:38:41 +00:00
const serverActor = await getServerActor()
const serverShareUrl = getAnnounceActivityPubUrl(video.url, serverActor)
const serverSharePromise = VideoShareModel.create({
2017-12-14 16:38:41 +00:00
actorId: serverActor.id,
videoId: video.id,
url: serverShareUrl
}, { transaction: t })
const videoChannelShareUrl = getAnnounceActivityPubUrl(video.url, video.VideoChannel.Actor)
const videoChannelSharePromise = VideoShareModel.create({
2017-12-15 16:34:38 +00:00
actorId: video.VideoChannel.actorId,
videoId: video.id,
url: videoChannelShareUrl
2017-12-15 16:34:38 +00:00
}, { transaction: t })
const [ serverShare, videoChannelShare ] = await Promise.all([
serverSharePromise,
videoChannelSharePromise
2017-12-15 16:34:38 +00:00
])
return Promise.all([
sendVideoAnnounceToFollowers(serverActor, videoChannelShare, video, t),
sendVideoAnnounceToFollowers(serverActor, serverShare, video, t)
])
}
export {
2017-12-15 16:34:38 +00:00
shareVideoByServerAndChannel
}