2017-11-10 11:27:49 -05:00
|
|
|
import * as Sequelize from 'sequelize'
|
|
|
|
import { createPrivateAndPublicKeys } from '../helpers/peertube-crypto'
|
2017-10-24 13:41:09 -04:00
|
|
|
import { database as db } from '../initializers'
|
2017-11-10 11:27:49 -05:00
|
|
|
import { CONFIG } from '../initializers/constants'
|
2017-10-24 13:41:09 -04:00
|
|
|
import { UserInstance } from '../models'
|
|
|
|
import { createVideoChannel } from './video-channel'
|
2017-11-16 12:40:50 -05:00
|
|
|
import { logger } from '../helpers/logger'
|
2017-11-20 04:24:29 -05:00
|
|
|
import { getAccountActivityPubUrl } from './activitypub/url'
|
2017-10-24 13:41:09 -04:00
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
async function createUserAccountAndChannel (user: UserInstance, validateUser = true) {
|
2017-11-16 12:40:50 -05:00
|
|
|
const { account, videoChannel } = await db.sequelize.transaction(async t => {
|
2017-10-24 13:41:09 -04:00
|
|
|
const userOptions = {
|
|
|
|
transaction: t,
|
|
|
|
validate: validateUser
|
|
|
|
}
|
|
|
|
|
2017-10-25 10:03:33 -04:00
|
|
|
const userCreated = await user.save(userOptions)
|
2017-11-16 12:40:50 -05:00
|
|
|
const accountCreated = await createLocalAccountWithoutKeys(user.username, user.id, null, t)
|
2017-10-25 10:03:33 -04:00
|
|
|
|
2017-11-14 04:57:56 -05:00
|
|
|
const videoChannelName = `Default ${userCreated.username} channel`
|
2017-10-25 10:03:33 -04:00
|
|
|
const videoChannelInfo = {
|
2017-11-14 04:57:56 -05:00
|
|
|
name: videoChannelName
|
2017-10-25 10:03:33 -04:00
|
|
|
}
|
2017-11-09 11:51:58 -05:00
|
|
|
const videoChannel = await createVideoChannel(videoChannelInfo, accountCreated, t)
|
2017-10-25 10:03:33 -04:00
|
|
|
|
2017-11-10 11:27:49 -05:00
|
|
|
return { account: accountCreated, videoChannel }
|
2017-10-24 13:41:09 -04:00
|
|
|
})
|
2017-10-25 10:03:33 -04:00
|
|
|
|
2017-11-16 12:40:50 -05: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 13:41:09 -04:00
|
|
|
}
|
|
|
|
|
2017-11-16 12:40:50 -05:00
|
|
|
async function createLocalAccountWithoutKeys (name: string, userId: number, applicationId: number, t: Sequelize.Transaction) {
|
2017-11-20 03:43:39 -05:00
|
|
|
const url = getAccountActivityPubUrl(name)
|
2017-11-10 11:27:49 -05:00
|
|
|
|
|
|
|
const accountInstance = db.Account.build({
|
|
|
|
name,
|
|
|
|
url,
|
2017-11-16 12:40:50 -05:00
|
|
|
publicKey: null,
|
|
|
|
privateKey: null,
|
2017-11-10 11:27:49 -05: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 05:00:25 -05:00
|
|
|
serverId: null // It is our server
|
2017-11-10 11:27:49 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
return accountInstance.save({ transaction: t })
|
|
|
|
}
|
|
|
|
|
2017-10-24 13:41:09 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2017-11-10 11:27:49 -05:00
|
|
|
createUserAccountAndChannel,
|
2017-11-16 12:40:50 -05:00
|
|
|
createLocalAccountWithoutKeys
|
2017-10-24 13:41:09 -04:00
|
|
|
}
|