| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- package plugins
- import (
- "encoding/json"
- "errors"
- "fmt"
- "strings"
- m "github.com/grafana/grafana/pkg/models"
- "github.com/grafana/grafana/pkg/setting"
- )
- var (
- PluginTypeApp = "app"
- PluginTypeDatasource = "datasource"
- PluginTypePanel = "panel"
- PluginTypeDashboard = "dashboard"
- )
- type PluginState string
- var (
- PluginStateAlpha PluginState = "alpha"
- PluginStateBeta PluginState = "beta"
- )
- type PluginNotFoundError struct {
- PluginId string
- }
- func (e PluginNotFoundError) Error() string {
- return fmt.Sprintf("Plugin with id %s not found", e.PluginId)
- }
- type PluginLoader interface {
- Load(decoder *json.Decoder, pluginDir string) error
- }
- type PluginBase struct {
- Type string `json:"type"`
- Name string `json:"name"`
- Id string `json:"id"`
- Info PluginInfo `json:"info"`
- Dependencies PluginDependencies `json:"dependencies"`
- Includes []*PluginInclude `json:"includes"`
- Module string `json:"module"`
- BaseUrl string `json:"baseUrl"`
- Category string `json:"category"`
- HideFromList bool `json:"hideFromList,omitempty"`
- Preload bool `json:"preload"`
- State PluginState `json:"state,omitempty"`
- IncludedInAppId string `json:"-"`
- PluginDir string `json:"-"`
- DefaultNavUrl string `json:"-"`
- IsCorePlugin bool `json:"-"`
- GrafanaNetVersion string `json:"-"`
- GrafanaNetHasUpdate bool `json:"-"`
- }
- func (pb *PluginBase) registerPlugin(pluginDir string) error {
- if _, exists := Plugins[pb.Id]; exists {
- return errors.New("Plugin with same id already exists")
- }
- if !strings.HasPrefix(pluginDir, setting.StaticRootPath) {
- plog.Info("Registering plugin", "name", pb.Name)
- }
- if len(pb.Dependencies.Plugins) == 0 {
- pb.Dependencies.Plugins = []PluginDependencyItem{}
- }
- if pb.Dependencies.GrafanaVersion == "" {
- pb.Dependencies.GrafanaVersion = "*"
- }
- for _, include := range pb.Includes {
- if include.Role == "" {
- include.Role = m.ROLE_VIEWER
- }
- }
- pb.PluginDir = pluginDir
- Plugins[pb.Id] = pb
- return nil
- }
- type PluginDependencies struct {
- GrafanaVersion string `json:"grafanaVersion"`
- Plugins []PluginDependencyItem `json:"plugins"`
- }
- type PluginInclude struct {
- Name string `json:"name"`
- Path string `json:"path"`
- Type string `json:"type"`
- Component string `json:"component"`
- Role m.RoleType `json:"role"`
- AddToNav bool `json:"addToNav"`
- DefaultNav bool `json:"defaultNav"`
- Slug string `json:"slug"`
- Id string `json:"-"`
- }
- type PluginDependencyItem struct {
- Type string `json:"type"`
- Id string `json:"id"`
- Name string `json:"name"`
- Version string `json:"version"`
- }
- type PluginBuildInfo struct {
- Time int64 `json:"time,omitempty"`
- Repo string `json:"repo,omitempty"`
- Branch string `json:"branch,omitempty"`
- Hash string `json:"hash,omitempty"`
- }
- type PluginInfo struct {
- Author PluginInfoLink `json:"author"`
- Description string `json:"description"`
- Links []PluginInfoLink `json:"links"`
- Logos PluginLogos `json:"logos"`
- Build PluginBuildInfo `json:"source"`
- Screenshots []PluginScreenshots `json:"screenshots"`
- Version string `json:"version"`
- Updated string `json:"updated"`
- }
- type PluginInfoLink struct {
- Name string `json:"name"`
- Url string `json:"url"`
- }
- type PluginLogos struct {
- Small string `json:"small"`
- Large string `json:"large"`
- }
- type PluginScreenshots struct {
- Path string `json:"path"`
- Name string `json:"name"`
- }
- type PluginStaticRoute struct {
- Directory string
- PluginId string
- }
- type EnabledPlugins struct {
- Panels []*PanelPlugin
- DataSources map[string]*DataSourcePlugin
- Apps []*AppPlugin
- }
- func NewEnabledPlugins() EnabledPlugins {
- return EnabledPlugins{
- Panels: make([]*PanelPlugin, 0),
- DataSources: make(map[string]*DataSourcePlugin),
- Apps: make([]*AppPlugin, 0),
- }
- }
|