2016-01-11 04:37:11 +08:00
|
|
|
package plugins
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/grafana/grafana/pkg/bus"
|
|
|
|
|
m "github.com/grafana/grafana/pkg/models"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func GetOrgAppSettings(orgId int64) (map[string]*m.AppSettings, error) {
|
|
|
|
|
query := m.GetAppSettingsQuery{OrgId: orgId}
|
|
|
|
|
|
|
|
|
|
if err := bus.Dispatch(&query); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
orgAppsMap := make(map[string]*m.AppSettings)
|
|
|
|
|
for _, orgApp := range query.Result {
|
|
|
|
|
orgAppsMap[orgApp.AppId] = orgApp
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return orgAppsMap, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func GetEnabledPlugins(orgId int64) (*EnabledPlugins, error) {
|
|
|
|
|
enabledPlugins := NewEnabledPlugins()
|
|
|
|
|
orgApps, err := GetOrgAppSettings(orgId)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
seenPanels := make(map[string]bool)
|
|
|
|
|
seenApi := make(map[string]bool)
|
|
|
|
|
|
2016-01-12 01:03:08 +08:00
|
|
|
for appId, installedApp := range Apps {
|
2016-01-11 04:37:11 +08:00
|
|
|
var app AppPlugin
|
|
|
|
|
app = *installedApp
|
|
|
|
|
|
|
|
|
|
// check if the app is stored in the DB for this org and if so, use the
|
|
|
|
|
// state stored there.
|
2016-01-12 01:03:08 +08:00
|
|
|
if b, ok := orgApps[appId]; ok {
|
2016-01-11 04:37:11 +08:00
|
|
|
app.Enabled = b.Enabled
|
|
|
|
|
app.Pinned = b.Pinned
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-12 01:03:08 +08:00
|
|
|
if app.Enabled {
|
|
|
|
|
enabledPlugins.Apps = append(enabledPlugins.Apps, &app)
|
|
|
|
|
}
|
2016-01-11 04:37:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// add all plugins that are not part of an App.
|
|
|
|
|
for d, installedDs := range DataSources {
|
|
|
|
|
if installedDs.App == "" {
|
|
|
|
|
enabledPlugins.DataSources[d] = installedDs
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for p, panel := range Panels {
|
|
|
|
|
if panel.App == "" {
|
|
|
|
|
if _, ok := seenPanels[p]; !ok {
|
|
|
|
|
seenPanels[p] = true
|
|
|
|
|
enabledPlugins.Panels = append(enabledPlugins.Panels, panel)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for a, api := range ApiPlugins {
|
|
|
|
|
if api.App == "" {
|
|
|
|
|
if _, ok := seenApi[a]; !ok {
|
|
|
|
|
seenApi[a] = true
|
|
|
|
|
enabledPlugins.ApiList = append(enabledPlugins.ApiList, api)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return &enabledPlugins, nil
|
|
|
|
|
}
|