PeerTube/server/lib/user.ts

75 lines
2.5 KiB
TypeScript
Raw Normal View History

2017-11-10 17:27:49 +01:00
import * as Sequelize from 'sequelize'
2017-12-14 17:38:41 +01:00
import { ActivityPubActorType } from '../../shared/models/activitypub'
import { sequelizeTypescript, SERVER_ACTOR_NAME } from '../initializers'
2017-12-12 17:53:50 +01:00
import { AccountModel } from '../models/account/account'
import { UserModel } from '../models/account/user'
2017-12-14 17:38:41 +01:00
import { buildActorInstance, getAccountActivityPubUrl, setAsyncActorKeys } from './activitypub'
2017-10-24 19:41:09 +02:00
import { createVideoChannel } from './video-channel'
async function createUserAccountAndChannel (userToCreate: UserModel, validateUser = true) {
const { user, account, videoChannel } = await sequelizeTypescript.transaction(async t => {
2017-10-24 19:41:09 +02:00
const userOptions = {
transaction: t,
validate: validateUser
}
const userCreated = await userToCreate.save(userOptions)
const accountCreated = await createLocalAccountWithoutKeys(userToCreate.username, userToCreate.id, null, t)
2017-11-14 10:57:56 +01:00
const videoChannelName = `Default ${userCreated.username} channel`
const videoChannelInfo = {
2017-11-14 10:57:56 +01:00
name: videoChannelName
}
2017-11-09 17:51:58 +01:00
const videoChannel = await createVideoChannel(videoChannelInfo, accountCreated, t)
return { user: userCreated, account: accountCreated, videoChannel }
2017-10-24 19:41:09 +02:00
})
2017-12-14 17:38:41 +01:00
account.Actor = await setAsyncActorKeys(account.Actor)
videoChannel.Actor = await setAsyncActorKeys(videoChannel.Actor)
2017-11-16 18:40:50 +01:00
return { user, account, videoChannel }
2017-10-24 19:41:09 +02:00
}
2017-12-14 17:38:41 +01:00
async function createLocalAccountWithoutKeys (
name: string,
userId: number,
applicationId: number,
t: Sequelize.Transaction,
type: ActivityPubActorType= 'Person'
) {
2017-11-20 09:43:39 +01:00
const url = getAccountActivityPubUrl(name)
2017-11-10 17:27:49 +01:00
2017-12-14 17:38:41 +01:00
const actorInstance = buildActorInstance(type, url, name)
2017-12-14 11:18:49 +01:00
const actorInstanceCreated = await actorInstance.save({ transaction: t })
const accountInstance = new AccountModel({
name,
2017-11-10 17:27:49 +01:00
userId,
applicationId,
2017-12-14 11:18:49 +01:00
actorId: actorInstanceCreated.id,
2017-11-15 11:00:25 +01:00
serverId: null // It is our server
2017-11-10 17:27:49 +01:00
})
2017-12-14 11:18:49 +01:00
const accountInstanceCreated = await accountInstance.save({ transaction: t })
accountInstanceCreated.Actor = actorInstanceCreated
return accountInstanceCreated
2017-11-10 17:27:49 +01:00
}
2017-12-14 17:38:41 +01:00
async function createApplicationActor (applicationId: number) {
const accountCreated = await createLocalAccountWithoutKeys(SERVER_ACTOR_NAME, null, applicationId, undefined, 'Application')
accountCreated.Actor = await setAsyncActorKeys(accountCreated.Actor)
return accountCreated
}
2017-10-24 19:41:09 +02:00
// ---------------------------------------------------------------------------
export {
2017-12-14 17:38:41 +01:00
createApplicationActor,
2017-11-10 17:27:49 +01:00
createUserAccountAndChannel,
2017-11-16 18:40:50 +01:00
createLocalAccountWithoutKeys
2017-10-24 19:41:09 +02:00
}