aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/video-channel.ts
blob: 2241799737b8c80d97be7d44e4a0f2df4e9c8b07 (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
import * as Sequelize from 'sequelize'

import { addVideoChannelToFriends } from './friends'
import { database as db } from '../initializers'
import { AuthorInstance } from '../models'
import { VideoChannelCreate } from '../../shared/models'

function createVideoChannel (videoChannelInfo: VideoChannelCreate, author: AuthorInstance, t: Sequelize.Transaction) {
  let videoChannelUUID = ''

  const videoChannelData = {
    name: videoChannelInfo.name,
    description: videoChannelInfo.description,
    remote: false,
    authorId: author.id
  }

  const videoChannel = db.VideoChannel.build(videoChannelData)
  const options = { transaction: t }

  return videoChannel.save(options)
    .then(videoChannelCreated => {
      // Do not forget to add Author information to the created video channel
      videoChannelCreated.Author = author
      videoChannelUUID = videoChannelCreated.uuid

      return videoChannelCreated
    })
    .then(videoChannel => {
      const remoteVideoChannel = videoChannel.toAddRemoteJSON()

      // Now we'll add the video channel's meta data to our friends
      return addVideoChannelToFriends(remoteVideoChannel, t)
    })
    .then(() => videoChannelUUID) // Return video channel UUID
}

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

export {
  createVideoChannel
}