]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/controllers/live.ts
Use different p2p policy for embeds and webapp
[github/Chocobozzz/PeerTube.git] / server / controllers / live.ts
1 import cors from 'cors'
2 import express from 'express'
3 import { mapToJSON } from '@server/helpers/core-utils'
4 import { LiveSegmentShaStore } from '@server/lib/live'
5 import { HttpStatusCode } from '@shared/models'
6
7 const liveRouter = express.Router()
8
9 liveRouter.use('/segments-sha256/:videoUUID',
10 cors(),
11 getSegmentsSha256
12 )
13
14 // ---------------------------------------------------------------------------
15
16 export {
17 liveRouter
18 }
19
20 // ---------------------------------------------------------------------------
21
22 function getSegmentsSha256 (req: express.Request, res: express.Response) {
23 const videoUUID = req.params.videoUUID
24
25 const result = LiveSegmentShaStore.Instance.getSegmentsSha256(videoUUID)
26
27 if (!result) {
28 return res.status(HttpStatusCode.NOT_FOUND_404).end()
29 }
30
31 return res.json(mapToJSON(result))
32 }