X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fcontrollers%2Fstatic.ts;h=52e48267f04f57d7ec7e3a691a8f073b7ab05f86;hb=cde3d90ded5debb24281a444eabb720b721e5600;hp=33aed89279a216a4549e4fa0e36d2e5e07070c0e;hpb=3fd3ab2d34d512b160a5e6084d7609be7b4f4452;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/controllers/static.ts b/server/controllers/static.ts index 33aed8927..52e48267f 100644 --- a/server/controllers/static.ts +++ b/server/controllers/static.ts @@ -1,45 +1,83 @@ -import * as express from 'express' -import * as cors from 'cors' +import cors from 'cors' +import express from 'express' +import { readFile } from 'fs-extra' +import { join } from 'path' +import { injectQueryToPlaylistUrls } from '@server/lib/hls' import { - CONFIG, - STATIC_MAX_AGE, - STATIC_PATHS -} from '../initializers' -import { VideosPreviewCache } from '../lib' -import { asyncMiddleware } from '../middlewares' + asyncMiddleware, + ensureCanAccessPrivateVideoHLSFiles, + ensureCanAccessVideoPrivateWebTorrentFiles, + 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() -/* - Cors is very important to let other servers access torrent and video files -*/ +// Cors is very important to let other servers access torrent and video files +staticRouter.use(cors()) + +// --------------------------------------------------------------------------- +// WebTorrent/Classic videos +// --------------------------------------------------------------------------- + +const privateWebTorrentStaticMiddlewares = CONFIG.STATIC_FILES.PRIVATE_FILES_REQUIRE_AUTH === true + ? [ optionalAuthenticate, asyncMiddleware(ensureCanAccessVideoPrivateWebTorrentFiles) ] + : [] -const torrentsPhysicalPath = CONFIG.STORAGE.TORRENTS_DIR staticRouter.use( - STATIC_PATHS.TORRENTS, - cors(), - express.static(torrentsPhysicalPath, { maxAge: 0 }) // Don't cache because we could regenerate the torrent file + STATIC_PATHS.PRIVATE_WEBSEED, + ...privateWebTorrentStaticMiddlewares, + express.static(DIRECTORIES.VIDEOS.PRIVATE, { fallthrough: false }), + handleStaticError ) - -// Videos path for webseeding -const videosPhysicalPath = CONFIG.STORAGE.VIDEOS_DIR staticRouter.use( STATIC_PATHS.WEBSEED, - cors(), - express.static(videosPhysicalPath, { maxAge: STATIC_MAX_AGE }) + express.static(DIRECTORIES.VIDEOS.PUBLIC, { fallthrough: false }), + handleStaticError ) -// Thumbnails path for express -const thumbnailsPhysicalPath = CONFIG.STORAGE.THUMBNAILS_DIR staticRouter.use( - STATIC_PATHS.THUMBNAILS, - express.static(thumbnailsPhysicalPath, { maxAge: STATIC_MAX_AGE }) + STATIC_PATHS.REDUNDANCY, + express.static(CONFIG.STORAGE.REDUNDANCY_DIR, { fallthrough: false }), + handleStaticError ) -// Video previews path for express +// --------------------------------------------------------------------------- +// HLS +// --------------------------------------------------------------------------- + +const privateHLSStaticMiddlewares = CONFIG.STATIC_FILES.PRIVATE_FILES_REQUIRE_AUTH === true + ? [ optionalAuthenticate, asyncMiddleware(ensureCanAccessPrivateVideoHLSFiles) ] + : [] + staticRouter.use( - STATIC_PATHS.PREVIEWS + ':uuid.jpg', - asyncMiddleware(getPreview) + STATIC_PATHS.STREAMING_PLAYLISTS.PRIVATE_HLS + ':videoUUID/:playlistName.m3u8', + ...privateHLSStaticMiddlewares, + asyncMiddleware(servePrivateM3U8) +) + +staticRouter.use( + STATIC_PATHS.STREAMING_PLAYLISTS.PRIVATE_HLS, + ...privateHLSStaticMiddlewares, + express.static(DIRECTORIES.HLS_STREAMING_PLAYLIST.PRIVATE, { fallthrough: false }), + handleStaticError +) +staticRouter.use( + STATIC_PATHS.STREAMING_PLAYLISTS.HLS, + express.static(DIRECTORIES.HLS_STREAMING_PLAYLIST.PUBLIC, { fallthrough: false }), + handleStaticError +) + +// Thumbnails path for express +const thumbnailsPhysicalPath = CONFIG.STORAGE.THUMBNAILS_DIR +staticRouter.use( + STATIC_PATHS.THUMBNAILS, + express.static(thumbnailsPhysicalPath, { maxAge: STATIC_MAX_AGE.SERVER, fallthrough: false }), + handleStaticError ) // --------------------------------------------------------------------------- @@ -50,9 +88,28 @@ export { // --------------------------------------------------------------------------- -async function getPreview (req: express.Request, res: express.Response, next: express.NextFunction) { - const path = await VideosPreviewCache.Instance.getPreviewPath(req.params.uuid) - if (!path) return res.sendStatus(404) +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.sendFile(path, { maxAge: STATIC_MAX_AGE }) + return res.set('content-type', 'application/vnd.apple.mpegurl').send(transformedContent).end() }