aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/controllers/live.ts
blob: 81008f120d213cdb5b9975b9c3958d0e4e2a2ea4 (plain) (tree)
1
2
3
4
5
6
7
8
9

                             
                                                      
                                                      
                                               



                                             
         













                                                                              
                                                                          

                
                                                         



                                    
import cors from 'cors'
import express from 'express'
import { mapToJSON } from '@server/helpers/core-utils'
import { LiveSegmentShaStore } from '@server/lib/live'
import { HttpStatusCode } from '@shared/models'

const liveRouter = express.Router()

liveRouter.use('/segments-sha256/:videoUUID',
  cors(),
  getSegmentsSha256
)

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

export {
  liveRouter
}

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

function getSegmentsSha256 (req: express.Request, res: express.Response) {
  const videoUUID = req.params.videoUUID

  const result = LiveSegmentShaStore.Instance.getSegmentsSha256(videoUUID)

  if (!result) {
    return res.status(HttpStatusCode.NOT_FOUND_404).end()
  }

  return res.json(mapToJSON(result))
}