2017-11-20 03:43:39 -05:00
|
|
|
import { Transaction } from 'sequelize'
|
2017-12-14 11:38:41 -05:00
|
|
|
import { ActivityAudience, ActivityUpdate } from '../../../../shared/models/activitypub'
|
|
|
|
import { VideoPrivacy } from '../../../../shared/models/videos'
|
2018-02-15 08:46:26 -05:00
|
|
|
import { AccountModel } from '../../../models/account/account'
|
2017-12-14 11:38:41 -05:00
|
|
|
import { ActorModel } from '../../../models/activitypub/actor'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { VideoModel } from '../../../models/video/video'
|
2018-02-15 08:46:26 -05:00
|
|
|
import { VideoChannelModel } from '../../../models/video/video-channel'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { VideoShareModel } from '../../../models/video/video-share'
|
2017-11-20 04:24:29 -05:00
|
|
|
import { getUpdateActivityPubUrl } from '../url'
|
2018-09-24 07:07:33 -04:00
|
|
|
import { broadcastToFollowers, sendVideoRelatedActivity } from './utils'
|
|
|
|
import { audiencify, getActorsInvolvedInVideo, getAudience } from '../audience'
|
2018-07-30 11:02:40 -04:00
|
|
|
import { logger } from '../../../helpers/logger'
|
2018-09-04 04:22:10 -04:00
|
|
|
import { VideoCaptionModel } from '../../../models/video/video-caption'
|
2018-09-11 10:27:07 -04:00
|
|
|
import { VideoRedundancyModel } from '../../../models/redundancy/video-redundancy'
|
2019-02-26 04:55:40 -05:00
|
|
|
import { VideoPlaylistModel } from '../../../models/video/video-playlist'
|
|
|
|
import { VideoPlaylistPrivacy } from '../../../../shared/models/videos/playlist/video-playlist-privacy.model'
|
|
|
|
import { getServerActor } from '../../../helpers/utils'
|
2017-11-20 03:43:39 -05:00
|
|
|
|
2018-09-04 04:22:10 -04:00
|
|
|
async function sendUpdateVideo (video: VideoModel, t: Transaction, overrodeByActor?: ActorModel) {
|
2019-02-26 04:55:40 -05:00
|
|
|
if (video.privacy === VideoPrivacy.PRIVATE) return undefined
|
|
|
|
|
2018-07-30 11:02:40 -04:00
|
|
|
logger.info('Creating job to update video %s.', video.url)
|
|
|
|
|
2018-09-04 04:22:10 -04:00
|
|
|
const byActor = overrodeByActor ? overrodeByActor : video.VideoChannel.Account.Actor
|
2017-11-20 03:43:39 -05:00
|
|
|
|
|
|
|
const url = getUpdateActivityPubUrl(video.url, video.updatedAt.toISOString())
|
2018-09-04 04:22:10 -04:00
|
|
|
|
|
|
|
// Needed to build the AP object
|
2019-07-29 05:59:29 -04:00
|
|
|
if (!video.VideoCaptions) {
|
|
|
|
video.VideoCaptions = await video.$get('VideoCaptions', { transaction: t }) as VideoCaptionModel[]
|
|
|
|
}
|
2018-09-04 04:22:10 -04:00
|
|
|
|
2017-11-20 03:43:39 -05:00
|
|
|
const videoObject = video.toActivityPubObject()
|
2018-06-12 14:04:58 -04:00
|
|
|
const audience = getAudience(byActor, video.privacy === VideoPrivacy.PUBLIC)
|
2017-12-14 11:38:41 -05:00
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
const updateActivity = buildUpdateActivity(url, byActor, videoObject, audience)
|
2017-11-20 03:43:39 -05:00
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
const actorsInvolved = await getActorsInvolvedInVideo(video, t)
|
|
|
|
if (overrodeByActor) actorsInvolved.push(overrodeByActor)
|
2017-11-20 03:43:39 -05:00
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
return broadcastToFollowers(updateActivity, byActor, actorsInvolved, t)
|
2017-11-20 03:43:39 -05:00
|
|
|
}
|
|
|
|
|
2018-02-15 08:46:26 -05:00
|
|
|
async function sendUpdateActor (accountOrChannel: AccountModel | VideoChannelModel, t: Transaction) {
|
|
|
|
const byActor = accountOrChannel.Actor
|
2018-01-03 10:38:50 -05:00
|
|
|
|
2018-07-30 11:02:40 -04:00
|
|
|
logger.info('Creating job to update actor %s.', byActor.url)
|
|
|
|
|
2018-01-03 10:38:50 -05:00
|
|
|
const url = getUpdateActivityPubUrl(byActor.url, byActor.updatedAt.toISOString())
|
2018-02-15 08:46:26 -05:00
|
|
|
const accountOrChannelObject = accountOrChannel.toActivityPubObject()
|
2018-06-12 14:04:58 -04:00
|
|
|
const audience = getAudience(byActor)
|
2018-09-11 10:27:07 -04:00
|
|
|
const updateActivity = buildUpdateActivity(url, byActor, accountOrChannelObject, audience)
|
2018-02-15 08:46:26 -05:00
|
|
|
|
|
|
|
let actorsInvolved: ActorModel[]
|
|
|
|
if (accountOrChannel instanceof AccountModel) {
|
|
|
|
// Actors that shared my videos are involved too
|
2019-03-05 04:58:44 -05:00
|
|
|
actorsInvolved = await VideoShareModel.loadActorsWhoSharedVideosOf(byActor.id, t)
|
2018-02-15 08:46:26 -05:00
|
|
|
} else {
|
|
|
|
// Actors that shared videos of my channel are involved too
|
|
|
|
actorsInvolved = await VideoShareModel.loadActorsByVideoChannel(accountOrChannel.id, t)
|
|
|
|
}
|
2018-01-03 10:38:50 -05:00
|
|
|
|
|
|
|
actorsInvolved.push(byActor)
|
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
return broadcastToFollowers(updateActivity, byActor, actorsInvolved, t)
|
|
|
|
}
|
|
|
|
|
|
|
|
async function sendUpdateCacheFile (byActor: ActorModel, redundancyModel: VideoRedundancyModel) {
|
|
|
|
logger.info('Creating job to update cache file %s.', redundancyModel.url)
|
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(redundancyModel.getVideo().id)
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2018-09-14 10:51:35 -04:00
|
|
|
const activityBuilder = (audience: ActivityAudience) => {
|
|
|
|
const redundancyObject = redundancyModel.toActivityPubObject()
|
|
|
|
const url = getUpdateActivityPubUrl(redundancyModel.url, redundancyModel.updatedAt.toISOString())
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2018-09-14 10:51:35 -04:00
|
|
|
return buildUpdateActivity(url, byActor, redundancyObject, audience)
|
|
|
|
}
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2018-09-14 10:51:35 -04:00
|
|
|
return sendVideoRelatedActivity(activityBuilder, { byActor, video })
|
2018-01-03 10:38:50 -05:00
|
|
|
}
|
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
async function sendUpdateVideoPlaylist (videoPlaylist: VideoPlaylistModel, t: Transaction) {
|
|
|
|
if (videoPlaylist.privacy === VideoPlaylistPrivacy.PRIVATE) return undefined
|
|
|
|
|
|
|
|
const byActor = videoPlaylist.OwnerAccount.Actor
|
|
|
|
|
|
|
|
logger.info('Creating job to update video playlist %s.', videoPlaylist.url)
|
|
|
|
|
|
|
|
const url = getUpdateActivityPubUrl(videoPlaylist.url, videoPlaylist.updatedAt.toISOString())
|
|
|
|
|
2019-03-05 04:58:44 -05:00
|
|
|
const object = await videoPlaylist.toActivityPubObject(null, t)
|
2019-02-26 04:55:40 -05:00
|
|
|
const audience = getAudience(byActor, videoPlaylist.privacy === VideoPlaylistPrivacy.PUBLIC)
|
|
|
|
|
|
|
|
const updateActivity = buildUpdateActivity(url, byActor, object, audience)
|
|
|
|
|
|
|
|
const serverActor = await getServerActor()
|
|
|
|
const toFollowersOf = [ byActor, serverActor ]
|
|
|
|
|
|
|
|
if (videoPlaylist.VideoChannel) toFollowersOf.push(videoPlaylist.VideoChannel.Actor)
|
|
|
|
|
|
|
|
return broadcastToFollowers(updateActivity, byActor, toFollowersOf, t)
|
|
|
|
}
|
|
|
|
|
2017-11-20 03:43:39 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2018-02-15 08:46:26 -05:00
|
|
|
sendUpdateActor,
|
2018-09-11 10:27:07 -04:00
|
|
|
sendUpdateVideo,
|
2019-02-26 04:55:40 -05:00
|
|
|
sendUpdateCacheFile,
|
|
|
|
sendUpdateVideoPlaylist
|
2017-11-20 03:43:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
function buildUpdateActivity (url: string, byActor: ActorModel, object: any, audience?: ActivityAudience): ActivityUpdate {
|
2018-06-12 14:04:58 -04:00
|
|
|
if (!audience) audience = getAudience(byActor)
|
2017-12-14 11:38:41 -05:00
|
|
|
|
2018-06-12 14:04:58 -04:00
|
|
|
return audiencify(
|
|
|
|
{
|
|
|
|
type: 'Update' as 'Update',
|
|
|
|
id: url,
|
|
|
|
actor: byActor.url,
|
|
|
|
object: audiencify(object, audience
|
|
|
|
)
|
|
|
|
},
|
|
|
|
audience
|
|
|
|
)
|
2017-11-20 03:43:39 -05:00
|
|
|
}
|