2017-10-24 12:41:09 -05:00
|
|
|
import { database as db } from '../initializers'
|
|
|
|
import { UserInstance } from '../models'
|
2017-11-09 10:51:58 -06:00
|
|
|
import { addVideoAccountToFriends } from './friends'
|
2017-10-24 12:41:09 -05:00
|
|
|
import { createVideoChannel } from './video-channel'
|
|
|
|
|
2017-11-09 10:51:58 -06:00
|
|
|
async function createUserAccountAndChannel (user: UserInstance, validateUser = true) {
|
2017-10-25 09:03:33 -05:00
|
|
|
const res = await db.sequelize.transaction(async t => {
|
2017-10-24 12:41:09 -05:00
|
|
|
const userOptions = {
|
|
|
|
transaction: t,
|
|
|
|
validate: validateUser
|
|
|
|
}
|
|
|
|
|
2017-10-25 09:03:33 -05:00
|
|
|
const userCreated = await user.save(userOptions)
|
2017-11-09 10:51:58 -06:00
|
|
|
const accountInstance = db.Account.build({
|
2017-10-25 09:03:33 -05:00
|
|
|
name: userCreated.username,
|
|
|
|
podId: null, // It is our pod
|
|
|
|
userId: userCreated.id
|
|
|
|
})
|
|
|
|
|
2017-11-09 10:51:58 -06:00
|
|
|
const accountCreated = await accountInstance.save({ transaction: t })
|
2017-10-25 09:03:33 -05:00
|
|
|
|
2017-11-09 10:51:58 -06:00
|
|
|
const remoteVideoAccount = accountCreated.toAddRemoteJSON()
|
2017-10-25 09:03:33 -05:00
|
|
|
|
|
|
|
// Now we'll add the video channel's meta data to our friends
|
2017-11-09 10:51:58 -06:00
|
|
|
const account = await addVideoAccountToFriends(remoteVideoAccount, t)
|
2017-10-25 09:03:33 -05:00
|
|
|
|
|
|
|
const videoChannelInfo = {
|
|
|
|
name: `Default ${userCreated.username} channel`
|
|
|
|
}
|
2017-11-09 10:51:58 -06:00
|
|
|
const videoChannel = await createVideoChannel(videoChannelInfo, accountCreated, t)
|
2017-10-25 09:03:33 -05:00
|
|
|
|
2017-11-09 10:51:58 -06:00
|
|
|
return { account, videoChannel }
|
2017-10-24 12:41:09 -05:00
|
|
|
})
|
2017-10-25 09:03:33 -05:00
|
|
|
|
|
|
|
return res
|
2017-10-24 12:41:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2017-11-09 10:51:58 -06:00
|
|
|
createUserAccountAndChannel
|
2017-10-24 12:41:09 -05:00
|
|
|
}
|