PeerTube/server/helpers/activitypub.ts

74 lines
2.0 KiB
TypeScript
Raw Normal View History

2017-11-17 11:35:10 +01:00
import { Activity } from '../../shared/models/activitypub/activity'
2017-11-09 17:51:58 +01:00
import { ResultList } from '../../shared/models/result-list.model'
2017-11-16 15:22:39 +01:00
import { AccountInstance } from '../models/account/account-interface'
2017-11-17 11:35:10 +01:00
import { signObject } from './peertube-crypto'
2017-11-21 18:23:10 +01:00
import { ACTIVITY_PUB } from '../initializers/constants'
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',
{
'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-11-15 15:12:23 +01:00
'size': 'http://schema.org/Number',
'VideoChannel': 'https://peertu.be/ns/VideoChannel'
2017-11-09 17:51:58 +01:00
}
]
})
}
function activityPubCollectionPagination (url: string, page: number, result: ResultList<any>) {
2017-11-21 18:23:10 +01:00
let next: string
let prev: string
// There are more results
if (result.total > ((page + 1) * ACTIVITY_PUB.COLLECTION_ITEMS_PER_PAGE)) {
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
})
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-11-17 11:35:10 +01:00
function buildSignedActivity (byAccount: AccountInstance, data: Object) {
const activity = activityPubContextify(data)
return signObject(byAccount, activity) as Promise<Activity>
}
2017-11-09 17:51:58 +01:00
// ---------------------------------------------------------------------------
export {
activityPubContextify,
2017-11-10 14:34:45 +01:00
activityPubCollectionPagination,
buildSignedActivity
2017-11-09 17:51:58 +01:00
}