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