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