PeerTube/server/controllers/live.ts

33 lines
826 B
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import cors from 'cors'
import express from 'express'
import { mapToJSON } from '@server/helpers/core-utils'
2021-06-16 15:14:41 +02:00
import { LiveSegmentShaStore } from '@server/lib/live'
2021-07-16 10:42:24 +02:00
import { HttpStatusCode } from '@shared/models'
const liveRouter = express.Router()
liveRouter.use('/segments-sha256/:videoUUID',
2020-11-27 17:09:36 +01:00
cors(),
getSegmentsSha256
)
// ---------------------------------------------------------------------------
export {
liveRouter
}
// ---------------------------------------------------------------------------
function getSegmentsSha256 (req: express.Request, res: express.Response) {
const videoUUID = req.params.videoUUID
2021-06-16 15:14:41 +02:00
const result = LiveSegmentShaStore.Instance.getSegmentsSha256(videoUUID)
if (!result) {
return res.status(HttpStatusCode.NOT_FOUND_404).end()
}
return res.json(mapToJSON(result))
}