PeerTube/server/lib/activitypub/share.ts

57 lines
1.6 KiB
TypeScript
Raw Normal View History

import { Transaction } from 'sequelize'
2017-12-19 10:34:56 +01:00
import { VideoPrivacy } from '../../../shared/models/videos'
2017-12-28 11:16:08 +01:00
import { getServerActor } from '../../helpers/utils'
2017-12-12 17:53:50 +01:00
import { VideoModel } from '../../models/video/video'
import { VideoShareModel } from '../../models/video/video-share'
2017-12-14 17:38:41 +01:00
import { sendVideoAnnounceToFollowers } from './send'
import { getAnnounceActivityPubUrl } from './url'
2017-12-15 17:34:38 +01:00
async function shareVideoByServerAndChannel (video: VideoModel, t: Transaction) {
2017-12-19 14:22:38 +01:00
if (video.privacy === VideoPrivacy.PRIVATE) return undefined
2017-12-19 10:34:56 +01:00
2017-12-14 17:38:41 +01:00
const serverActor = await getServerActor()
const serverShareUrl = getAnnounceActivityPubUrl(video.url, serverActor)
const serverSharePromise = VideoShareModel.findOrCreate({
defaults: {
actorId: serverActor.id,
videoId: video.id,
url: serverShareUrl
},
where: {
url: serverShareUrl
},
transaction: t
}).then(([ serverShare, created ]) => {
if (created) return sendVideoAnnounceToFollowers(serverActor, serverShare, video, t)
return undefined
})
const videoChannelShareUrl = getAnnounceActivityPubUrl(video.url, video.VideoChannel.Actor)
const videoChannelSharePromise = VideoShareModel.findOrCreate({
defaults: {
actorId: video.VideoChannel.actorId,
videoId: video.id,
url: videoChannelShareUrl
},
where: {
url: videoChannelShareUrl
},
transaction: t
}).then(([ videoChannelShare, created ]) => {
if (created) return sendVideoAnnounceToFollowers(serverActor, videoChannelShare, video, t)
2017-12-15 17:34:38 +01:00
return undefined
})
2017-12-15 17:34:38 +01:00
return Promise.all([
serverSharePromise,
videoChannelSharePromise
])
}
export {
2017-12-15 17:34:38 +01:00
shareVideoByServerAndChannel
}