]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/activitypub/actor.ts
Fix tsconfig with CLI tools
[github/Chocobozzz/PeerTube.git] / server / lib / activitypub / actor.ts
CommitLineData
50d6de9c
C
1import * as Bluebird from 'bluebird'
2import { Transaction } from 'sequelize'
3import * as url from 'url'
c5911fd3 4import * as uuidv4 from 'uuid/v4'
50d6de9c
C
5import { ActivityPubActor, ActivityPubActorType } from '../../../shared/models/activitypub'
6import { ActivityPubAttributedTo } from '../../../shared/models/activitypub/objects'
848f499d 7import { checkUrlsSameHost, getAPId } from '../../helpers/activitypub'
9977c128 8import { sanitizeAndCheckActorObject } from '../../helpers/custom-validators/activitypub/actor'
c5911fd3 9import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
a5625b41 10import { retryTransactionWrapper, updateInstanceWithAnother } from '../../helpers/database-utils'
da854ddd
C
11import { logger } from '../../helpers/logger'
12import { createPrivateAndPublicKeys } from '../../helpers/peertube-crypto'
557b13ae 13import { doRequest } from '../../helpers/requests'
a5625b41 14import { getUrlFromWebfinger } from '../../helpers/webfinger'
557b13ae 15import { MIMETYPES, WEBSERVER } from '../../initializers/constants'
50d6de9c
C
16import { AccountModel } from '../../models/account/account'
17import { ActorModel } from '../../models/activitypub/actor'
c5911fd3 18import { AvatarModel } from '../../models/avatar/avatar'
50d6de9c
C
19import { ServerModel } from '../../models/server/server'
20import { VideoChannelModel } from '../../models/video/video-channel'
16f29007
C
21import { JobQueue } from '../job-queue'
22import { getServerActor } from '../../helpers/utils'
e587e0ec 23import { ActorFetchByUrlType, fetchActorByUrl } from '../../helpers/actor'
74dc3bca 24import { sequelizeTypescript } from '../../initializers/database'
453e83ea
C
25import {
26 MAccount,
0283eaac 27 MAccountDefault,
453e83ea
C
28 MActor,
29 MActorAccountChannelId,
0283eaac 30 MActorAccountChannelIdActor,
453e83ea
C
31 MActorAccountId,
32 MActorDefault,
33 MActorFull,
0283eaac 34 MActorFullActor,
453e83ea 35 MActorId,
453e83ea 36 MChannel,
0283eaac 37 MChannelAccountDefault
453e83ea 38} from '../../typings/models'
50d6de9c 39
e12a0092 40// Set account keys, this could be long so process after the account creation and do not block the client
1ca9f7c3 41function setAsyncActorKeys <T extends MActor> (actor: T) {
50d6de9c
C
42 return createPrivateAndPublicKeys()
43 .then(({ publicKey, privateKey }) => {
453e83ea
C
44 actor.publicKey = publicKey
45 actor.privateKey = privateKey
50d6de9c
C
46 return actor.save()
47 })
48 .catch(err => {
57cfff78 49 logger.error('Cannot set public/private keys of actor %d.', actor.url, { err })
50d6de9c
C
50 return actor
51 })
52}
53
453e83ea
C
54function getOrCreateActorAndServerAndModel (
55 activityActor: string | ActivityPubActor,
56 fetchType: 'all',
57 recurseIfNeeded?: boolean,
58 updateCollections?: boolean
59): Promise<MActorFullActor>
60
61function getOrCreateActorAndServerAndModel (
62 activityActor: string | ActivityPubActor,
63 fetchType?: 'association-ids',
64 recurseIfNeeded?: boolean,
65 updateCollections?: boolean
66): Promise<MActorAccountChannelId>
67
687d638c
C
68async function getOrCreateActorAndServerAndModel (
69 activityActor: string | ActivityPubActor,
453e83ea 70 fetchType: ActorFetchByUrlType = 'association-ids',
687d638c
C
71 recurseIfNeeded = true,
72 updateCollections = false
453e83ea 73): Promise<MActorFullActor | MActorAccountChannelId> {
848f499d 74 const actorUrl = getAPId(activityActor)
687d638c 75 let created = false
418d092a 76 let accountPlaylistsUrl: string
6be84cbc 77
e587e0ec 78 let actor = await fetchActorByUrl(actorUrl, fetchType)
25e4d6ee 79 // Orphan actor (not associated to an account of channel) so recreate it
6104adc3 80 if (actor && (!actor.Account && !actor.VideoChannel)) {
25e4d6ee
C
81 await actor.destroy()
82 actor = null
83 }
50d6de9c
C
84
85 // We don't have this actor in our database, fetch it on remote
86 if (!actor) {
f5b0af50 87 const { result } = await fetchRemoteActor(actorUrl)
601527d7 88 if (result === undefined) throw new Error('Cannot fetch remote actor ' + actorUrl)
50d6de9c
C
89
90 // Create the attributed to actor
91 // In PeerTube a video channel is owned by an account
453e83ea 92 let ownerActor: MActorFullActor
50d6de9c
C
93 if (recurseIfNeeded === true && result.actor.type === 'Group') {
94 const accountAttributedTo = result.attributedTo.find(a => a.type === 'Person')
95 if (!accountAttributedTo) throw new Error('Cannot find account attributed to video channel ' + actor.url)
96
5c6d985f
C
97 if (checkUrlsSameHost(accountAttributedTo.id, actorUrl) !== true) {
98 throw new Error(`Account attributed to ${accountAttributedTo.id} does not have the same host than actor url ${actorUrl}`)
99 }
100
50d6de9c 101 try {
5c6d985f 102 // Don't recurse another time
418d092a
C
103 const recurseIfNeeded = false
104 ownerActor = await getOrCreateActorAndServerAndModel(accountAttributedTo.id, 'all', recurseIfNeeded)
50d6de9c
C
105 } catch (err) {
106 logger.error('Cannot get or create account attributed to video channel ' + actor.url)
107 throw new Error(err)
108 }
109 }
110
90d4bb81 111 actor = await retryTransactionWrapper(saveActorAndServerAndModelIfNotExist, result, ownerActor)
687d638c 112 created = true
418d092a 113 accountPlaylistsUrl = result.playlists
50d6de9c
C
114 }
115
453e83ea
C
116 if (actor.Account) (actor as MActorAccountChannelIdActor).Account.Actor = actor
117 if (actor.VideoChannel) (actor as MActorAccountChannelIdActor).VideoChannel.Actor = actor
d9bdd007 118
e587e0ec 119 const { actor: actorRefreshed, refreshed } = await retryTransactionWrapper(refreshActorIfNeeded, actor, fetchType)
687d638c 120 if (!actorRefreshed) throw new Error('Actor ' + actorRefreshed.url + ' does not exist anymore.')
f5b0af50 121
687d638c
C
122 if ((created === true || refreshed === true) && updateCollections === true) {
123 const payload = { uri: actor.outboxUrl, type: 'activity' as 'activity' }
124 await JobQueue.Instance.createJob({ type: 'activitypub-http-fetcher', payload })
125 }
126
418d092a
C
127 // We created a new account: fetch the playlists
128 if (created === true && actor.Account && accountPlaylistsUrl) {
129 const payload = { uri: accountPlaylistsUrl, accountId: actor.Account.id, type: 'account-playlists' as 'account-playlists' }
130 await JobQueue.Instance.createJob({ type: 'activitypub-http-fetcher', payload })
131 }
132
687d638c 133 return actorRefreshed
50d6de9c
C
134}
135
c5911fd3
C
136function buildActorInstance (type: ActivityPubActorType, url: string, preferredUsername: string, uuid?: string) {
137 return new ActorModel({
138 type,
139 url,
140 preferredUsername,
141 uuid,
142 publicKey: null,
143 privateKey: null,
144 followersCount: 0,
145 followingCount: 0,
146 inboxUrl: url + '/inbox',
147 outboxUrl: url + '/outbox',
6dd9de95 148 sharedInboxUrl: WEBSERVER.URL + '/inbox',
c5911fd3
C
149 followersUrl: url + '/followers',
150 followingUrl: url + '/following'
1ca9f7c3 151 }) as MActor
c5911fd3
C
152}
153
a5625b41
C
154async function updateActorInstance (actorInstance: ActorModel, attributes: ActivityPubActor) {
155 const followersCount = await fetchActorTotalItems(attributes.followers)
156 const followingCount = await fetchActorTotalItems(attributes.following)
157
57cfff78
C
158 actorInstance.type = attributes.type
159 actorInstance.preferredUsername = attributes.preferredUsername
160 actorInstance.url = attributes.id
161 actorInstance.publicKey = attributes.publicKey.publicKeyPem
162 actorInstance.followersCount = followersCount
163 actorInstance.followingCount = followingCount
164 actorInstance.inboxUrl = attributes.inbox
165 actorInstance.outboxUrl = attributes.outbox
166 actorInstance.sharedInboxUrl = attributes.endpoints.sharedInbox
167 actorInstance.followersUrl = attributes.followers
168 actorInstance.followingUrl = attributes.following
a5625b41
C
169}
170
453e83ea
C
171type AvatarInfo = { name: string, onDisk: boolean, fileUrl: string }
172async function updateActorAvatarInstance (actor: MActorDefault, info: AvatarInfo, t: Transaction) {
557b13ae
C
173 if (info.name !== undefined) {
174 if (actor.avatarId) {
a5625b41 175 try {
557b13ae 176 await actor.Avatar.destroy({ transaction: t })
a5625b41 177 } catch (err) {
557b13ae 178 logger.error('Cannot remove old avatar of actor %s.', actor.url, { err })
a5625b41
C
179 }
180 }
181
182 const avatar = await AvatarModel.create({
557b13ae
C
183 filename: info.name,
184 onDisk: info.onDisk,
185 fileUrl: info.fileUrl
a5625b41
C
186 }, { transaction: t })
187
557b13ae
C
188 actor.avatarId = avatar.id
189 actor.Avatar = avatar
a5625b41
C
190 }
191
557b13ae 192 return actor
a5625b41
C
193}
194
265ba139
C
195async function fetchActorTotalItems (url: string) {
196 const options = {
197 uri: url,
198 method: 'GET',
199 json: true,
200 activityPub: true
201 }
202
265ba139 203 try {
7006bc63
C
204 const { body } = await doRequest(options)
205 return body.totalItems ? body.totalItems : 0
265ba139 206 } catch (err) {
d5b7d911 207 logger.warn('Cannot fetch remote actor count %s.', url, { err })
7006bc63 208 return 0
265ba139 209 }
265ba139
C
210}
211
557b13ae 212async function getAvatarInfoIfExists (actorJSON: ActivityPubActor) {
265ba139 213 if (
14e2014a 214 actorJSON.icon && actorJSON.icon.type === 'Image' && MIMETYPES.IMAGE.MIMETYPE_EXT[actorJSON.icon.mediaType] !== undefined &&
265ba139
C
215 isActivityPubUrlValid(actorJSON.icon.url)
216 ) {
14e2014a 217 const extension = MIMETYPES.IMAGE.MIMETYPE_EXT[actorJSON.icon.mediaType]
265ba139 218
557b13ae
C
219 return {
220 name: uuidv4() + extension,
221 fileUrl: actorJSON.icon.url
222 }
265ba139
C
223 }
224
225 return undefined
226}
227
5224c394 228async function addFetchOutboxJob (actor: Pick<ActorModel, 'id' | 'outboxUrl'>) {
16f29007
C
229 // Don't fetch ourselves
230 const serverActor = await getServerActor()
231 if (serverActor.id === actor.id) {
232 logger.error('Cannot fetch our own outbox!')
233 return undefined
234 }
235
236 const payload = {
f6eebcb3
C
237 uri: actor.outboxUrl,
238 type: 'activity' as 'activity'
16f29007
C
239 }
240
241 return JobQueue.Instance.createJob({ type: 'activitypub-http-fetcher', payload })
242}
243
453e83ea
C
244async function refreshActorIfNeeded <T extends MActorFull | MActorAccountChannelId> (
245 actorArg: T,
744d0eca 246 fetchedType: ActorFetchByUrlType
453e83ea 247): Promise<{ actor: T | MActorFull, refreshed: boolean }> {
744d0eca
C
248 if (!actorArg.isOutdated()) return { actor: actorArg, refreshed: false }
249
250 // We need more attributes
453e83ea
C
251 const actor = fetchedType === 'all'
252 ? actorArg as MActorFull
253 : await ActorModel.loadByUrlAndPopulateAccountAndChannel(actorArg.url)
744d0eca
C
254
255 try {
699b059e
C
256 let actorUrl: string
257 try {
258 actorUrl = await getUrlFromWebfinger(actor.preferredUsername + '@' + actor.getHost())
259 } catch (err) {
260 logger.warn('Cannot get actor URL from webfinger, keeping the old one.', err)
261 actorUrl = actor.url
262 }
263
744d0eca
C
264 const { result, statusCode } = await fetchRemoteActor(actorUrl)
265
266 if (statusCode === 404) {
267 logger.info('Deleting actor %s because there is a 404 in refresh actor.', actor.url)
268 actor.Account ? actor.Account.destroy() : actor.VideoChannel.destroy()
269 return { actor: undefined, refreshed: false }
270 }
271
272 if (result === undefined) {
273 logger.warn('Cannot fetch remote actor in refresh actor.')
274 return { actor, refreshed: false }
275 }
276
277 return sequelizeTypescript.transaction(async t => {
278 updateInstanceWithAnother(actor, result.actor)
279
557b13ae
C
280 if (result.avatar !== undefined) {
281 const avatarInfo = {
282 name: result.avatar.name,
283 fileUrl: result.avatar.fileUrl,
284 onDisk: false
285 }
286
287 await updateActorAvatarInstance(actor, avatarInfo, t)
744d0eca
C
288 }
289
290 // Force update
291 actor.setDataValue('updatedAt', new Date())
292 await actor.save({ transaction: t })
293
294 if (actor.Account) {
6b9c966f
C
295 actor.Account.name = result.name
296 actor.Account.description = result.summary
744d0eca
C
297
298 await actor.Account.save({ transaction: t })
299 } else if (actor.VideoChannel) {
6b9c966f
C
300 actor.VideoChannel.name = result.name
301 actor.VideoChannel.description = result.summary
302 actor.VideoChannel.support = result.support
744d0eca
C
303
304 await actor.VideoChannel.save({ transaction: t })
305 }
306
307 return { refreshed: true, actor }
308 })
309 } catch (err) {
4ee7a4c9 310 logger.warn('Cannot refresh actor %s.', actor.url, { err })
744d0eca
C
311 return { actor, refreshed: false }
312 }
313}
314
c5911fd3
C
315export {
316 getOrCreateActorAndServerAndModel,
317 buildActorInstance,
265ba139
C
318 setAsyncActorKeys,
319 fetchActorTotalItems,
557b13ae 320 getAvatarInfoIfExists,
a5625b41 321 updateActorInstance,
744d0eca 322 refreshActorIfNeeded,
16f29007
C
323 updateActorAvatarInstance,
324 addFetchOutboxJob
c5911fd3
C
325}
326
327// ---------------------------------------------------------------------------
328
50d6de9c
C
329function saveActorAndServerAndModelIfNotExist (
330 result: FetchRemoteActorResult,
453e83ea 331 ownerActor?: MActorFullActor,
50d6de9c 332 t?: Transaction
453e83ea 333): Bluebird<MActorFullActor> | Promise<MActorFullActor> {
50d6de9c
C
334 let actor = result.actor
335
336 if (t !== undefined) return save(t)
337
338 return sequelizeTypescript.transaction(t => save(t))
339
340 async function save (t: Transaction) {
341 const actorHost = url.parse(actor.url).host
342
343 const serverOptions = {
344 where: {
345 host: actorHost
346 },
347 defaults: {
348 host: actorHost
349 },
350 transaction: t
351 }
352 const [ server ] = await ServerModel.findOrCreate(serverOptions)
353
354 // Save our new account in database
557b13ae 355 actor.serverId = server.id
50d6de9c 356
c5911fd3 357 // Avatar?
557b13ae 358 if (result.avatar) {
c5911fd3 359 const avatar = await AvatarModel.create({
557b13ae
C
360 filename: result.avatar.name,
361 fileUrl: result.avatar.fileUrl,
362 onDisk: false
c5911fd3 363 }, { transaction: t })
557b13ae
C
364
365 actor.avatarId = avatar.id
c5911fd3
C
366 }
367
50d6de9c
C
368 // Force the actor creation, sometimes Sequelize skips the save() when it thinks the instance already exists
369 // (which could be false in a retried query)
453e83ea 370 const [ actorCreated ] = await ActorModel.findOrCreate<MActorFullActor>({
2c897999
C
371 defaults: actor.toJSON(),
372 where: {
373 url: actor.url
374 },
375 transaction: t
376 })
50d6de9c
C
377
378 if (actorCreated.type === 'Person' || actorCreated.type === 'Application') {
0283eaac 379 actorCreated.Account = await saveAccount(actorCreated, result, t) as MAccountDefault
50d6de9c
C
380 actorCreated.Account.Actor = actorCreated
381 } else if (actorCreated.type === 'Group') { // Video channel
0283eaac
C
382 const channel = await saveVideoChannel(actorCreated, result, ownerActor, t)
383 actorCreated.VideoChannel = Object.assign(channel, { Actor: actorCreated, Account: ownerActor.Account })
50d6de9c
C
384 }
385
883993c8
C
386 actorCreated.Server = server
387
50d6de9c
C
388 return actorCreated
389 }
390}
391
392type FetchRemoteActorResult = {
453e83ea 393 actor: MActor
e12a0092 394 name: string
50d6de9c 395 summary: string
2422c46b 396 support?: string
418d092a 397 playlists?: string
557b13ae
C
398 avatar?: {
399 name: string,
400 fileUrl: string
401 }
50d6de9c
C
402 attributedTo: ActivityPubAttributedTo[]
403}
f5b0af50 404async function fetchRemoteActor (actorUrl: string): Promise<{ statusCode?: number, result: FetchRemoteActorResult }> {
50d6de9c
C
405 const options = {
406 uri: actorUrl,
407 method: 'GET',
da854ddd
C
408 json: true,
409 activityPub: true
50d6de9c
C
410 }
411
412 logger.info('Fetching remote actor %s.', actorUrl)
413
4c280004 414 const requestResult = await doRequest<ActivityPubActor>(options)
4c280004 415 const actorJSON = requestResult.body
9977c128
C
416
417 if (sanitizeAndCheckActorObject(actorJSON) === false) {
b4593cd7 418 logger.debug('Remote actor JSON is not valid.', { actorJSON })
f5b0af50 419 return { result: undefined, statusCode: requestResult.response.statusCode }
50d6de9c
C
420 }
421
5c6d985f 422 if (checkUrlsSameHost(actorJSON.id, actorUrl) !== true) {
9f79ade6
C
423 logger.warn('Actor url %s has not the same host than its AP id %s', actorUrl, actorJSON.id)
424 return { result: undefined, statusCode: requestResult.response.statusCode }
5c6d985f
C
425 }
426
50d6de9c
C
427 const followersCount = await fetchActorTotalItems(actorJSON.followers)
428 const followingCount = await fetchActorTotalItems(actorJSON.following)
429
430 const actor = new ActorModel({
431 type: actorJSON.type,
e12a0092
C
432 preferredUsername: actorJSON.preferredUsername,
433 url: actorJSON.id,
50d6de9c
C
434 publicKey: actorJSON.publicKey.publicKeyPem,
435 privateKey: null,
436 followersCount: followersCount,
437 followingCount: followingCount,
438 inboxUrl: actorJSON.inbox,
439 outboxUrl: actorJSON.outbox,
440 sharedInboxUrl: actorJSON.endpoints.sharedInbox,
441 followersUrl: actorJSON.followers,
442 followingUrl: actorJSON.following
443 })
444
557b13ae 445 const avatarInfo = await getAvatarInfoIfExists(actorJSON)
c5911fd3 446
e12a0092 447 const name = actorJSON.name || actorJSON.preferredUsername
50d6de9c 448 return {
f5b0af50
C
449 statusCode: requestResult.response.statusCode,
450 result: {
451 actor,
452 name,
557b13ae 453 avatar: avatarInfo,
f5b0af50
C
454 summary: actorJSON.summary,
455 support: actorJSON.support,
418d092a 456 playlists: actorJSON.playlists,
f5b0af50
C
457 attributedTo: actorJSON.attributedTo
458 }
50d6de9c
C
459 }
460}
461
453e83ea 462async function saveAccount (actor: MActorId, result: FetchRemoteActorResult, t: Transaction) {
2c897999
C
463 const [ accountCreated ] = await AccountModel.findOrCreate({
464 defaults: {
465 name: result.name,
2422c46b 466 description: result.summary,
2c897999
C
467 actorId: actor.id
468 },
469 where: {
470 actorId: actor.id
471 },
472 transaction: t
50d6de9c
C
473 })
474
453e83ea 475 return accountCreated as MAccount
50d6de9c
C
476}
477
453e83ea 478async function saveVideoChannel (actor: MActorId, result: FetchRemoteActorResult, ownerActor: MActorAccountId, t: Transaction) {
2c897999
C
479 const [ videoChannelCreated ] = await VideoChannelModel.findOrCreate({
480 defaults: {
481 name: result.name,
482 description: result.summary,
2422c46b 483 support: result.support,
2c897999
C
484 actorId: actor.id,
485 accountId: ownerActor.Account.id
486 },
487 where: {
488 actorId: actor.id
489 },
490 transaction: t
50d6de9c
C
491 })
492
453e83ea 493 return videoChannelCreated as MChannel
50d6de9c 494}