diff options
author | Chocobozzz <me@florianbigard.com> | 2019-07-05 13:54:32 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2019-07-24 10:58:16 +0200 |
commit | 345da516fae80f24c90c2196e96393b489af2243 (patch) | |
tree | 64d72d25a531626c1d4a6337460dae4e32386f2a /server/controllers/plugins.ts | |
parent | 297067399db2bf7505561d67667ca0d559a8e42b (diff) | |
download | PeerTube-345da516fae80f24c90c2196e96393b489af2243.tar.gz PeerTube-345da516fae80f24c90c2196e96393b489af2243.tar.zst PeerTube-345da516fae80f24c90c2196e96393b489af2243.zip |
WIP plugins: add ability to register plugins
Diffstat (limited to 'server/controllers/plugins.ts')
-rw-r--r-- | server/controllers/plugins.ts | 48 |
1 files changed, 48 insertions, 0 deletions
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 @@ | |||
1 | import * as express from 'express' | ||
2 | import { PLUGIN_GLOBAL_CSS_PATH } from '../initializers/constants' | ||
3 | import { join } from 'path' | ||
4 | import { RegisteredPlugin } from '../lib/plugins/plugin-manager' | ||
5 | import { servePluginStaticDirectoryValidator } from '../middlewares/validators/plugins' | ||
6 | |||
7 | const pluginsRouter = express.Router() | ||
8 | |||
9 | pluginsRouter.get('/global.css', | ||
10 | express.static(PLUGIN_GLOBAL_CSS_PATH, { fallthrough: false }) | ||
11 | ) | ||
12 | |||
13 | pluginsRouter.get('/:pluginName/:pluginVersion/statics/:staticEndpoint', | ||
14 | servePluginStaticDirectoryValidator, | ||
15 | servePluginStaticDirectory | ||
16 | ) | ||
17 | |||
18 | pluginsRouter.get('/:pluginName/:pluginVersion/client-scripts/:staticEndpoint', | ||
19 | servePluginStaticDirectoryValidator, | ||
20 | servePluginClientScripts | ||
21 | ) | ||
22 | |||
23 | // --------------------------------------------------------------------------- | ||
24 | |||
25 | export { | ||
26 | pluginsRouter | ||
27 | } | ||
28 | |||
29 | // --------------------------------------------------------------------------- | ||
30 | |||
31 | function 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 | |||
43 | function 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 | } | ||