2019-07-05 07:54:32 -04:00
|
|
|
import * as express from 'express'
|
2019-07-12 05:39:58 -04:00
|
|
|
import { join } from 'path'
|
2021-03-12 09:20:46 -05:00
|
|
|
import { logger } from '@server/helpers/logger'
|
|
|
|
import { optionalAuthenticate } from '@server/middlewares/auth'
|
2020-12-07 08:32:36 -05:00
|
|
|
import { getCompleteLocale, is18nLocale } from '../../shared/core-utils/i18n'
|
2021-03-12 09:20:46 -05:00
|
|
|
import { HttpStatusCode } from '../../shared/core-utils/miscs/http-error-codes'
|
2019-07-12 05:39:58 -04:00
|
|
|
import { PluginType } from '../../shared/models/plugins/plugin.type'
|
2019-07-23 03:48:48 -04:00
|
|
|
import { isTestInstance } from '../helpers/core-utils'
|
2021-03-12 09:20:46 -05:00
|
|
|
import { PLUGIN_GLOBAL_CSS_PATH } from '../initializers/constants'
|
|
|
|
import { PluginManager, RegisteredPlugin } from '../lib/plugins/plugin-manager'
|
|
|
|
import { getExternalAuthValidator, getPluginValidator, pluginStaticDirectoryValidator } from '../middlewares/validators/plugins'
|
|
|
|
import { serveThemeCSSValidator } from '../middlewares/validators/themes'
|
2019-07-23 03:48:48 -04:00
|
|
|
|
|
|
|
const sendFileOptions = {
|
|
|
|
maxAge: '30 days',
|
|
|
|
immutable: !isTestInstance()
|
|
|
|
}
|
2019-07-05 07:54:32 -04:00
|
|
|
|
|
|
|
const pluginsRouter = express.Router()
|
|
|
|
|
2019-07-12 05:39:58 -04:00
|
|
|
pluginsRouter.get('/plugins/global.css',
|
2019-07-08 08:02:03 -04:00
|
|
|
servePluginGlobalCSS
|
2019-07-05 07:54:32 -04:00
|
|
|
)
|
|
|
|
|
2019-07-26 08:44:50 -04:00
|
|
|
pluginsRouter.get('/plugins/translations/:locale.json',
|
|
|
|
getPluginTranslations
|
|
|
|
)
|
|
|
|
|
2020-04-28 08:49:03 -04:00
|
|
|
pluginsRouter.get('/plugins/:pluginName/:pluginVersion/auth/:authName',
|
|
|
|
getPluginValidator(PluginType.PLUGIN),
|
|
|
|
getExternalAuthValidator,
|
|
|
|
handleAuthInPlugin
|
|
|
|
)
|
|
|
|
|
2019-07-12 05:39:58 -04:00
|
|
|
pluginsRouter.get('/plugins/:pluginName/:pluginVersion/static/:staticEndpoint(*)',
|
2020-04-10 09:07:54 -04:00
|
|
|
getPluginValidator(PluginType.PLUGIN),
|
|
|
|
pluginStaticDirectoryValidator,
|
2019-07-05 07:54:32 -04:00
|
|
|
servePluginStaticDirectory
|
|
|
|
)
|
|
|
|
|
2019-07-12 05:39:58 -04:00
|
|
|
pluginsRouter.get('/plugins/:pluginName/:pluginVersion/client-scripts/:staticEndpoint(*)',
|
2020-04-10 09:07:54 -04:00
|
|
|
getPluginValidator(PluginType.PLUGIN),
|
|
|
|
pluginStaticDirectoryValidator,
|
2019-07-05 07:54:32 -04:00
|
|
|
servePluginClientScripts
|
|
|
|
)
|
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
pluginsRouter.use('/plugins/:pluginName/router',
|
|
|
|
getPluginValidator(PluginType.PLUGIN, false),
|
2020-12-04 14:56:48 -05:00
|
|
|
optionalAuthenticate,
|
2020-04-10 09:07:54 -04:00
|
|
|
servePluginCustomRoutes
|
|
|
|
)
|
|
|
|
|
|
|
|
pluginsRouter.use('/plugins/:pluginName/:pluginVersion/router',
|
|
|
|
getPluginValidator(PluginType.PLUGIN),
|
2020-12-04 14:56:48 -05:00
|
|
|
optionalAuthenticate,
|
2020-04-10 09:07:54 -04:00
|
|
|
servePluginCustomRoutes
|
|
|
|
)
|
|
|
|
|
2019-07-12 05:39:58 -04:00
|
|
|
pluginsRouter.get('/themes/:pluginName/:pluginVersion/static/:staticEndpoint(*)',
|
2020-04-10 09:07:54 -04:00
|
|
|
getPluginValidator(PluginType.THEME),
|
|
|
|
pluginStaticDirectoryValidator,
|
2019-07-12 05:39:58 -04:00
|
|
|
servePluginStaticDirectory
|
|
|
|
)
|
|
|
|
|
|
|
|
pluginsRouter.get('/themes/:pluginName/:pluginVersion/client-scripts/:staticEndpoint(*)',
|
2020-04-10 09:07:54 -04:00
|
|
|
getPluginValidator(PluginType.THEME),
|
|
|
|
pluginStaticDirectoryValidator,
|
2019-07-12 05:39:58 -04:00
|
|
|
servePluginClientScripts
|
|
|
|
)
|
|
|
|
|
|
|
|
pluginsRouter.get('/themes/:themeName/:themeVersion/css/:staticEndpoint(*)',
|
|
|
|
serveThemeCSSValidator,
|
|
|
|
serveThemeCSSDirectory
|
|
|
|
)
|
|
|
|
|
2019-07-05 07:54:32 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
pluginsRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-07-08 08:02:03 -04:00
|
|
|
function servePluginGlobalCSS (req: express.Request, res: express.Response) {
|
2019-07-23 03:48:48 -04:00
|
|
|
// Only cache requests that have a ?hash=... query param
|
|
|
|
const globalCSSOptions = req.query.hash
|
|
|
|
? sendFileOptions
|
|
|
|
: {}
|
|
|
|
|
|
|
|
return res.sendFile(PLUGIN_GLOBAL_CSS_PATH, globalCSSOptions)
|
2019-07-08 08:02:03 -04:00
|
|
|
}
|
|
|
|
|
2019-07-26 08:44:50 -04:00
|
|
|
function getPluginTranslations (req: express.Request, res: express.Response) {
|
|
|
|
const locale = req.params.locale
|
|
|
|
|
|
|
|
if (is18nLocale(locale)) {
|
|
|
|
const completeLocale = getCompleteLocale(locale)
|
|
|
|
const json = PluginManager.Instance.getTranslations(completeLocale)
|
|
|
|
|
|
|
|
return res.json(json)
|
|
|
|
}
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
return res.sendStatus(HttpStatusCode.NOT_FOUND_404)
|
2019-07-26 08:44:50 -04:00
|
|
|
}
|
|
|
|
|
2019-07-05 07:54:32 -04:00
|
|
|
function servePluginStaticDirectory (req: express.Request, res: express.Response) {
|
|
|
|
const plugin: RegisteredPlugin = res.locals.registeredPlugin
|
|
|
|
const staticEndpoint = req.params.staticEndpoint
|
|
|
|
|
2019-07-08 08:02:03 -04:00
|
|
|
const [ directory, ...file ] = staticEndpoint.split('/')
|
|
|
|
|
|
|
|
const staticPath = plugin.staticDirs[directory]
|
2020-12-07 08:32:36 -05:00
|
|
|
if (!staticPath) return res.sendStatus(HttpStatusCode.NOT_FOUND_404)
|
2019-07-05 07:54:32 -04:00
|
|
|
|
2019-07-08 08:02:03 -04:00
|
|
|
const filepath = file.join('/')
|
2019-07-23 03:48:48 -04:00
|
|
|
return res.sendFile(join(plugin.path, staticPath, filepath), sendFileOptions)
|
2019-07-05 07:54:32 -04:00
|
|
|
}
|
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
function servePluginCustomRoutes (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
const plugin: RegisteredPlugin = res.locals.registeredPlugin
|
|
|
|
const router = PluginManager.Instance.getRouter(plugin.npmName)
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
if (!router) return res.sendStatus(HttpStatusCode.NOT_FOUND_404)
|
2020-04-10 09:07:54 -04:00
|
|
|
|
|
|
|
return router(req, res, next)
|
|
|
|
}
|
|
|
|
|
2019-07-05 07:54:32 -04:00
|
|
|
function servePluginClientScripts (req: express.Request, res: express.Response) {
|
|
|
|
const plugin: RegisteredPlugin = res.locals.registeredPlugin
|
|
|
|
const staticEndpoint = req.params.staticEndpoint
|
|
|
|
|
2019-07-08 08:02:03 -04:00
|
|
|
const file = plugin.clientScripts[staticEndpoint]
|
2020-12-07 08:32:36 -05:00
|
|
|
if (!file) return res.sendStatus(HttpStatusCode.NOT_FOUND_404)
|
2019-07-08 08:02:03 -04:00
|
|
|
|
2019-07-23 03:48:48 -04:00
|
|
|
return res.sendFile(join(plugin.path, staticEndpoint), sendFileOptions)
|
2019-07-05 07:54:32 -04:00
|
|
|
}
|
2019-07-12 05:39:58 -04:00
|
|
|
|
|
|
|
function serveThemeCSSDirectory (req: express.Request, res: express.Response) {
|
|
|
|
const plugin: RegisteredPlugin = res.locals.registeredPlugin
|
|
|
|
const staticEndpoint = req.params.staticEndpoint
|
|
|
|
|
|
|
|
if (plugin.css.includes(staticEndpoint) === false) {
|
2020-12-07 08:32:36 -05:00
|
|
|
return res.sendStatus(HttpStatusCode.NOT_FOUND_404)
|
2019-07-12 05:39:58 -04:00
|
|
|
}
|
|
|
|
|
2019-07-23 03:48:48 -04:00
|
|
|
return res.sendFile(join(plugin.path, staticEndpoint), sendFileOptions)
|
2019-07-12 05:39:58 -04:00
|
|
|
}
|
2020-04-28 08:49:03 -04:00
|
|
|
|
|
|
|
function handleAuthInPlugin (req: express.Request, res: express.Response) {
|
|
|
|
const authOptions = res.locals.externalAuth
|
|
|
|
|
|
|
|
try {
|
|
|
|
logger.debug('Forwarding auth plugin request in %s of plugin %s.', authOptions.authName, res.locals.registeredPlugin.npmName)
|
|
|
|
authOptions.onAuthRequest(req, res)
|
|
|
|
} catch (err) {
|
2020-04-30 02:47:25 -04:00
|
|
|
logger.error('Forward request error in auth %s of plugin %s.', authOptions.authName, res.locals.registeredPlugin.npmName, { err })
|
2020-04-28 08:49:03 -04:00
|
|
|
}
|
|
|
|
}
|