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