const { activity } = await buildAnnounceWithVideoAudience(share.Actor, share, res.locals.videoAll, undefined)
- return activityPubResponse(activityPubContextify(activity), res)
+ return activityPubResponse(activityPubContextify(activity, 'Announce'), res)
}
async function videoAnnouncesController (req: express.Request, res: express.Response) {
import { URL } from 'url'
import { MActor, MVideoAccountLight } from '../typings/models'
-function activityPubContextify <T> (data: T) {
- return Object.assign(data, {
+export type ContextType = 'All' | 'View' | 'Announce'
+
+function activityPubContextify <T> (data: T, type: ContextType = 'All') {
+ const base = {
+ RsaSignature2017: 'https://w3id.org/security#RsaSignature2017'
+ }
+
+ if (type === 'All') {
+ Object.assign(base, {
+ pt: 'https://joinpeertube.org/ns#',
+ sc: 'http://schema.org#',
+ Hashtag: 'as:Hashtag',
+ uuid: 'sc:identifier',
+ category: 'sc:category',
+ licence: 'sc:license',
+ subtitleLanguage: 'sc:subtitleLanguage',
+ sensitive: 'as:sensitive',
+ language: 'sc:inLanguage',
+ expires: 'sc:expires',
+ CacheFile: 'pt:CacheFile',
+ Infohash: 'pt:Infohash',
+ originallyPublishedAt: 'sc:datePublished',
+ views: {
+ '@type': 'sc:Number',
+ '@id': 'pt:views'
+ },
+ state: {
+ '@type': 'sc:Number',
+ '@id': 'pt:state'
+ },
+ size: {
+ '@type': 'sc:Number',
+ '@id': 'pt:size'
+ },
+ fps: {
+ '@type': 'sc:Number',
+ '@id': 'pt:fps'
+ },
+ startTimestamp: {
+ '@type': 'sc:Number',
+ '@id': 'pt:startTimestamp'
+ },
+ stopTimestamp: {
+ '@type': 'sc:Number',
+ '@id': 'pt:stopTimestamp'
+ },
+ position: {
+ '@type': 'sc:Number',
+ '@id': 'pt:position'
+ },
+ commentsEnabled: {
+ '@type': 'sc:Boolean',
+ '@id': 'pt:commentsEnabled'
+ },
+ downloadEnabled: {
+ '@type': 'sc:Boolean',
+ '@id': 'pt:downloadEnabled'
+ },
+ waitTranscoding: {
+ '@type': 'sc:Boolean',
+ '@id': 'pt:waitTranscoding'
+ },
+ support: {
+ '@type': 'sc:Text',
+ '@id': 'pt:support'
+ },
+ likes: {
+ '@id': 'as:likes',
+ '@type': '@id'
+ },
+ dislikes: {
+ '@id': 'as:dislikes',
+ '@type': '@id'
+ },
+ playlists: {
+ '@id': 'pt:playlists',
+ '@type': '@id'
+ },
+ shares: {
+ '@id': 'as:shares',
+ '@type': '@id'
+ },
+ comments: {
+ '@id': 'as:comments',
+ '@type': '@id'
+ }
+ })
+ }
+
+ return Object.assign({}, data, {
'@context': [
'https://www.w3.org/ns/activitystreams',
'https://w3id.org/security/v1',
- {
- RsaSignature2017: 'https://w3id.org/security#RsaSignature2017',
- pt: 'https://joinpeertube.org/ns#',
- sc: 'http://schema.org#',
- Hashtag: 'as:Hashtag',
- uuid: 'sc:identifier',
- category: 'sc:category',
- licence: 'sc:license',
- subtitleLanguage: 'sc:subtitleLanguage',
- sensitive: 'as:sensitive',
- language: 'sc:inLanguage',
- expires: 'sc:expires',
- CacheFile: 'pt:CacheFile',
- Infohash: 'pt:Infohash',
- originallyPublishedAt: 'sc:datePublished',
- views: {
- '@type': 'sc:Number',
- '@id': 'pt:views'
- },
- state: {
- '@type': 'sc:Number',
- '@id': 'pt:state'
- },
- size: {
- '@type': 'sc:Number',
- '@id': 'pt:size'
- },
- fps: {
- '@type': 'sc:Number',
- '@id': 'pt:fps'
- },
- startTimestamp: {
- '@type': 'sc:Number',
- '@id': 'pt:startTimestamp'
- },
- stopTimestamp: {
- '@type': 'sc:Number',
- '@id': 'pt:stopTimestamp'
- },
- position: {
- '@type': 'sc:Number',
- '@id': 'pt:position'
- },
- commentsEnabled: {
- '@type': 'sc:Boolean',
- '@id': 'pt:commentsEnabled'
- },
- downloadEnabled: {
- '@type': 'sc:Boolean',
- '@id': 'pt:downloadEnabled'
- },
- waitTranscoding: {
- '@type': 'sc:Boolean',
- '@id': 'pt:waitTranscoding'
- },
- support: {
- '@type': 'sc:Text',
- '@id': 'pt:support'
- }
- },
- {
- likes: {
- '@id': 'as:likes',
- '@type': '@id'
- },
- dislikes: {
- '@id': 'as:dislikes',
- '@type': '@id'
- },
- playlists: {
- '@id': 'pt:playlists',
- '@type': '@id'
- },
- shares: {
- '@id': 'as:shares',
- '@type': '@id'
- },
- comments: {
- '@id': 'as:comments',
- '@type': '@id'
- }
- }
+ base
]
})
}
}
-function buildSignedActivity (byActor: MActor, data: Object) {
- const activity = activityPubContextify(data)
+function buildSignedActivity (byActor: MActor, data: Object, contextType?: ContextType) {
+ const activity = activityPubContextify(data, contextType)
return signJsonLDObject(byActor, activity) as Promise<Activity>
}
logger.info('Creating job to send announce %s.', videoShare.url)
const followersException = [ byActor ]
- return broadcastToFollowers(activity, byActor, actorsInvolvedInVideo, t, followersException)
+ return broadcastToFollowers(activity, byActor, actorsInvolvedInVideo, t, followersException, 'Announce')
}
function buildAnnounceActivity (url: string, byActor: MActorLight, object: string, audience?: ActivityAudience): ActivityAnnounce {
return buildViewActivity(url, byActor, video, audience)
}
- return sendVideoRelatedActivity(activityBuilder, { byActor, video, transaction: t })
+ return sendVideoRelatedActivity(activityBuilder, { byActor, video, transaction: t, contextType: 'View' })
}
function buildViewActivity (url: string, byActor: MActorAudience, video: MVideoUrl, audience?: ActivityAudience): ActivityView {
import { getServerActor } from '../../../helpers/utils'
import { afterCommitIfTransaction } from '../../../helpers/database-utils'
import { MActorWithInboxes, MActor, MActorId, MActorLight, MVideo, MVideoAccountLight } from '../../../typings/models'
+import { ContextType } from '@server/helpers/activitypub'
async function sendVideoRelatedActivity (activityBuilder: (audience: ActivityAudience) => Activity, options: {
byActor: MActorLight
video: MVideoAccountLight
- transaction?: Transaction
+ transaction?: Transaction,
+ contextType?: ContextType
}) {
- const { byActor, video, transaction } = options
+ const { byActor, video, transaction, contextType } = options
const actorsInvolvedInVideo = await getActorsInvolvedInVideo(video, transaction)
const activity = activityBuilder(audience)
return afterCommitIfTransaction(transaction, () => {
- return unicastTo(activity, byActor, video.VideoChannel.Account.Actor.getSharedInbox())
+ return unicastTo(activity, byActor, video.VideoChannel.Account.Actor.getSharedInbox(), contextType)
})
}
const actorsException = [ byActor ]
- return broadcastToFollowers(activity, byActor, actorsInvolvedInVideo, transaction, actorsException)
+ return broadcastToFollowers(activity, byActor, actorsInvolvedInVideo, transaction, actorsException, contextType)
}
async function forwardVideoRelatedActivity (
byActor: MActorId,
toFollowersOf: MActorId[],
t: Transaction,
- actorsException: MActorWithInboxes[] = []
+ actorsException: MActorWithInboxes[] = [],
+ contextType?: ContextType
) {
const uris = await computeFollowerUris(toFollowersOf, actorsException, t)
- return afterCommitIfTransaction(t, () => broadcastTo(uris, data, byActor))
+ return afterCommitIfTransaction(t, () => broadcastTo(uris, data, byActor, contextType))
}
async function broadcastToActors (
byActor: MActorId,
toActors: MActor[],
t?: Transaction,
- actorsException: MActorWithInboxes[] = []
+ actorsException: MActorWithInboxes[] = [],
+ contextType?: ContextType
) {
const uris = await computeUris(toActors, actorsException)
- return afterCommitIfTransaction(t, () => broadcastTo(uris, data, byActor))
+ return afterCommitIfTransaction(t, () => broadcastTo(uris, data, byActor, contextType))
}
-function broadcastTo (uris: string[], data: any, byActor: MActorId) {
+function broadcastTo (uris: string[], data: any, byActor: MActorId, contextType?: ContextType) {
if (uris.length === 0) return undefined
logger.debug('Creating broadcast job.', { uris })
const payload = {
uris,
signatureActorId: byActor.id,
- body: data
+ body: data,
+ contextType
}
return JobQueue.Instance.createJob({ type: 'activitypub-http-broadcast', payload })
}
-function unicastTo (data: any, byActor: MActorId, toActorUrl: string) {
+function unicastTo (data: any, byActor: MActorId, toActorUrl: string, contextType?: ContextType) {
logger.debug('Creating unicast job.', { uri: toActorUrl })
const payload = {
uri: toActorUrl,
signatureActorId: byActor.id,
- body: data
+ body: data,
+ contextType
}
JobQueue.Instance.createJob({ type: 'activitypub-http-unicast', payload })
import { buildGlobalHeaders, buildSignedRequestOptions, computeBody } from './utils/activitypub-http-utils'
import { BROADCAST_CONCURRENCY, JOB_REQUEST_TIMEOUT } from '../../../initializers/constants'
import { ActorFollowScoreCache } from '../../files-cache'
+import { ContextType } from '@server/helpers/activitypub'
export type ActivitypubHttpBroadcastPayload = {
uris: string[]
signatureActorId?: number
body: any
+ contextType?: ContextType
}
async function processActivityPubHttpBroadcast (job: Bull.Job) {
import { buildGlobalHeaders, buildSignedRequestOptions, computeBody } from './utils/activitypub-http-utils'
import { JOB_REQUEST_TIMEOUT } from '../../../initializers/constants'
import { ActorFollowScoreCache } from '../../files-cache'
+import { ContextType } from '@server/helpers/activitypub'
export type ActivitypubHttpUnicastPayload = {
uri: string
signatureActorId?: number
body: any
+ contextType?: ContextType
}
async function processActivityPubHttpUnicast (job: Bull.Job) {
-import { buildSignedActivity } from '../../../../helpers/activitypub'
+import { buildSignedActivity, ContextType } from '../../../../helpers/activitypub'
import { getServerActor } from '../../../../helpers/utils'
import { ActorModel } from '../../../../models/activitypub/actor'
import { sha256 } from '../../../../helpers/core-utils'
import { HTTP_SIGNATURE } from '../../../../initializers/constants'
import { MActor } from '../../../../typings/models'
-type Payload = { body: any, signatureActorId?: number }
+type Payload = { body: any, contextType?: ContextType, signatureActorId?: number }
async function computeBody (payload: Payload) {
let body = payload.body
if (payload.signatureActorId) {
const actorSignature = await ActorModel.load(payload.signatureActorId)
if (!actorSignature) throw new Error('Unknown signature actor id.')
- body = await buildSignedActivity(actorSignature, payload.body)
+ body = await buildSignedActivity(actorSignature, payload.body, payload.contextType)
}
return body