2017-11-20 10:24:29 +01:00
|
|
|
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'
|
2018-01-26 15:49:57 +01:00
|
|
|
import { getAnnounceActivityPubUrl } from './url'
|
2017-11-20 10:24:29 +01:00
|
|
|
|
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()
|
2017-11-20 10:24:29 +01:00
|
|
|
|
2018-01-26 15:49:57 +01:00
|
|
|
const serverShareUrl = getAnnounceActivityPubUrl(video.url, serverActor)
|
|
|
|
const serverSharePromise = VideoShareModel.create({
|
2017-12-14 17:38:41 +01:00
|
|
|
actorId: serverActor.id,
|
2018-01-26 15:49:57 +01:00
|
|
|
videoId: video.id,
|
|
|
|
url: serverShareUrl
|
2017-11-20 10:24:29 +01:00
|
|
|
}, { transaction: t })
|
|
|
|
|
2018-01-26 15:49:57 +01:00
|
|
|
const videoChannelShareUrl = getAnnounceActivityPubUrl(video.url, video.VideoChannel.Actor)
|
|
|
|
const videoChannelSharePromise = VideoShareModel.create({
|
2017-12-15 17:34:38 +01:00
|
|
|
actorId: video.VideoChannel.actorId,
|
2018-01-26 15:49:57 +01:00
|
|
|
videoId: video.id,
|
|
|
|
url: videoChannelShareUrl
|
2017-12-15 17:34:38 +01:00
|
|
|
}, { transaction: t })
|
|
|
|
|
2018-01-26 15:49:57 +01:00
|
|
|
const [ serverShare, videoChannelShare ] = await Promise.all([
|
|
|
|
serverSharePromise,
|
|
|
|
videoChannelSharePromise
|
2017-12-15 17:34:38 +01:00
|
|
|
])
|
|
|
|
|
2018-01-26 15:49:57 +01:00
|
|
|
return Promise.all([
|
|
|
|
sendVideoAnnounceToFollowers(serverActor, videoChannelShare, video, t),
|
|
|
|
sendVideoAnnounceToFollowers(serverActor, serverShare, video, t)
|
|
|
|
])
|
2017-11-20 10:24:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
2017-12-15 17:34:38 +01:00
|
|
|
shareVideoByServerAndChannel
|
2017-11-20 10:24:29 +01:00
|
|
|
}
|