mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 19:42:24 +02:00
Support reinjecting token in private m3u8 playlist
This commit is contained in:
parent
04509c4325
commit
71e3e879c0
22 changed files with 391 additions and 48 deletions
|
@ -1,5 +1,8 @@
|
|||
import cors from 'cors'
|
||||
import express from 'express'
|
||||
import { readFile } from 'fs-extra'
|
||||
import { join } from 'path'
|
||||
import { injectQueryToPlaylistUrls } from '@server/lib/hls'
|
||||
import {
|
||||
asyncMiddleware,
|
||||
ensureCanAccessPrivateVideoHLSFiles,
|
||||
|
@ -7,8 +10,10 @@ import {
|
|||
handleStaticError,
|
||||
optionalAuthenticate
|
||||
} from '@server/middlewares'
|
||||
import { HttpStatusCode } from '@shared/models'
|
||||
import { CONFIG } from '../initializers/config'
|
||||
import { DIRECTORIES, STATIC_MAX_AGE, STATIC_PATHS } from '../initializers/constants'
|
||||
import { buildReinjectVideoFileTokenQuery, doReinjectVideoFileToken } from './shared/m3u8-playlist'
|
||||
|
||||
const staticRouter = express.Router()
|
||||
|
||||
|
@ -49,6 +54,12 @@ const privateHLSStaticMiddlewares = CONFIG.STATIC_FILES.PRIVATE_FILES_REQUIRE_AU
|
|||
? [ optionalAuthenticate, asyncMiddleware(ensureCanAccessPrivateVideoHLSFiles) ]
|
||||
: []
|
||||
|
||||
staticRouter.use(
|
||||
STATIC_PATHS.STREAMING_PLAYLISTS.PRIVATE_HLS + ':videoUUID/:playlistName.m3u8',
|
||||
...privateHLSStaticMiddlewares,
|
||||
asyncMiddleware(servePrivateM3U8)
|
||||
)
|
||||
|
||||
staticRouter.use(
|
||||
STATIC_PATHS.STREAMING_PLAYLISTS.PRIVATE_HLS,
|
||||
...privateHLSStaticMiddlewares,
|
||||
|
@ -74,3 +85,31 @@ staticRouter.use(
|
|||
export {
|
||||
staticRouter
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
async function servePrivateM3U8 (req: express.Request, res: express.Response) {
|
||||
const path = join(DIRECTORIES.HLS_STREAMING_PLAYLIST.PRIVATE, req.params.videoUUID, req.params.playlistName + '.m3u8')
|
||||
|
||||
let playlistContent: string
|
||||
|
||||
try {
|
||||
playlistContent = await readFile(path, 'utf-8')
|
||||
} catch (err) {
|
||||
if (err.message.includes('ENOENT')) {
|
||||
return res.fail({
|
||||
status: HttpStatusCode.NOT_FOUND_404,
|
||||
message: 'File not found'
|
||||
})
|
||||
}
|
||||
|
||||
throw err
|
||||
}
|
||||
|
||||
// Inject token in playlist so players that cannot alter the HTTP request can still watch the video
|
||||
const transformedContent = doReinjectVideoFileToken(req)
|
||||
? injectQueryToPlaylistUrls(playlistContent, buildReinjectVideoFileTokenQuery(req))
|
||||
: playlistContent
|
||||
|
||||
return res.set('content-type', 'application/vnd.apple.mpegurl').send(transformedContent).end()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue