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-12 11:53:50 -05:00
|
|
|
import { VideoModel } from '../../../models/video/video'
|
|
|
|
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'
|
2019-02-26 04:55:40 -05:00
|
|
|
import { VideoPlaylistPrivacy } from '../../../../shared/models/videos/playlist/video-playlist-privacy.model'
|
|
|
|
import { getServerActor } from '../../../helpers/utils'
|
2019-08-15 05:53:26 -04:00
|
|
|
import {
|
2019-08-21 08:31:57 -04:00
|
|
|
MAccountDefault,
|
2019-08-15 05:53:26 -04:00
|
|
|
MActor,
|
|
|
|
MActorLight,
|
2019-08-21 08:31:57 -04:00
|
|
|
MChannelDefault,
|
2019-08-15 05:53:26 -04:00
|
|
|
MVideoAP,
|
|
|
|
MVideoAPWithoutCaption,
|
|
|
|
MVideoPlaylistFull,
|
|
|
|
MVideoRedundancyVideo
|
|
|
|
} from '../../../typings/models'
|
|
|
|
|
|
|
|
async function sendUpdateVideo (videoArg: MVideoAPWithoutCaption, t: Transaction, overrodeByActor?: MActor) {
|
|
|
|
const video = videoArg as MVideoAP
|
2017-11-20 03:43:39 -05:00
|
|
|
|
2019-12-12 09:47:47 -05:00
|
|
|
if (!video.hasPrivacyForFederation()) return undefined
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2018-07-30 11:02:40 -04:00
|
|
|
logger.info('Creating job to update video %s.', video.url)
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const byActor = 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) {
|
2020-01-08 09:11:38 -05:00
|
|
|
video.VideoCaptions = await video.$get('VideoCaptions', { transaction: t })
|
2019-07-29 05:59:29 -04:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2019-08-21 08:31:57 -04:00
|
|
|
async function sendUpdateActor (accountOrChannel: MChannelDefault | MAccountDefault, t: Transaction) {
|
2018-02-15 08:46:26 -05:00
|
|
|
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())
|
2019-10-21 08:50:55 -04:00
|
|
|
const accountOrChannelObject = (accountOrChannel as any).toActivityPubObject() // FIXME: typescript bug?
|
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
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
let actorsInvolved: MActor[]
|
2018-02-15 08:46:26 -05:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
async function sendUpdateCacheFile (byActor: MActorLight, redundancyModel: MVideoRedundancyVideo) {
|
2018-09-11 10:27:07 -04:00
|
|
|
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-08-15 05:53:26 -04:00
|
|
|
async function sendUpdateVideoPlaylist (videoPlaylist: MVideoPlaylistFull, t: Transaction) {
|
2019-02-26 04:55:40 -05:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
function buildUpdateActivity (url: string, byActor: MActorLight, 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,
|
2019-08-15 05:53:26 -04:00
|
|
|
object: audiencify(object, audience)
|
2018-06-12 14:04:58 -04:00
|
|
|
},
|
|
|
|
audience
|
|
|
|
)
|
2017-11-20 03:43:39 -05:00
|
|
|
}
|