PeerTube/server/lib/user.ts

66 lines
2.2 KiB
TypeScript
Raw Normal View History

2017-11-10 17:27:49 +01:00
import * as Sequelize from 'sequelize'
2017-12-12 17:53:50 +01:00
import { createPrivateAndPublicKeys, logger } from '../helpers'
import { CONFIG, sequelizeTypescript } from '../initializers'
import { AccountModel } from '../models/account/account'
import { UserModel } from '../models/account/user'
import { getAccountActivityPubUrl } from './activitypub'
2017-10-24 19:41:09 +02:00
import { createVideoChannel } from './video-channel'
2017-12-12 17:53:50 +01:00
async function createUserAccountAndChannel (user: UserModel, validateUser = true) {
const { account, videoChannel } = await sequelizeTypescript.transaction(async t => {
2017-10-24 19:41:09 +02:00
const userOptions = {
transaction: t,
validate: validateUser
}
const userCreated = await user.save(userOptions)
2017-11-16 18:40:50 +01:00
const accountCreated = await createLocalAccountWithoutKeys(user.username, user.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)
2017-11-10 17:27:49 +01:00
return { account: accountCreated, videoChannel }
2017-10-24 19:41:09 +02:00
})
2017-11-16 18:40:50 +01:00
// Set account keys, this could be long so process after the account creation and do not block the client
const { publicKey, privateKey } = await createPrivateAndPublicKeys()
account.set('publicKey', publicKey)
account.set('privateKey', privateKey)
account.save().catch(err => logger.error('Cannot set public/private keys of local account %d.', account.id, err))
return { account, videoChannel }
2017-10-24 19:41:09 +02:00
}
2017-11-16 18:40:50 +01:00
async function createLocalAccountWithoutKeys (name: string, userId: number, applicationId: number, t: Sequelize.Transaction) {
2017-11-20 09:43:39 +01:00
const url = getAccountActivityPubUrl(name)
2017-11-10 17:27:49 +01:00
2017-12-12 17:53:50 +01:00
const accountInstance = new AccountModel({
2017-11-10 17:27:49 +01:00
name,
url,
2017-11-16 18:40:50 +01:00
publicKey: null,
privateKey: null,
2017-11-10 17:27:49 +01:00
followersCount: 0,
followingCount: 0,
inboxUrl: url + '/inbox',
outboxUrl: url + '/outbox',
sharedInboxUrl: CONFIG.WEBSERVER.URL + '/inbox',
followersUrl: url + '/followers',
followingUrl: url + '/following',
userId,
applicationId,
2017-11-15 11:00:25 +01:00
serverId: null // It is our server
2017-11-10 17:27:49 +01:00
})
return accountInstance.save({ transaction: t })
}
2017-10-24 19:41:09 +02:00
// ---------------------------------------------------------------------------
export {
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
}