aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers
diff options
context:
space:
mode:
Diffstat (limited to 'server/controllers')
-rw-r--r--server/controllers/index.ts2
-rw-r--r--server/controllers/plugins.ts48
-rw-r--r--server/controllers/themes.ts28
3 files changed, 78 insertions, 0 deletions
diff --git a/server/controllers/index.ts b/server/controllers/index.ts
index a88a03c79..869546dc7 100644
--- a/server/controllers/index.ts
+++ b/server/controllers/index.ts
@@ -7,3 +7,5 @@ export * from './static'
7export * from './webfinger' 7export * from './webfinger'
8export * from './tracker' 8export * from './tracker'
9export * from './bots' 9export * from './bots'
10export * from './plugins'
11export * from './themes'
diff --git a/server/controllers/plugins.ts b/server/controllers/plugins.ts
new file mode 100644
index 000000000..a6705d9c7
--- /dev/null
+++ b/server/controllers/plugins.ts
@@ -0,0 +1,48 @@
1import * as express from 'express'
2import { PLUGIN_GLOBAL_CSS_PATH } from '../initializers/constants'
3import { join } from 'path'
4import { RegisteredPlugin } from '../lib/plugins/plugin-manager'
5import { servePluginStaticDirectoryValidator } from '../middlewares/validators/plugins'
6
7const pluginsRouter = express.Router()
8
9pluginsRouter.get('/global.css',
10 express.static(PLUGIN_GLOBAL_CSS_PATH, { fallthrough: false })
11)
12
13pluginsRouter.get('/:pluginName/:pluginVersion/statics/:staticEndpoint',
14 servePluginStaticDirectoryValidator,
15 servePluginStaticDirectory
16)
17
18pluginsRouter.get('/:pluginName/:pluginVersion/client-scripts/:staticEndpoint',
19 servePluginStaticDirectoryValidator,
20 servePluginClientScripts
21)
22
23// ---------------------------------------------------------------------------
24
25export {
26 pluginsRouter
27}
28
29// ---------------------------------------------------------------------------
30
31function servePluginStaticDirectory (req: express.Request, res: express.Response) {
32 const plugin: RegisteredPlugin = res.locals.registeredPlugin
33 const staticEndpoint = req.params.staticEndpoint
34
35 const staticPath = plugin.staticDirs[staticEndpoint]
36 if (!staticPath) {
37 return res.sendStatus(404)
38 }
39
40 return express.static(join(plugin.path, staticPath), { fallthrough: false })
41}
42
43function servePluginClientScripts (req: express.Request, res: express.Response) {
44 const plugin: RegisteredPlugin = res.locals.registeredPlugin
45 const staticEndpoint = req.params.staticEndpoint
46
47 return express.static(join(plugin.path, staticEndpoint), { fallthrough: false })
48}
diff --git a/server/controllers/themes.ts b/server/controllers/themes.ts
new file mode 100644
index 000000000..20e7062d0
--- /dev/null
+++ b/server/controllers/themes.ts
@@ -0,0 +1,28 @@
1import * as express from 'express'
2import { PLUGIN_GLOBAL_CSS_PATH } from '../initializers/constants'
3import { join } from 'path'
4import { RegisteredPlugin } from '../lib/plugins/plugin-manager'
5import { servePluginStaticDirectoryValidator } from '../middlewares/validators/plugins'
6import { serveThemeCSSValidator } from '../middlewares/validators/themes'
7
8const themesRouter = express.Router()
9
10themesRouter.get('/:themeName/:themeVersion/css/:staticEndpoint',
11 serveThemeCSSValidator,
12 serveThemeCSSDirectory
13)
14
15// ---------------------------------------------------------------------------
16
17export {
18 themesRouter
19}
20
21// ---------------------------------------------------------------------------
22
23function serveThemeCSSDirectory (req: express.Request, res: express.Response) {
24 const plugin: RegisteredPlugin = res.locals.registeredPlugin
25 const staticEndpoint = req.params.staticEndpoint
26
27 return express.static(join(plugin.path, staticEndpoint), { fallthrough: false })
28}