grafana/pkg/services/licensing/oss.go
Ashley Harrison 822644714a
Navigation: Remove ApplyAdminIA logic (#89113)
make admin IA more normal
2024-06-12 16:45:13 +01:00

75 lines
1.7 KiB
Go

package licensing
import (
"github.com/grafana/grafana/pkg/api/dtos"
contextmodel "github.com/grafana/grafana/pkg/services/contexthandler/model"
"github.com/grafana/grafana/pkg/services/hooks"
"github.com/grafana/grafana/pkg/services/navtree"
"github.com/grafana/grafana/pkg/setting"
)
const (
openSource = "Open Source"
)
type OSSLicensingService struct {
Cfg *setting.Cfg
HooksService *hooks.HooksService
}
func (*OSSLicensingService) Expiry() int64 {
return 0
}
func (*OSSLicensingService) Edition() string {
return openSource
}
func (*OSSLicensingService) StateInfo() string {
return ""
}
func (*OSSLicensingService) ContentDeliveryPrefix() string {
return "grafana-oss"
}
func (l *OSSLicensingService) LicenseURL(showAdminLicensingPage bool) string {
if showAdminLicensingPage {
return l.Cfg.AppSubURL + "/admin/upgrading"
}
return "https://grafana.com/oss/grafana?utm_source=grafana_footer"
}
func (*OSSLicensingService) EnabledFeatures() map[string]bool {
return map[string]bool{}
}
func (*OSSLicensingService) FeatureEnabled(feature string) bool {
return false
}
func ProvideService(cfg *setting.Cfg, hooksService *hooks.HooksService) *OSSLicensingService {
l := &OSSLicensingService{
Cfg: cfg,
HooksService: hooksService,
}
l.HooksService.AddIndexDataHook(func(indexData *dtos.IndexViewData, req *contextmodel.ReqContext) {
if !req.IsGrafanaAdmin {
return
}
if adminNode := indexData.NavTree.FindById(navtree.NavIDCfgGeneral); adminNode != nil {
adminNode.Children = append(adminNode.Children, &navtree.NavLink{
Text: "Stats and license",
Id: "upgrading",
Url: l.LicenseURL(req.IsGrafanaAdmin),
Icon: "unlock",
SortWeight: -1,
})
}
})
return l
}