aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/user.ts
blob: 8609e72d8ea1611b86347719f2e8b53544810e61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { database as db } from '../initializers'
import { UserInstance } from '../models'
import { addVideoAuthorToFriends } from './friends'
import { createVideoChannel } from './video-channel'

function createUserAuthorAndChannel (user: UserInstance, validateUser = true) {
  return db.sequelize.transaction(t => {
    const userOptions = {
      transaction: t,
      validate: validateUser
    }

    return user.save(userOptions)
      .then(user => {
        const author = db.Author.build({
          name: user.username,
          podId: null, // It is our pod
          userId: user.id
        })

        return author.save({ transaction: t })
          .then(author => ({ author, user }))
      })
      .then(({ author, user }) => {
        const remoteVideoAuthor = author.toAddRemoteJSON()

        // Now we'll add the video channel's meta data to our friends
        return addVideoAuthorToFriends(remoteVideoAuthor, t)
          .then(() => ({ author, user }))
      })
      .then(({ author, user }) => {
        const videoChannelInfo = {
          name: `Default ${user.username} channel`
        }

        return createVideoChannel(videoChannelInfo, author, t)
          .then(videoChannel => ({ author, user, videoChannel }))
      })
  })
}

// ---------------------------------------------------------------------------

export {
  createUserAuthorAndChannel
}