aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/middlewares/validators/shared/video-channels.ts
blob: bed9f5dbe7d2109d3a5209ff5dba3599ecbe99f2 (plain) (tree)
1
2
3
4
5
6
7
8
9
                             
                                                                      
                                                                   
                                               
 
                                                                            
                                                                          
 
                                                    

 
                                                                                                  

                                                                                                   
                                                    




                                                                              



                                   
                                                                                                       
                      



                                           




                                        
 
import express from 'express'
import { VideoChannelModel } from '@server/models/video/video-channel'
import { MChannelBannerAccountDefault } from '@server/types/models'
import { HttpStatusCode } from '@shared/models'

async function doesVideoChannelIdExist (id: number, res: express.Response) {
  const videoChannel = await VideoChannelModel.loadAndPopulateAccount(+id)

  return processVideoChannelExist(videoChannel, res)
}

async function doesVideoChannelNameWithHostExist (nameWithDomain: string, res: express.Response) {
  const videoChannel = await VideoChannelModel.loadByNameWithHostAndPopulateAccount(nameWithDomain)

  return processVideoChannelExist(videoChannel, res)
}

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

export {
  doesVideoChannelIdExist,
  doesVideoChannelNameWithHostExist
}

function processVideoChannelExist (videoChannel: MChannelBannerAccountDefault, res: express.Response) {
  if (!videoChannel) {
    res.fail({
      status: HttpStatusCode.NOT_FOUND_404,
      message: 'Video channel not found'
    })
    return false
  }

  res.locals.videoChannel = videoChannel
  return true
}