aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/plugins.ts
blob: a6705d9c7c803550110342b5a2a908bbb60e84aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import * as express from 'express'
import { PLUGIN_GLOBAL_CSS_PATH } from '../initializers/constants'
import { join } from 'path'
import { RegisteredPlugin } from '../lib/plugins/plugin-manager'
import { servePluginStaticDirectoryValidator } from '../middlewares/validators/plugins'

const pluginsRouter = express.Router()

pluginsRouter.get('/global.css',
  express.static(PLUGIN_GLOBAL_CSS_PATH, { fallthrough: false })
)

pluginsRouter.get('/:pluginName/:pluginVersion/statics/:staticEndpoint',
  servePluginStaticDirectoryValidator,
  servePluginStaticDirectory
)

pluginsRouter.get('/:pluginName/:pluginVersion/client-scripts/:staticEndpoint',
  servePluginStaticDirectoryValidator,
  servePluginClientScripts
)

// ---------------------------------------------------------------------------

export {
  pluginsRouter
}

// ---------------------------------------------------------------------------

function servePluginStaticDirectory (req: express.Request, res: express.Response) {
  const plugin: RegisteredPlugin = res.locals.registeredPlugin
  const staticEndpoint = req.params.staticEndpoint

  const staticPath = plugin.staticDirs[staticEndpoint]
  if (!staticPath) {
    return res.sendStatus(404)
  }

  return express.static(join(plugin.path, staticPath), { fallthrough: false })
}

function servePluginClientScripts (req: express.Request, res: express.Response) {
  const plugin: RegisteredPlugin = res.locals.registeredPlugin
  const staticEndpoint = req.params.staticEndpoint

  return express.static(join(plugin.path, staticEndpoint), { fallthrough: false })
}