2017-11-20 09:43:39 +01:00
|
|
|
import { Transaction } from 'sequelize'
|
2022-03-18 11:17:35 +01:00
|
|
|
import { ActivityAnnounce, ActivityAudience } from '@shared/models'
|
2018-07-30 17:02:40 +02:00
|
|
|
import { logger } from '../../../helpers/logger'
|
2020-06-18 10:45:25 +02:00
|
|
|
import { MActorLight, MVideo } from '../../../types/models'
|
|
|
|
import { MVideoShare } from '../../../types/models/video'
|
2022-03-18 11:17:35 +01:00
|
|
|
import { audiencify, getAudience } from '../audience'
|
|
|
|
import { getActorsInvolvedInVideo, getAudienceFromFollowersOf } from './shared'
|
|
|
|
import { broadcastToFollowers } from './shared/send-utils'
|
2019-08-09 08:17:16 +02:00
|
|
|
|
|
|
|
async function buildAnnounceWithVideoAudience (
|
2019-08-15 11:53:26 +02:00
|
|
|
byActor: MActorLight,
|
|
|
|
videoShare: MVideoShare,
|
|
|
|
video: MVideo,
|
2019-08-09 08:17:16 +02:00
|
|
|
t: Transaction
|
|
|
|
) {
|
2018-01-26 12:02:18 +01:00
|
|
|
const announcedObject = video.url
|
2017-11-20 09:43:39 +01:00
|
|
|
|
2018-09-11 16:27:07 +02:00
|
|
|
const actorsInvolvedInVideo = await getActorsInvolvedInVideo(video, t)
|
2018-09-14 16:51:35 +02:00
|
|
|
const audience = getAudienceFromFollowersOf(actorsInvolvedInVideo)
|
2018-09-11 16:27:07 +02:00
|
|
|
|
|
|
|
const activity = buildAnnounceActivity(videoShare.url, byActor, announcedObject, audience)
|
|
|
|
|
|
|
|
return { activity, actorsInvolvedInVideo }
|
2017-11-27 14:44:51 +01:00
|
|
|
}
|
|
|
|
|
2022-03-23 16:14:33 +01:00
|
|
|
async function sendVideoAnnounce (byActor: MActorLight, videoShare: MVideoShare, video: MVideo, transaction: Transaction) {
|
|
|
|
const { activity, actorsInvolvedInVideo } = await buildAnnounceWithVideoAudience(byActor, videoShare, video, transaction)
|
2017-11-27 14:44:51 +01:00
|
|
|
|
2018-07-30 17:02:40 +02:00
|
|
|
logger.info('Creating job to send announce %s.', videoShare.url)
|
|
|
|
|
2022-03-23 16:14:33 +01:00
|
|
|
return broadcastToFollowers({
|
|
|
|
data: activity,
|
|
|
|
byActor,
|
|
|
|
toFollowersOf: actorsInvolvedInVideo,
|
|
|
|
transaction,
|
|
|
|
actorsException: [ byActor ],
|
|
|
|
contextType: 'Announce'
|
|
|
|
})
|
2017-11-20 09:43:39 +01:00
|
|
|
}
|
|
|
|
|
2019-08-15 11:53:26 +02:00
|
|
|
function buildAnnounceActivity (url: string, byActor: MActorLight, object: string, audience?: ActivityAudience): ActivityAnnounce {
|
2018-06-12 20:04:58 +02:00
|
|
|
if (!audience) audience = getAudience(byActor)
|
2017-11-27 14:44:51 +01:00
|
|
|
|
2018-09-11 16:27:07 +02:00
|
|
|
return audiencify({
|
|
|
|
type: 'Announce' as 'Announce',
|
2017-11-20 09:43:39 +01:00
|
|
|
id: url,
|
2017-12-14 17:38:41 +01:00
|
|
|
actor: byActor.url,
|
2017-11-20 09:43:39 +01:00
|
|
|
object
|
2018-09-11 16:27:07 +02:00
|
|
|
}, audience)
|
2017-11-20 09:43:39 +01:00
|
|
|
}
|
2017-11-21 18:23:10 +01:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2018-03-27 13:33:56 +02:00
|
|
|
sendVideoAnnounce,
|
2018-09-11 16:27:07 +02:00
|
|
|
buildAnnounceActivity,
|
|
|
|
buildAnnounceWithVideoAudience
|
2017-11-21 18:23:10 +01:00
|
|
|
}
|