X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Factivitypub.ts;h=4bf6e387dde27c8b93bc76c1eec48877175ff68f;hb=ae28cdf327d782e629379eee1999096ca2a5d74b;hp=1934fa0f024b600e491948bf428736315532ca84;hpb=6be84cbcea99518e8eca58c76259effd0dd992fd;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/activitypub.ts b/server/helpers/activitypub.ts index 1934fa0f0..4bf6e387d 100644 --- a/server/helpers/activitypub.ts +++ b/server/helpers/activitypub.ts @@ -1,26 +1,38 @@ +import * as Bluebird from 'bluebird' +import * as validator from 'validator' import { ResultList } from '../../shared/models' import { Activity, ActivityPubActor } from '../../shared/models/activitypub' import { ACTIVITY_PUB } from '../initializers' import { ActorModel } from '../models/activitypub/actor' -import { signObject } from './peertube-crypto' +import { signJsonLDObject } from './peertube-crypto' +import { pageToStartAndCount } from './core-utils' +import { parse } from 'url' function activityPubContextify (data: T) { - return Object.assign(data,{ + return Object.assign(data, { '@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', - 'sensitive': 'as:sensitive', - 'language': 'http://schema.org/inLanguage', - 'views': 'http://schema.org/Number', - 'size': 'http://schema.org/Number', - 'commentsEnabled': 'http://schema.org/Boolean', - 'support': 'http://schema.org/Text' + 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', + views: 'sc:Number', + state: 'sc:Number', + size: 'sc:Number', + fps: 'sc:Number', + commentsEnabled: 'sc:Boolean', + waitTranscoding: 'sc:Boolean', + expires: 'sc:expires', + support: 'sc:Text', + CacheFile: 'pt:CacheFile' }, { likes: { @@ -44,18 +56,25 @@ function activityPubContextify (data: T) { }) } -function activityPubCollection (url: string, results: any[]) { - return { - id: url, - type: 'OrderedCollection', - totalItems: results.length, - orderedItems: results +type ActivityPubCollectionPaginationHandler = (start: number, count: number) => Bluebird> | Promise> +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' + } } -} -function activityPubCollectionPagination (url: string, page: any, result: ResultList) { - let next: string - let prev: string + 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 // Assert page is a number page = parseInt(page, 10) @@ -69,33 +88,22 @@ function activityPubCollectionPagination (url: string, page: any, result: Result prev = url + '?page=' + (page - 1) } - const orderedCollectionPagination = { + return { id: url + '?page=' + page, type: 'OrderedCollectionPage', prev, next, partOf: url, - orderedItems: result.data + orderedItems: result.data, + totalItems: result.total } - if (page === 1) { - return activityPubContextify({ - id: url, - type: 'OrderedCollection', - totalItems: result.total, - first: orderedCollectionPagination - }) - } else { - orderedCollectionPagination['totalItems'] = result.total - } - - return orderedCollectionPagination } function buildSignedActivity (byActor: ActorModel, data: Object) { const activity = activityPubContextify(data) - return signObject(byActor, activity) as Promise + return signJsonLDObject(byActor, activity) as Promise } function getActorUrl (activityActor: string | ActivityPubActor) { @@ -104,12 +112,19 @@ function getActorUrl (activityActor: string | ActivityPubActor) { return activityActor.id } +function checkUrlsSameHost (url1: string, url2: string) { + const idHost = parse(url1).host + const actorHost = parse(url2).host + + return idHost && actorHost && idHost.toLowerCase() === actorHost.toLowerCase() +} + // --------------------------------------------------------------------------- export { + checkUrlsSameHost, getActorUrl, activityPubContextify, activityPubCollectionPagination, - activityPubCollection, buildSignedActivity }