2017-11-20 04:24:29 -05:00
|
|
|
import { Transaction } from 'sequelize'
|
2017-12-19 04:34:56 -05:00
|
|
|
import { VideoPrivacy } from '../../../shared/models/videos'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { getServerActor } from '../../helpers/utils'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { VideoModel } from '../../models/video/video'
|
|
|
|
import { VideoShareModel } from '../../models/video/video-share'
|
2017-12-14 11:38:41 -05:00
|
|
|
import { sendVideoAnnounceToFollowers } from './send'
|
2018-01-26 09:49:57 -05:00
|
|
|
import { getAnnounceActivityPubUrl } from './url'
|
2017-11-20 04:24:29 -05:00
|
|
|
|
2017-12-15 11:34:38 -05:00
|
|
|
async function shareVideoByServerAndChannel (video: VideoModel, t: Transaction) {
|
2017-12-19 08:22:38 -05:00
|
|
|
if (video.privacy === VideoPrivacy.PRIVATE) return undefined
|
2017-12-19 04:34:56 -05:00
|
|
|
|
2017-12-14 11:38:41 -05:00
|
|
|
const serverActor = await getServerActor()
|
2017-11-20 04:24:29 -05:00
|
|
|
|
2018-01-26 09:49:57 -05:00
|
|
|
const serverShareUrl = getAnnounceActivityPubUrl(video.url, serverActor)
|
|
|
|
const serverSharePromise = VideoShareModel.create({
|
2017-12-14 11:38:41 -05:00
|
|
|
actorId: serverActor.id,
|
2018-01-26 09:49:57 -05:00
|
|
|
videoId: video.id,
|
|
|
|
url: serverShareUrl
|
2017-11-20 04:24:29 -05:00
|
|
|
}, { transaction: t })
|
|
|
|
|
2018-01-26 09:49:57 -05:00
|
|
|
const videoChannelShareUrl = getAnnounceActivityPubUrl(video.url, video.VideoChannel.Actor)
|
|
|
|
const videoChannelSharePromise = VideoShareModel.create({
|
2017-12-15 11:34:38 -05:00
|
|
|
actorId: video.VideoChannel.actorId,
|
2018-01-26 09:49:57 -05:00
|
|
|
videoId: video.id,
|
|
|
|
url: videoChannelShareUrl
|
2017-12-15 11:34:38 -05:00
|
|
|
}, { transaction: t })
|
|
|
|
|
2018-01-26 09:49:57 -05:00
|
|
|
const [ serverShare, videoChannelShare ] = await Promise.all([
|
|
|
|
serverSharePromise,
|
|
|
|
videoChannelSharePromise
|
2017-12-15 11:34:38 -05:00
|
|
|
])
|
|
|
|
|
2018-01-26 09:49:57 -05:00
|
|
|
return Promise.all([
|
|
|
|
sendVideoAnnounceToFollowers(serverActor, videoChannelShare, video, t),
|
|
|
|
sendVideoAnnounceToFollowers(serverActor, serverShare, video, t)
|
|
|
|
])
|
2017-11-20 04:24:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
2017-12-15 11:34:38 -05:00
|
|
|
shareVideoByServerAndChannel
|
2017-11-20 04:24:29 -05:00
|
|
|
}
|