X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Fuser.ts;h=2ea7481e8152b09ce9fc11ff75bd178951ed9e89;hb=5a649344ffd0e8ac87ca1b573e57156d659f8b9d;hp=ec1466c6fc653c56ebffa967ab24bda742bf2941;hpb=50d6de9c286abcb34ff4234d56d9cbb803db7665;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/user.ts b/server/lib/user.ts index ec1466c6f..2ea7481e8 100644 --- a/server/lib/user.ts +++ b/server/lib/user.ts @@ -6,15 +6,15 @@ import { UserModel } from '../models/account/user' import { buildActorInstance, getAccountActivityPubUrl, setAsyncActorKeys } from './activitypub' import { createVideoChannel } from './video-channel' -async function createUserAccountAndChannel (user: UserModel, validateUser = true) { - const { account, videoChannel } = await sequelizeTypescript.transaction(async t => { +async function createUserAccountAndChannel (userToCreate: UserModel, validateUser = true) { + const { user, 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 userCreated = await userToCreate.save(userOptions) + const accountCreated = await createLocalAccountWithoutKeys(userToCreate.username, userToCreate.id, null, t) const videoChannelName = `Default ${userCreated.username} channel` const videoChannelInfo = { @@ -22,13 +22,13 @@ async function createUserAccountAndChannel (user: UserModel, validateUser = true } const videoChannel = await createVideoChannel(videoChannelInfo, accountCreated, t) - return { account: accountCreated, videoChannel } + return { user: userCreated, account: accountCreated, videoChannel } }) account.Actor = await setAsyncActorKeys(account.Actor) videoChannel.Actor = await setAsyncActorKeys(videoChannel.Actor) - return { account, videoChannel } + return { user, account, videoChannel } } async function createLocalAccountWithoutKeys ( @@ -47,8 +47,7 @@ async function createLocalAccountWithoutKeys ( name, userId, applicationId, - actorId: actorInstanceCreated.id, - serverId: null // It is our server + actorId: actorInstanceCreated.id }) const accountInstanceCreated = await accountInstance.save({ transaction: t })