PeerTube/server/controllers/static.ts

39 lines
1.2 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import cors from 'cors'
import express from 'express'
2022-07-13 11:13:19 +02:00
import { CONFIG } from '../initializers/config'
import { HLS_STREAMING_PLAYLIST_DIRECTORY, STATIC_MAX_AGE, STATIC_PATHS } from '../initializers/constants'
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())
// Videos path for webseed
2017-05-15 22:22:03 +02:00
staticRouter.use(
STATIC_PATHS.WEBSEED,
2018-12-04 17:08:55 +01:00
express.static(CONFIG.STORAGE.VIDEOS_DIR, { fallthrough: false }) // 404 because we don't have this video
2017-05-15 22:22:03 +02:00
)
2018-12-04 16:02:49 +01:00
staticRouter.use(
2018-12-04 17:08:55 +01:00
STATIC_PATHS.REDUNDANCY,
express.static(CONFIG.STORAGE.REDUNDANCY_DIR, { fallthrough: false }) // 404 because we don't have this video
2018-12-04 16:02:49 +01:00
)
2019-01-29 08:37:25 +01:00
// HLS
staticRouter.use(
STATIC_PATHS.STREAMING_PLAYLISTS.HLS,
express.static(HLS_STREAMING_PLAYLIST_DIRECTORY, { fallthrough: false }) // 404 if the file does not exist
2019-01-29 08:37:25 +01:00
)
2017-05-15 22:22:03 +02:00
// Thumbnails path for express
const thumbnailsPhysicalPath = CONFIG.STORAGE.THUMBNAILS_DIR
staticRouter.use(
STATIC_PATHS.THUMBNAILS,
2019-07-29 15:20:36 +02:00
express.static(thumbnailsPhysicalPath, { maxAge: STATIC_MAX_AGE.SERVER, fallthrough: false }) // 404 if the file does not exist
2017-05-15 22:22:03 +02:00
)
// ---------------------------------------------------------------------------
export {
staticRouter
}