]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/helpers/activitypub.ts
Merge branch 'release/2.2.0' into develop
[github/Chocobozzz/PeerTube.git] / server / helpers / activitypub.ts
CommitLineData
8fffe21a 1import * as Bluebird from 'bluebird'
7cde3b9c 2import validator from 'validator'
3fd3ab2d 3import { ResultList } from '../../shared/models'
361805c4 4import { Activity } from '../../shared/models/activitypub'
ca6d3622 5import { ACTIVITY_PUB, REMOTE_SCHEME } from '../initializers/constants'
f7509cbe 6import { signJsonLDObject } from './peertube-crypto'
8fffe21a 7import { pageToStartAndCount } from './core-utils'
a1587156 8import { URL } from 'url'
ca6d3622 9import { MActor, MVideoAccountLight } from '../typings/models'
e307e4fc 10import { ContextType } from '@shared/models/activitypub/context'
598edb8a 11
084a2cd0
C
12function getContextData (type: ContextType) {
13 const context: any[] = [
14 'https://www.w3.org/ns/activitystreams',
15 'https://w3id.org/security/v1',
16 {
17 RsaSignature2017: 'https://w3id.org/security#RsaSignature2017'
18 }
19 ]
598edb8a 20
084a2cd0
C
21 if (type !== 'View' && type !== 'Announce') {
22 const additional = {
598edb8a 23 pt: 'https://joinpeertube.org/ns#',
084a2cd0
C
24 sc: 'http://schema.org#'
25 }
26
27 if (type === 'CacheFile') {
28 Object.assign(additional, {
29 expires: 'sc:expires',
30 CacheFile: 'pt:CacheFile'
31 })
32 } else {
33 Object.assign(additional, {
34 Hashtag: 'as:Hashtag',
35 uuid: 'sc:identifier',
36 category: 'sc:category',
37 licence: 'sc:license',
38 subtitleLanguage: 'sc:subtitleLanguage',
39 sensitive: 'as:sensitive',
40 language: 'sc:inLanguage',
41
42 Infohash: 'pt:Infohash',
9934b6f3
C
43 Playlist: 'pt:Playlist',
44 PlaylistElement: 'pt:PlaylistElement',
45
084a2cd0
C
46 originallyPublishedAt: 'sc:datePublished',
47 views: {
48 '@type': 'sc:Number',
49 '@id': 'pt:views'
50 },
51 state: {
52 '@type': 'sc:Number',
53 '@id': 'pt:state'
54 },
55 size: {
56 '@type': 'sc:Number',
57 '@id': 'pt:size'
58 },
59 fps: {
60 '@type': 'sc:Number',
61 '@id': 'pt:fps'
62 },
63 startTimestamp: {
64 '@type': 'sc:Number',
65 '@id': 'pt:startTimestamp'
66 },
67 stopTimestamp: {
68 '@type': 'sc:Number',
69 '@id': 'pt:stopTimestamp'
70 },
71 position: {
72 '@type': 'sc:Number',
73 '@id': 'pt:position'
74 },
75 commentsEnabled: {
76 '@type': 'sc:Boolean',
77 '@id': 'pt:commentsEnabled'
78 },
79 downloadEnabled: {
80 '@type': 'sc:Boolean',
81 '@id': 'pt:downloadEnabled'
82 },
83 waitTranscoding: {
84 '@type': 'sc:Boolean',
85 '@id': 'pt:waitTranscoding'
86 },
87 support: {
88 '@type': 'sc:Text',
89 '@id': 'pt:support'
90 },
91 likes: {
92 '@id': 'as:likes',
93 '@type': '@id'
94 },
95 dislikes: {
96 '@id': 'as:dislikes',
97 '@type': '@id'
98 },
99 playlists: {
100 '@id': 'pt:playlists',
101 '@type': '@id'
102 },
103 shares: {
104 '@id': 'as:shares',
105 '@type': '@id'
106 },
107 comments: {
108 '@id': 'as:comments',
109 '@type': '@id'
110 }
111 })
112 }
113
114 context.push(additional)
598edb8a
C
115 }
116
084a2cd0
C
117 return {
118 '@context': context
119 }
120}
121
122function activityPubContextify <T> (data: T, type: ContextType = 'All') {
123 return Object.assign({}, data, getContextData(type))
e4f97bab
C
124}
125
8fffe21a 126type ActivityPubCollectionPaginationHandler = (start: number, count: number) => Bluebird<ResultList<any>> | Promise<ResultList<any>>
fbc77eb6
RK
127async function activityPubCollectionPagination (
128 baseUrl: string,
129 handler: ActivityPubCollectionPaginationHandler,
130 page?: any,
131 size = ACTIVITY_PUB.COLLECTION_ITEMS_PER_PAGE
132) {
8fffe21a
C
133 if (!page || !validator.isInt(page)) {
134 // We just display the first page URL, we only need the total items
135 const result = await handler(0, 1)
136
137 return {
babecc3c 138 id: baseUrl,
418d092a 139 type: 'OrderedCollectionPage',
8fffe21a 140 totalItems: result.total,
babecc3c 141 first: baseUrl + '?page=1'
8fffe21a 142 }
16b90975 143 }
16b90975 144
fbc77eb6 145 const { start, count } = pageToStartAndCount(page, size)
8fffe21a
C
146 const result = await handler(start, count)
147
c1e791ba
RK
148 let next: string | undefined
149 let prev: string | undefined
e71bcc0f 150
c46edbc2
C
151 // Assert page is a number
152 page = parseInt(page, 10)
153
e71bcc0f 154 // There are more results
fbc77eb6 155 if (result.total > page * size) {
babecc3c 156 next = baseUrl + '?page=' + (page + 1)
e71bcc0f
C
157 }
158
159 if (page > 1) {
babecc3c 160 prev = baseUrl + '?page=' + (page - 1)
e71bcc0f
C
161 }
162
8fffe21a 163 return {
babecc3c 164 id: baseUrl + '?page=' + page,
e71bcc0f
C
165 type: 'OrderedCollectionPage',
166 prev,
167 next,
babecc3c 168 partOf: baseUrl,
8fffe21a
C
169 orderedItems: result.data,
170 totalItems: result.total
e4f97bab
C
171 }
172
e4f97bab
C
173}
174
598edb8a
C
175function buildSignedActivity (byActor: MActor, data: Object, contextType?: ContextType) {
176 const activity = activityPubContextify(data, contextType)
afffe988 177
f7509cbe 178 return signJsonLDObject(byActor, activity) as Promise<Activity>
afffe988
C
179}
180
848f499d 181function getAPId (activity: string | { id: string }) {
361805c4 182 if (typeof activity === 'string') return activity
6be84cbc 183
361805c4 184 return activity.id
6be84cbc
C
185}
186
5c6d985f 187function checkUrlsSameHost (url1: string, url2: string) {
a1587156
C
188 const idHost = new URL(url1).host
189 const actorHost = new URL(url2).host
5c6d985f
C
190
191 return idHost && actorHost && idHost.toLowerCase() === actorHost.toLowerCase()
6be84cbc
C
192}
193
ca6d3622
C
194function buildRemoteVideoBaseUrl (video: MVideoAccountLight, path: string) {
195 const host = video.VideoChannel.Account.Actor.Server.host
196
197 return REMOTE_SCHEME.HTTP + '://' + host + path
198}
199
e4f97bab
C
200// ---------------------------------------------------------------------------
201
202export {
5c6d985f 203 checkUrlsSameHost,
848f499d 204 getAPId,
e4f97bab 205 activityPubContextify,
0d0e8dd0 206 activityPubCollectionPagination,
ca6d3622
C
207 buildSignedActivity,
208 buildRemoteVideoBaseUrl
e4f97bab 209}