mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 01:16:31 -06:00
52154b465b
* dsproxy: adds support for url params for plugin routes * docs: fixes after review * pluginproxy: rename Params to URLParams * Update pkg/plugins/app_plugin.go Co-Authored-By: Arve Knudsen <arve.knudsen@gmail.com> * Apply suggestions from code review Co-Authored-By: Diana Payton <52059945+oddlittlebird@users.noreply.github.com> Co-Authored-By: Arve Knudsen <arve.knudsen@gmail.com> * pluginproxy: rename struct Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com> Co-authored-by: Diana Payton <52059945+oddlittlebird@users.noreply.github.com>
114 lines
3.0 KiB
Go
114 lines
3.0 KiB
Go
package plugins
|
|
|
|
import (
|
|
"encoding/json"
|
|
"strings"
|
|
|
|
"github.com/gosimple/slug"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/plugins/backendplugin"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
)
|
|
|
|
type AppPluginCss struct {
|
|
Light string `json:"light"`
|
|
Dark string `json:"dark"`
|
|
}
|
|
|
|
type AppPlugin struct {
|
|
FrontendPluginBase
|
|
Routes []*AppPluginRoute `json:"routes"`
|
|
|
|
FoundChildPlugins []*PluginInclude `json:"-"`
|
|
Pinned bool `json:"-"`
|
|
}
|
|
|
|
// AppPluginRoute describes a plugin route that is defined in
|
|
// the plugin.json file for a plugin.
|
|
type AppPluginRoute struct {
|
|
Path string `json:"path"`
|
|
Method string `json:"method"`
|
|
ReqRole models.RoleType `json:"reqRole"`
|
|
URL string `json:"url"`
|
|
URLParams []AppPluginRouteURLParam `json:"urlParams"`
|
|
Headers []AppPluginRouteHeader `json:"headers"`
|
|
TokenAuth *JwtTokenAuth `json:"tokenAuth"`
|
|
JwtTokenAuth *JwtTokenAuth `json:"jwtTokenAuth"`
|
|
}
|
|
|
|
// AppPluginRouteHeader describes an HTTP header that is forwarded with
|
|
// the proxied request for a plugin route
|
|
type AppPluginRouteHeader struct {
|
|
Name string `json:"name"`
|
|
Content string `json:"content"`
|
|
}
|
|
|
|
// AppPluginRouteURLParam describes query string parameters for
|
|
// a url in a plugin route
|
|
type AppPluginRouteURLParam struct {
|
|
Name string `json:"name"`
|
|
Content string `json:"content"`
|
|
}
|
|
|
|
// JwtTokenAuth struct is both for normal Token Auth and JWT Token Auth with
|
|
// an uploaded JWT file.
|
|
type JwtTokenAuth struct {
|
|
Url string `json:"url"`
|
|
Scopes []string `json:"scopes"`
|
|
Params map[string]string `json:"params"`
|
|
}
|
|
|
|
func (app *AppPlugin) Load(decoder *json.Decoder, pluginDir string, backendPluginManager backendplugin.Manager) error {
|
|
if err := decoder.Decode(app); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := app.registerPlugin(pluginDir); err != nil {
|
|
return err
|
|
}
|
|
|
|
Apps[app.Id] = app
|
|
return nil
|
|
}
|
|
|
|
func (app *AppPlugin) initApp() {
|
|
app.initFrontendPlugin()
|
|
|
|
// check if we have child panels
|
|
for _, panel := range Panels {
|
|
if strings.HasPrefix(panel.PluginDir, app.PluginDir) {
|
|
panel.setPathsBasedOnApp(app)
|
|
app.FoundChildPlugins = append(app.FoundChildPlugins, &PluginInclude{
|
|
Name: panel.Name,
|
|
Id: panel.Id,
|
|
Type: panel.Type,
|
|
})
|
|
}
|
|
}
|
|
|
|
// check if we have child datasources
|
|
for _, ds := range DataSources {
|
|
if strings.HasPrefix(ds.PluginDir, app.PluginDir) {
|
|
ds.setPathsBasedOnApp(app)
|
|
app.FoundChildPlugins = append(app.FoundChildPlugins, &PluginInclude{
|
|
Name: ds.Name,
|
|
Id: ds.Id,
|
|
Type: ds.Type,
|
|
})
|
|
}
|
|
}
|
|
|
|
// slugify pages
|
|
for _, include := range app.Includes {
|
|
if include.Slug == "" {
|
|
include.Slug = slug.Make(include.Name)
|
|
}
|
|
if include.Type == "page" && include.DefaultNav {
|
|
app.DefaultNavUrl = setting.AppSubUrl + "/plugins/" + app.Id + "/page/" + include.Slug
|
|
}
|
|
if include.Type == "dashboard" && include.DefaultNav {
|
|
app.DefaultNavUrl = setting.AppSubUrl + "/dashboard/db/" + include.Slug
|
|
}
|
|
}
|
|
}
|