PeerTube/server/helpers/activitypub.ts

118 lines
3.3 KiB
TypeScript
Raw Normal View History

import * as Bluebird from 'bluebird'
import * as validator from 'validator'
2017-12-12 17:53:50 +01:00
import { ResultList } from '../../shared/models'
import { Activity, ActivityPubActor } from '../../shared/models/activitypub'
2017-12-12 17:53:50 +01:00
import { ACTIVITY_PUB } from '../initializers'
2017-12-14 17:38:41 +01:00
import { ActorModel } from '../models/activitypub/actor'
2017-11-17 11:35:10 +01:00
import { signObject } from './peertube-crypto'
import { pageToStartAndCount } from './core-utils'
2017-11-10 17:27:49 +01:00
function activityPubContextify <T> (data: T) {
return Object.assign(data, {
2017-11-09 17:51:58 +01:00
'@context': [
'https://www.w3.org/ns/activitystreams',
'https://w3id.org/security/v1',
{
RsaSignature2017: 'https://w3id.org/security#RsaSignature2017',
Hashtag: 'as:Hashtag',
uuid: 'http://schema.org/identifier',
category: 'http://schema.org/category',
licence: 'http://schema.org/license',
2018-07-12 19:02:00 +02:00
subtitleLanguage: 'http://schema.org/subtitleLanguage',
sensitive: 'as:sensitive',
language: 'http://schema.org/inLanguage',
views: 'http://schema.org/Number',
stats: 'http://schema.org/Number',
size: 'http://schema.org/Number',
2018-08-03 17:00:19 +02:00
fps: 'http://schema.org/Number',
commentsEnabled: 'http://schema.org/Boolean',
waitTranscoding: 'http://schema.org/Boolean',
support: 'http://schema.org/Text'
2018-01-29 11:05:52 +01:00
},
{
likes: {
'@id': 'as:likes',
'@type': '@id'
},
dislikes: {
'@id': 'as:dislikes',
'@type': '@id'
},
shares: {
'@id': 'as:shares',
'@type': '@id'
},
comments: {
'@id': 'as:comments',
'@type': '@id'
}
2017-11-09 17:51:58 +01:00
}
]
})
}
type ActivityPubCollectionPaginationHandler = (start: number, count: number) => Bluebird<ResultList<any>> | Promise<ResultList<any>>
async function activityPubCollectionPagination (url: string, handler: ActivityPubCollectionPaginationHandler, page?: any) {
if (!page || !validator.isInt(page)) {
// We just display the first page URL, we only need the total items
const result = await handler(0, 1)
return {
id: url,
type: 'OrderedCollection',
totalItems: result.total,
first: url + '?page=1'
}
2017-11-23 16:55:13 +01:00
}
const { start, count } = pageToStartAndCount(page, ACTIVITY_PUB.COLLECTION_ITEMS_PER_PAGE)
const result = await handler(start, count)
let next: string | undefined
let prev: string | undefined
2017-11-21 18:23:10 +01:00
// Assert page is a number
page = parseInt(page, 10)
2017-11-21 18:23:10 +01:00
// There are more results
if (result.total > page * ACTIVITY_PUB.COLLECTION_ITEMS_PER_PAGE) {
2017-11-21 18:23:10 +01:00
next = url + '?page=' + (page + 1)
}
if (page > 1) {
prev = url + '?page=' + (page - 1)
}
return {
2017-11-21 18:23:10 +01:00
id: url + '?page=' + page,
type: 'OrderedCollectionPage',
prev,
next,
partOf: url,
orderedItems: result.data,
totalItems: result.total
2017-11-09 17:51:58 +01:00
}
}
2017-12-14 17:38:41 +01:00
function buildSignedActivity (byActor: ActorModel, data: Object) {
2017-11-17 11:35:10 +01:00
const activity = activityPubContextify(data)
2017-12-14 17:38:41 +01:00
return signObject(byActor, activity) as Promise<Activity>
2017-11-17 11:35:10 +01:00
}
function getActorUrl (activityActor: string | ActivityPubActor) {
if (typeof activityActor === 'string') return activityActor
return activityActor.id
}
2017-11-09 17:51:58 +01:00
// ---------------------------------------------------------------------------
export {
getActorUrl,
2017-11-09 17:51:58 +01:00
activityPubContextify,
2017-11-10 14:34:45 +01:00
activityPubCollectionPagination,
buildSignedActivity
2017-11-09 17:51:58 +01:00
}