]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/helpers/activitypub.ts
Basic video redundancy implementation
[github/Chocobozzz/PeerTube.git] / server / helpers / activitypub.ts
CommitLineData
8fffe21a
C
1import * as Bluebird from 'bluebird'
2import * as validator from 'validator'
3fd3ab2d 3import { ResultList } from '../../shared/models'
6be84cbc 4import { Activity, ActivityPubActor } from '../../shared/models/activitypub'
3fd3ab2d 5import { ACTIVITY_PUB } from '../initializers'
50d6de9c 6import { ActorModel } from '../models/activitypub/actor'
afffe988 7import { signObject } from './peertube-crypto'
8fffe21a 8import { pageToStartAndCount } from './core-utils'
571389d4
C
9
10function activityPubContextify <T> (data: T) {
2186386c 11 return Object.assign(data, {
e4f97bab
C
12 '@context': [
13 'https://www.w3.org/ns/activitystreams',
14 'https://w3id.org/security/v1',
15 {
2186386c 16 RsaSignature2017: 'https://w3id.org/security#RsaSignature2017',
c48e82b5
C
17 pt: 'https://joinpeertube.org/ns',
18 schema: 'http://schema.org#',
2186386c 19 Hashtag: 'as:Hashtag',
c48e82b5
C
20 uuid: 'schema:identifier',
21 category: 'schema:category',
22 licence: 'schema:license',
23 subtitleLanguage: 'schema:subtitleLanguage',
2186386c 24 sensitive: 'as:sensitive',
c48e82b5
C
25 language: 'schema:inLanguage',
26 views: 'schema:Number',
27 stats: 'schema:Number',
28 size: 'schema:Number',
29 fps: 'schema:Number',
30 commentsEnabled: 'schema:Boolean',
31 waitTranscoding: 'schema:Boolean',
32 expires: 'schema:expires',
33 support: 'schema:Text',
34 CacheFile: 'pt:CacheFile'
2fe86927
C
35 },
36 {
37 likes: {
38 '@id': 'as:likes',
39 '@type': '@id'
40 },
41 dislikes: {
42 '@id': 'as:dislikes',
43 '@type': '@id'
44 },
45 shares: {
46 '@id': 'as:shares',
47 '@type': '@id'
48 },
49 comments: {
50 '@id': 'as:comments',
51 '@type': '@id'
52 }
e4f97bab
C
53 }
54 ]
55 })
56}
57
8fffe21a
C
58type ActivityPubCollectionPaginationHandler = (start: number, count: number) => Bluebird<ResultList<any>> | Promise<ResultList<any>>
59async function activityPubCollectionPagination (url: string, handler: ActivityPubCollectionPaginationHandler, page?: any) {
60 if (!page || !validator.isInt(page)) {
61 // We just display the first page URL, we only need the total items
62 const result = await handler(0, 1)
63
64 return {
65 id: url,
66 type: 'OrderedCollection',
67 totalItems: result.total,
68 first: url + '?page=1'
69 }
16b90975 70 }
16b90975 71
8fffe21a
C
72 const { start, count } = pageToStartAndCount(page, ACTIVITY_PUB.COLLECTION_ITEMS_PER_PAGE)
73 const result = await handler(start, count)
74
c1e791ba
RK
75 let next: string | undefined
76 let prev: string | undefined
e71bcc0f 77
c46edbc2
C
78 // Assert page is a number
79 page = parseInt(page, 10)
80
e71bcc0f 81 // There are more results
c46edbc2 82 if (result.total > page * ACTIVITY_PUB.COLLECTION_ITEMS_PER_PAGE) {
e71bcc0f
C
83 next = url + '?page=' + (page + 1)
84 }
85
86 if (page > 1) {
87 prev = url + '?page=' + (page - 1)
88 }
89
8fffe21a 90 return {
e71bcc0f
C
91 id: url + '?page=' + page,
92 type: 'OrderedCollectionPage',
93 prev,
94 next,
95 partOf: url,
8fffe21a
C
96 orderedItems: result.data,
97 totalItems: result.total
e4f97bab
C
98 }
99
e4f97bab
C
100}
101
50d6de9c 102function buildSignedActivity (byActor: ActorModel, data: Object) {
afffe988
C
103 const activity = activityPubContextify(data)
104
50d6de9c 105 return signObject(byActor, activity) as Promise<Activity>
afffe988
C
106}
107
6be84cbc
C
108function getActorUrl (activityActor: string | ActivityPubActor) {
109 if (typeof activityActor === 'string') return activityActor
110
111 return activityActor.id
112}
113
e4f97bab
C
114// ---------------------------------------------------------------------------
115
116export {
6be84cbc 117 getActorUrl,
e4f97bab 118 activityPubContextify,
0d0e8dd0 119 activityPubCollectionPagination,
892211e8 120 buildSignedActivity
e4f97bab 121}