2017-11-10 17:27:49 +01:00
|
|
|
import * as Sequelize from 'sequelize'
|
|
|
|
import { getActivityPubUrl } from '../helpers/activitypub'
|
|
|
|
import { createPrivateAndPublicKeys } from '../helpers/peertube-crypto'
|
2017-10-24 19:41:09 +02:00
|
|
|
import { database as db } from '../initializers'
|
2017-11-10 17:27:49 +01:00
|
|
|
import { CONFIG } from '../initializers/constants'
|
2017-10-24 19:41:09 +02:00
|
|
|
import { UserInstance } from '../models'
|
|
|
|
import { createVideoChannel } from './video-channel'
|
|
|
|
|
2017-11-09 17:51:58 +01:00
|
|
|
async function createUserAccountAndChannel (user: UserInstance, validateUser = true) {
|
2017-10-25 16:03:33 +02:00
|
|
|
const res = await db.sequelize.transaction(async t => {
|
2017-10-24 19:41:09 +02:00
|
|
|
const userOptions = {
|
|
|
|
transaction: t,
|
|
|
|
validate: validateUser
|
|
|
|
}
|
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
const userCreated = await user.save(userOptions)
|
2017-11-10 17:27:49 +01:00
|
|
|
const accountCreated = await createLocalAccount(user.username, user.id, null, t)
|
2017-10-25 16:03:33 +02:00
|
|
|
|
2017-11-14 10:57:56 +01:00
|
|
|
const videoChannelName = `Default ${userCreated.username} channel`
|
2017-10-25 16:03:33 +02:00
|
|
|
const videoChannelInfo = {
|
2017-11-14 10:57:56 +01:00
|
|
|
name: videoChannelName
|
2017-10-25 16:03:33 +02:00
|
|
|
}
|
2017-11-09 17:51:58 +01:00
|
|
|
const videoChannel = await createVideoChannel(videoChannelInfo, accountCreated, t)
|
2017-10-25 16:03:33 +02:00
|
|
|
|
2017-11-10 17:27:49 +01:00
|
|
|
return { account: accountCreated, videoChannel }
|
2017-10-24 19:41:09 +02:00
|
|
|
})
|
2017-10-25 16:03:33 +02:00
|
|
|
|
|
|
|
return res
|
2017-10-24 19:41:09 +02:00
|
|
|
}
|
|
|
|
|
2017-11-10 17:27:49 +01:00
|
|
|
async function createLocalAccount (name: string, userId: number, applicationId: number, t: Sequelize.Transaction) {
|
|
|
|
const { publicKey, privateKey } = await createPrivateAndPublicKeys()
|
|
|
|
const url = getActivityPubUrl('account', name)
|
|
|
|
|
|
|
|
const accountInstance = db.Account.build({
|
|
|
|
name,
|
|
|
|
url,
|
|
|
|
publicKey,
|
|
|
|
privateKey,
|
|
|
|
followersCount: 0,
|
|
|
|
followingCount: 0,
|
|
|
|
inboxUrl: url + '/inbox',
|
|
|
|
outboxUrl: url + '/outbox',
|
|
|
|
sharedInboxUrl: CONFIG.WEBSERVER.URL + '/inbox',
|
|
|
|
followersUrl: url + '/followers',
|
|
|
|
followingUrl: url + '/following',
|
|
|
|
userId,
|
|
|
|
applicationId,
|
|
|
|
podId: null // It is our pod
|
|
|
|
})
|
|
|
|
|
|
|
|
return accountInstance.save({ transaction: t })
|
|
|
|
}
|
|
|
|
|
2017-10-24 19:41:09 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2017-11-10 17:27:49 +01:00
|
|
|
createUserAccountAndChannel,
|
|
|
|
createLocalAccount
|
2017-10-24 19:41:09 +02:00
|
|
|
}
|