aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/lib/video-channel.ts
blob: 80303fb838c62320daca6f5244517e49bd57cb74 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                      
                                                
                                   
                                           
                                                        
                                                                   
                                                          
 
                                                                                                                              



                                              
                         


                                                              

                                                                               

                                    

                                                              

                                                                          
 
                                                



                            
                                                                                                            
       
                                                                                     



                                                                 
                                                                                                         

             




                                                                              

                                
 
import * as Sequelize from 'sequelize'

import { database as db } from '../initializers'
import { logger } from '../helpers'
import { AccountInstance } from '../models'
import { VideoChannelCreate } from '../../shared/models'
import { sendCreateVideoChannel } from './activitypub/send-request'
import { getActivityPubUrl } from '../helpers/activitypub'

async function createVideoChannel (videoChannelInfo: VideoChannelCreate, account: AccountInstance, t: Sequelize.Transaction) {
  const videoChannelData = {
    name: videoChannelInfo.name,
    description: videoChannelInfo.description,
    remote: false,
    accountId: account.id
  }

  const videoChannel = db.VideoChannel.build(videoChannelData)
  videoChannel.set('url', getActivityPubUrl('videoChannel', videoChannel.uuid))

  const options = { transaction: t }

  const videoChannelCreated = await videoChannel.save(options)

  // Do not forget to add Account information to the created video channel
  videoChannelCreated.Account = account

  sendCreateVideoChannel(videoChannelCreated, t)

  return videoChannelCreated
}

async function fetchVideoChannelByHostAndUUID (serverHost: string, uuid: string, t: Sequelize.Transaction) {
  try {
    const videoChannel = await db.VideoChannel.loadByHostAndUUID(serverHost, uuid, t)
    if (!videoChannel) throw new Error('Video channel not found')

    return videoChannel
  } catch (err) {
    logger.error('Cannot load video channel from host and uuid.', { error: err.stack, serverHost, uuid })
    throw err
  }
}

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

export {
  createVideoChannel,
  fetchVideoChannelByHostAndUUID
}