import * as Sequelize from 'sequelize' import { createPrivateAndPublicKeys, logger } from '../helpers' import { CONFIG, sequelizeTypescript } from '../initializers' import { AccountModel } from '../models/account/account' import { UserModel } from '../models/account/user' import { ActorModel } from '../models/activitypub/actor' import { getAccountActivityPubUrl } from './activitypub' import { createVideoChannel } from './video-channel' async function createUserAccountAndChannel (user: UserModel, validateUser = true) { const { account, videoChannel } = await sequelizeTypescript.transaction(async t => { const userOptions = { transaction: t, validate: validateUser } const userCreated = await user.save(userOptions) const accountCreated = await createLocalAccountWithoutKeys(user.username, user.id, null, t) const videoChannelName = `Default ${userCreated.username} channel` const videoChannelInfo = { name: videoChannelName } const videoChannel = await createVideoChannel(videoChannelInfo, accountCreated, t) return { account: accountCreated, videoChannel } }) // Set account keys, this could be long so process after the account creation and do not block the client const { publicKey, privateKey } = await createPrivateAndPublicKeys() const actor = account.Actor actor.set('publicKey', publicKey) actor.set('privateKey', privateKey) actor.save().catch(err => logger.error('Cannot set public/private keys of actor %d.', actor.uuid, err)) return { account, videoChannel } } async function createLocalAccountWithoutKeys (name: string, userId: number, applicationId: number, t: Sequelize.Transaction) { const url = getAccountActivityPubUrl(name) const actorInstance = new ActorModel({ url, publicKey: null, privateKey: null, followersCount: 0, followingCount: 0, inboxUrl: url + '/inbox', outboxUrl: url + '/outbox', sharedInboxUrl: CONFIG.WEBSERVER.URL + '/inbox', followersUrl: url + '/followers', followingUrl: url + '/following' }) const actorInstanceCreated = await actorInstance.save({ transaction: t }) const accountInstance = new AccountModel({ name, userId, applicationId, actorId: actorInstanceCreated.id, serverId: null // It is our server }) const accountInstanceCreated = await accountInstance.save({ transaction: t }) accountInstanceCreated.Actor = actorInstanceCreated return accountInstanceCreated } // --------------------------------------------------------------------------- export { createUserAccountAndChannel, createLocalAccountWithoutKeys }