2021-08-27 14:32:44 +02:00
|
|
|
import cors from 'cors'
|
|
|
|
import express from 'express'
|
2023-07-31 14:34:36 +02:00
|
|
|
import { readFile } from 'fs/promises'
|
2022-12-02 14:47:21 +01:00
|
|
|
import { join } from 'path'
|
2023-07-31 14:34:36 +02:00
|
|
|
import { injectQueryToPlaylistUrls } from '@server/lib/hls.js'
|
2022-10-12 16:09:02 +02:00
|
|
|
import {
|
|
|
|
asyncMiddleware,
|
|
|
|
ensureCanAccessPrivateVideoHLSFiles,
|
2023-07-11 09:21:13 +02:00
|
|
|
ensureCanAccessVideoPrivateWebVideoFiles,
|
2022-10-12 16:09:02 +02:00
|
|
|
handleStaticError,
|
|
|
|
optionalAuthenticate
|
2023-07-31 14:34:36 +02:00
|
|
|
} from '@server/middlewares/index.js'
|
|
|
|
import { HttpStatusCode } from '@peertube/peertube-models'
|
|
|
|
import { CONFIG } from '../initializers/config.js'
|
|
|
|
import { DIRECTORIES, STATIC_MAX_AGE, STATIC_PATHS } from '../initializers/constants.js'
|
|
|
|
import { buildReinjectVideoFileTokenQuery, doReinjectVideoFileToken } from './shared/m3u8-playlist.js'
|
2017-05-15 22:22:03 +02:00
|
|
|
|
|
|
|
const staticRouter = express.Router()
|
|
|
|
|
2022-07-13 11:13:19 +02:00
|
|
|
// Cors is very important to let other servers access torrent and video files
|
2018-07-17 15:04:54 +02:00
|
|
|
staticRouter.use(cors())
|
|
|
|
|
2022-10-26 16:23:39 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
2023-07-11 09:21:13 +02:00
|
|
|
// Web videos/Classic videos
|
2022-10-26 16:23:39 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2023-07-11 09:21:13 +02:00
|
|
|
const privateWebVideoStaticMiddlewares = CONFIG.STATIC_FILES.PRIVATE_FILES_REQUIRE_AUTH === true
|
|
|
|
? [ optionalAuthenticate, asyncMiddleware(ensureCanAccessVideoPrivateWebVideoFiles) ]
|
2022-10-26 16:23:39 +02:00
|
|
|
: []
|
|
|
|
|
2022-10-12 16:09:02 +02:00
|
|
|
staticRouter.use(
|
2023-07-11 11:39:59 +02:00
|
|
|
[ STATIC_PATHS.PRIVATE_WEB_VIDEOS, STATIC_PATHS.LEGACY_PRIVATE_WEB_VIDEOS ],
|
2023-07-11 09:21:13 +02:00
|
|
|
...privateWebVideoStaticMiddlewares,
|
2024-03-15 15:47:18 +01:00
|
|
|
express.static(DIRECTORIES.WEB_VIDEOS.PRIVATE, { fallthrough: false }),
|
2022-10-12 16:09:02 +02:00
|
|
|
handleStaticError
|
|
|
|
)
|
2017-05-15 22:22:03 +02:00
|
|
|
staticRouter.use(
|
2023-07-11 11:39:59 +02:00
|
|
|
[ STATIC_PATHS.WEB_VIDEOS, STATIC_PATHS.LEGACY_WEB_VIDEOS ],
|
2024-03-15 15:47:18 +01:00
|
|
|
express.static(DIRECTORIES.WEB_VIDEOS.PUBLIC, { fallthrough: false }),
|
2022-07-13 11:21:19 +02:00
|
|
|
handleStaticError
|
2017-05-15 22:22:03 +02:00
|
|
|
)
|
2022-10-12 16:09:02 +02:00
|
|
|
|
2018-12-04 16:02:49 +01:00
|
|
|
staticRouter.use(
|
2018-12-04 17:08:55 +01:00
|
|
|
STATIC_PATHS.REDUNDANCY,
|
2022-07-13 11:21:19 +02:00
|
|
|
express.static(CONFIG.STORAGE.REDUNDANCY_DIR, { fallthrough: false }),
|
|
|
|
handleStaticError
|
2018-12-04 16:02:49 +01:00
|
|
|
)
|
|
|
|
|
2022-10-26 16:23:39 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
2019-01-29 08:37:25 +01:00
|
|
|
// HLS
|
2022-10-26 16:23:39 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
const privateHLSStaticMiddlewares = CONFIG.STATIC_FILES.PRIVATE_FILES_REQUIRE_AUTH === true
|
|
|
|
? [ optionalAuthenticate, asyncMiddleware(ensureCanAccessPrivateVideoHLSFiles) ]
|
|
|
|
: []
|
|
|
|
|
2022-12-02 14:47:21 +01:00
|
|
|
staticRouter.use(
|
|
|
|
STATIC_PATHS.STREAMING_PLAYLISTS.PRIVATE_HLS + ':videoUUID/:playlistName.m3u8',
|
|
|
|
...privateHLSStaticMiddlewares,
|
|
|
|
asyncMiddleware(servePrivateM3U8)
|
|
|
|
)
|
|
|
|
|
2022-10-12 16:09:02 +02:00
|
|
|
staticRouter.use(
|
|
|
|
STATIC_PATHS.STREAMING_PLAYLISTS.PRIVATE_HLS,
|
2022-10-26 16:23:39 +02:00
|
|
|
...privateHLSStaticMiddlewares,
|
2022-10-12 16:09:02 +02:00
|
|
|
express.static(DIRECTORIES.HLS_STREAMING_PLAYLIST.PRIVATE, { fallthrough: false }),
|
|
|
|
handleStaticError
|
|
|
|
)
|
2019-01-29 08:37:25 +01:00
|
|
|
staticRouter.use(
|
2019-03-05 12:00:31 +01:00
|
|
|
STATIC_PATHS.STREAMING_PLAYLISTS.HLS,
|
2022-10-12 16:09:02 +02:00
|
|
|
express.static(DIRECTORIES.HLS_STREAMING_PLAYLIST.PUBLIC, { fallthrough: false }),
|
2022-07-13 11:21:19 +02:00
|
|
|
handleStaticError
|
2019-01-29 08:37:25 +01:00
|
|
|
)
|
|
|
|
|
2023-06-07 08:53:14 +02:00
|
|
|
// FIXME: deprecated in v6, to remove
|
2017-05-15 22:22:03 +02:00
|
|
|
const thumbnailsPhysicalPath = CONFIG.STORAGE.THUMBNAILS_DIR
|
|
|
|
staticRouter.use(
|
|
|
|
STATIC_PATHS.THUMBNAILS,
|
2022-07-13 11:21:19 +02:00
|
|
|
express.static(thumbnailsPhysicalPath, { maxAge: STATIC_MAX_AGE.SERVER, fallthrough: false }),
|
|
|
|
handleStaticError
|
2017-05-15 22:22:03 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
staticRouter
|
|
|
|
}
|
2022-12-02 14:47:21 +01:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
async function servePrivateM3U8 (req: express.Request, res: express.Response) {
|
|
|
|
const path = join(DIRECTORIES.HLS_STREAMING_PLAYLIST.PRIVATE, req.params.videoUUID, req.params.playlistName + '.m3u8')
|
2023-03-07 10:52:20 +01:00
|
|
|
const filename = req.params.playlistName + '.m3u8'
|
2022-12-02 14:47:21 +01:00
|
|
|
|
|
|
|
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)
|
2023-03-07 10:52:20 +01:00
|
|
|
? injectQueryToPlaylistUrls(playlistContent, buildReinjectVideoFileTokenQuery(req, filename.endsWith('master.m3u8')))
|
2022-12-02 14:47:21 +01:00
|
|
|
: playlistContent
|
|
|
|
|
|
|
|
return res.set('content-type', 'application/vnd.apple.mpegurl').send(transformedContent).end()
|
|
|
|
}
|