X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Fuser.ts;h=aa029cce77d0bc90507d289f85f0f45701407ef4;hb=ac81d1a06d57b9ae86663831e7f5edcef57b0fa4;hp=57c653e5570010262ccf9d56371c8511729a2a9b;hpb=e4f97babf701481b55cc10fb3448feab5f97c867;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/user.ts b/server/lib/user.ts index 57c653e55..aa029cce7 100644 --- a/server/lib/user.ts +++ b/server/lib/user.ts @@ -1,42 +1,74 @@ -import { database as db } from '../initializers' -import { UserInstance } from '../models' -import { addVideoAccountToFriends } from './friends' +import * as Sequelize from 'sequelize' +import { ActivityPubActorType } from '../../shared/models/activitypub' +import { sequelizeTypescript, SERVER_ACTOR_NAME } from '../initializers' +import { AccountModel } from '../models/account/account' +import { UserModel } from '../models/account/user' +import { buildActorInstance, getAccountActivityPubUrl, setAsyncActorKeys } from './activitypub' import { createVideoChannel } from './video-channel' -async function createUserAccountAndChannel (user: UserInstance, validateUser = true) { - const res = await db.sequelize.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 accountInstance = db.Account.build({ - name: userCreated.username, - podId: null, // It is our pod - userId: userCreated.id - }) - - const accountCreated = await accountInstance.save({ transaction: t }) - - const remoteVideoAccount = accountCreated.toAddRemoteJSON() - - // Now we'll add the video channel's meta data to our friends - const account = await addVideoAccountToFriends(remoteVideoAccount, 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 = { - name: `Default ${userCreated.username} channel` + name: videoChannelName } const videoChannel = await createVideoChannel(videoChannelInfo, accountCreated, t) - return { account, videoChannel } + return { user: userCreated, account: accountCreated, videoChannel } }) - return res + account.Actor = await setAsyncActorKeys(account.Actor) + videoChannel.Actor = await setAsyncActorKeys(videoChannel.Actor) + + return { user, account, videoChannel } +} + +async function createLocalAccountWithoutKeys ( + name: string, + userId: number, + applicationId: number, + t: Sequelize.Transaction, + type: ActivityPubActorType= 'Person' +) { + const url = getAccountActivityPubUrl(name) + + const actorInstance = buildActorInstance(type, url, name) + 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 +} + +async function createApplicationActor (applicationId: number) { + const accountCreated = await createLocalAccountWithoutKeys(SERVER_ACTOR_NAME, null, applicationId, undefined, 'Application') + + accountCreated.Actor = await setAsyncActorKeys(accountCreated.Actor) + + return accountCreated } // --------------------------------------------------------------------------- export { - createUserAccountAndChannel + createApplicationActor, + createUserAccountAndChannel, + createLocalAccountWithoutKeys }