PeerTube/server/lib/user.ts

43 lines
1.2 KiB
TypeScript
Raw Normal View History

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