PeerTube/server/helpers/activitypub.ts

88 lines
2.2 KiB
TypeScript
Raw Normal View History

2017-12-12 17:53:50 +01:00
import { ResultList } from '../../shared/models'
import { Activity } from '../../shared/models/activitypub'
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'
2017-11-10 17:27:49 +01:00
function activityPubContextify <T> (data: T) {
2017-11-09 17:51:58 +01:00
return Object.assign(data,{
'@context': [
'https://www.w3.org/ns/activitystreams',
'https://w3id.org/security/v1',
{
2017-12-18 11:53:04 +01:00
'RsaSignature2017': 'https://w3id.org/security#RsaSignature2017',
2017-11-09 17:51:58 +01:00
'Hashtag': 'as:Hashtag',
'uuid': 'http://schema.org/identifier',
'category': 'http://schema.org/category',
'licence': 'http://schema.org/license',
'nsfw': 'as:sensitive',
'language': 'http://schema.org/inLanguage',
'views': 'http://schema.org/Number',
2017-12-18 11:53:04 +01:00
'size': 'http://schema.org/Number'
2017-11-09 17:51:58 +01:00
}
]
})
}
2017-11-23 16:55:13 +01:00
function activityPubCollection (results: any[]) {
return {
type: 'OrderedCollection',
totalItems: results.length,
orderedItems: results
}
}
function activityPubCollectionPagination (url: string, page: any, result: ResultList<any>) {
2017-11-21 18:23:10 +01:00
let next: string
let prev: string
// 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)
}
const orderedCollectionPagination = {
id: url + '?page=' + page,
type: 'OrderedCollectionPage',
prev,
next,
partOf: url,
orderedItems: result.data
}
2017-11-09 17:51:58 +01:00
2017-11-22 10:29:55 +01:00
if (page === 1) {
return activityPubContextify({
id: url,
type: 'OrderedCollection',
totalItems: result.total,
first: orderedCollectionPagination
})
} else {
orderedCollectionPagination['totalItems'] = result.total
2017-11-09 17:51:58 +01:00
}
2017-11-22 10:29:55 +01:00
return orderedCollectionPagination
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
}
2017-11-09 17:51:58 +01:00
// ---------------------------------------------------------------------------
export {
activityPubContextify,
2017-11-10 14:34:45 +01:00
activityPubCollectionPagination,
2017-11-23 16:55:13 +01:00
activityPubCollection,
buildSignedActivity
2017-11-09 17:51:58 +01:00
}