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'
|
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
|
|
|
|
2017-12-15 17:34:38 +01:00
|
|
|
const serverShare = VideoShareModel.create({
|
2017-12-14 17:38:41 +01:00
|
|
|
actorId: serverActor.id,
|
2017-11-20 10:24:29 +01:00
|
|
|
videoId: video.id
|
|
|
|
}, { transaction: t })
|
|
|
|
|
2017-12-15 17:34:38 +01:00
|
|
|
const videoChannelShare = VideoShareModel.create({
|
|
|
|
actorId: video.VideoChannel.actorId,
|
|
|
|
videoId: video.id
|
|
|
|
}, { transaction: t })
|
|
|
|
|
|
|
|
await Promise.all([
|
|
|
|
serverShare,
|
|
|
|
videoChannelShare
|
|
|
|
])
|
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
return sendVideoAnnounceToFollowers(serverActor, 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
|
|
|
}
|