2019-07-05 13:54:32 +02:00
|
|
|
import * as express from 'express'
|
|
|
|
import { join } from 'path'
|
|
|
|
import { RegisteredPlugin } from '../lib/plugins/plugin-manager'
|
|
|
|
import { serveThemeCSSValidator } from '../middlewares/validators/themes'
|
|
|
|
|
|
|
|
const themesRouter = express.Router()
|
|
|
|
|
2019-07-10 14:06:19 +02:00
|
|
|
themesRouter.get('/:themeName/:themeVersion/css/:staticEndpoint(*)',
|
2019-07-05 13:54:32 +02:00
|
|
|
serveThemeCSSValidator,
|
|
|
|
serveThemeCSSDirectory
|
|
|
|
)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
themesRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function serveThemeCSSDirectory (req: express.Request, res: express.Response) {
|
|
|
|
const plugin: RegisteredPlugin = res.locals.registeredPlugin
|
|
|
|
const staticEndpoint = req.params.staticEndpoint
|
|
|
|
|
2019-07-10 14:06:19 +02:00
|
|
|
if (plugin.css.includes(staticEndpoint) === false) {
|
|
|
|
return res.sendStatus(404)
|
|
|
|
}
|
|
|
|
|
|
|
|
return res.sendFile(join(plugin.path, staticEndpoint))
|
2019-07-05 13:54:32 +02:00
|
|
|
}
|