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