mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
c39d6ad97d
* add uninstall flow * add install flow * small cleanup * smaller-footprint solution * cleanup + make bp start auto * fix interface contract * improve naming * accept version arg * ensure use of shared logger * make installer a field * add plugin decommissioning * add basic error checking * fix api docs * making initialization idempotent * add mutex * fix comment * fix test * add test for decommission * improve existing test * add more test coverage * more tests * change test func to use read lock * refactoring + adding test asserts * improve purging old install flow * improve dupe checking * change log name * skip over dupe scanned * make test assertion more flexible * remove trailing line * fix pointer receiver name * update comment * add context to API * add config flag * add base http api test + fix update functionality * simplify existing check * clean up test * refactor tests based on feedback * add single quotes to errs * use gcmp in tests + fix logo issue * make plugin list testing more flexible * address feedback * fix API test * fix linter * undo preallocate * Update docs/sources/administration/configuration.md Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com> * Update docs/sources/administration/configuration.md Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com> * Update docs/sources/administration/configuration.md Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com> * fix linting issue in test * add docs placeholder * update install notes * Update docs/sources/plugins/marketplace.md Co-authored-by: Marcus Olsson <marcus.olsson@hey.com> * update access wording * add more placeholder docs * add link to more info * PR feedback - improved errors, refactor, lock fix * improve err details * propagate plugin version errors * don't autostart renderer * add H1 * fix imports Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com> Co-authored-by: Marcus Olsson <marcus.olsson@hey.com>
103 lines
2.8 KiB
Go
103 lines
2.8 KiB
Go
package plugins
|
|
|
|
import (
|
|
"net/url"
|
|
"path"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
"github.com/grafana/grafana/pkg/util"
|
|
)
|
|
|
|
type FrontendPluginBase struct {
|
|
PluginBase
|
|
}
|
|
|
|
func (fp *FrontendPluginBase) InitFrontendPlugin(cfg *setting.Cfg) []*PluginStaticRoute {
|
|
var staticRoutes []*PluginStaticRoute
|
|
if isExternalPlugin(fp.PluginDir, cfg) {
|
|
staticRoutes = []*PluginStaticRoute{
|
|
{
|
|
Directory: fp.PluginDir,
|
|
PluginId: fp.Id,
|
|
},
|
|
}
|
|
}
|
|
|
|
fp.handleModuleDefaults(cfg)
|
|
|
|
fp.Info.Logos.Small = getPluginLogoUrl(fp.Type, fp.Info.Logos.Small, fp.BaseUrl)
|
|
fp.Info.Logos.Large = getPluginLogoUrl(fp.Type, fp.Info.Logos.Large, fp.BaseUrl)
|
|
|
|
for i := 0; i < len(fp.Info.Screenshots); i++ {
|
|
fp.Info.Screenshots[i].Path = evalRelativePluginUrlPath(fp.Info.Screenshots[i].Path, fp.BaseUrl, fp.Type)
|
|
}
|
|
|
|
return staticRoutes
|
|
}
|
|
|
|
func getPluginLogoUrl(pluginType, path, baseUrl string) string {
|
|
if path == "" {
|
|
return defaultLogoPath(pluginType)
|
|
}
|
|
|
|
return evalRelativePluginUrlPath(path, baseUrl, pluginType)
|
|
}
|
|
|
|
func defaultLogoPath(pluginType string) string {
|
|
return "public/img/icn-" + pluginType + ".svg"
|
|
}
|
|
|
|
func (fp *FrontendPluginBase) setPathsBasedOnApp(app *AppPlugin, cfg *setting.Cfg) {
|
|
appSubPath := strings.ReplaceAll(strings.Replace(fp.PluginDir, app.PluginDir, "", 1), "\\", "/")
|
|
fp.IncludedInAppId = app.Id
|
|
fp.BaseUrl = app.BaseUrl
|
|
|
|
if isExternalPlugin(app.PluginDir, cfg) {
|
|
fp.Module = util.JoinURLFragments("plugins/"+app.Id, appSubPath) + "/module"
|
|
} else {
|
|
fp.Module = util.JoinURLFragments("app/plugins/app/"+app.Id, appSubPath) + "/module"
|
|
}
|
|
}
|
|
|
|
func (fp *FrontendPluginBase) handleModuleDefaults(cfg *setting.Cfg) {
|
|
if isExternalPlugin(fp.PluginDir, cfg) {
|
|
fp.Module = path.Join("plugins", fp.Id, "module")
|
|
fp.BaseUrl = path.Join("public/plugins", fp.Id)
|
|
return
|
|
}
|
|
|
|
fp.IsCorePlugin = true
|
|
// Previously there was an assumption that the plugin directory
|
|
// should be public/app/plugins/<plugin type>/<plugin id>
|
|
// However this can be an issue if the plugin directory should be renamed to something else
|
|
currentDir := filepath.Base(fp.PluginDir)
|
|
// use path package for the following statements
|
|
// because these are not file paths
|
|
fp.Module = path.Join("app/plugins", fp.Type, currentDir, "module")
|
|
fp.BaseUrl = path.Join("public/app/plugins", fp.Type, currentDir)
|
|
}
|
|
|
|
func isExternalPlugin(pluginDir string, cfg *setting.Cfg) bool {
|
|
return !strings.Contains(pluginDir, cfg.StaticRootPath)
|
|
}
|
|
|
|
func evalRelativePluginUrlPath(pathStr, baseUrl, pluginType string) string {
|
|
if pathStr == "" {
|
|
return ""
|
|
}
|
|
|
|
u, _ := url.Parse(pathStr)
|
|
if u.IsAbs() {
|
|
return pathStr
|
|
}
|
|
|
|
// is set as default or has already been prefixed with base path
|
|
if pathStr == defaultLogoPath(pluginType) || strings.HasPrefix(pathStr, baseUrl) {
|
|
return pathStr
|
|
}
|
|
|
|
return path.Join(baseUrl, pathStr)
|
|
}
|