PeerTube/server/controllers/static.ts

60 lines
1.6 KiB
TypeScript
Raw Normal View History

2022-07-13 11:21:19 +02:00
import { HttpStatusCode } from '@shared/models'
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,
2022-07-13 11:21:19 +02:00
express.static(CONFIG.STORAGE.VIDEOS_DIR, { fallthrough: false }),
handleStaticError
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,
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
)
2019-01-29 08:37:25 +01:00
// HLS
staticRouter.use(
STATIC_PATHS.STREAMING_PLAYLISTS.HLS,
2022-07-13 11:21:19 +02:00
express.static(HLS_STREAMING_PLAYLIST_DIRECTORY, { fallthrough: false }),
handleStaticError
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,
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-07-13 11:21:19 +02:00
// ---------------------------------------------------------------------------
function handleStaticError (err: any, req: express.Request, res: express.Response, next: express.NextFunction) {
const message = err.message || ''
if (message.includes('ENOENT')) {
return res.fail({
status: err.status || HttpStatusCode.INTERNAL_SERVER_ERROR_500,
message: err.message,
type: err.name
})
}
return next(err)
}