* feat: draft changes for on-prem unified migration * feat: further draft changes for on-prem unified migration * fix: remove some tbis * refactor: rename * fix: another approach * fix: background service related issues * fix: address comments * fix: make gen-go * fix: background service related issues * feat: refactor dual writer and legacy migrator * fix: minor issues * feat: working version in oss * fix: wire * fix: revert test data override * fix: enterprise related issues * chore: add todo * fix: revert dual writer method * fix: lint * chore: logger format * fix: reduce log level * fix: log change * fix: disable * fix: address comments * fix: return error on dual writer service * fix: merge conflict --------- Co-authored-by: Rafael Paulovic <rafael.paulovic@grafana.com>
175 lines
5.3 KiB
Go
175 lines
5.3 KiB
Go
package dashboard
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strconv"
|
|
|
|
apierrors "k8s.io/apimachinery/pkg/api/errors"
|
|
"k8s.io/apimachinery/pkg/apis/meta/internalversion"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apiserver/pkg/registry/rest"
|
|
|
|
"github.com/grafana/grafana/pkg/apimachinery/identity"
|
|
"github.com/grafana/grafana/pkg/apimachinery/utils"
|
|
"github.com/grafana/grafana/pkg/registry/apis/dashboard/legacy"
|
|
"github.com/grafana/grafana/pkg/services/apiserver/endpoints/request"
|
|
"github.com/grafana/grafana/pkg/services/libraryelements"
|
|
)
|
|
|
|
var (
|
|
_ rest.Scoper = (*LibraryPanelStore)(nil)
|
|
_ rest.SingularNameProvider = (*LibraryPanelStore)(nil)
|
|
_ rest.Getter = (*LibraryPanelStore)(nil)
|
|
_ rest.Lister = (*LibraryPanelStore)(nil)
|
|
_ rest.Creater = (*LibraryPanelStore)(nil)
|
|
_ rest.GracefulDeleter = (*LibraryPanelStore)(nil)
|
|
_ rest.Updater = (*LibraryPanelStore)(nil)
|
|
_ rest.Storage = (*LibraryPanelStore)(nil)
|
|
)
|
|
|
|
type LibraryPanelStore struct {
|
|
Access legacy.DashboardAccessor
|
|
ResourceInfo utils.ResourceInfo
|
|
service libraryelements.Service
|
|
}
|
|
|
|
func (s *LibraryPanelStore) New() runtime.Object {
|
|
return s.ResourceInfo.NewFunc()
|
|
}
|
|
|
|
func (s *LibraryPanelStore) Destroy() {}
|
|
|
|
func (s *LibraryPanelStore) NamespaceScoped() bool {
|
|
return true // namespace == org
|
|
}
|
|
|
|
func (s *LibraryPanelStore) GetSingularName() string {
|
|
return s.ResourceInfo.GetSingularName()
|
|
}
|
|
|
|
func (s *LibraryPanelStore) NewList() runtime.Object {
|
|
return s.ResourceInfo.NewListFunc()
|
|
}
|
|
|
|
func (s *LibraryPanelStore) ConvertToTable(ctx context.Context, object runtime.Object, tableOptions runtime.Object) (*metav1.Table, error) {
|
|
return s.ResourceInfo.TableConverter().ConvertToTable(ctx, object, tableOptions)
|
|
}
|
|
|
|
func (s *LibraryPanelStore) Create(ctx context.Context, obj runtime.Object, createValidation rest.ValidateObjectFunc, options *metav1.CreateOptions) (runtime.Object, error) {
|
|
user, err := identity.GetRequester(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
cmd, err := libraryelements.ToCreateLibraryElementCommand(obj)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// NOTE: this includes all access control checks
|
|
out, err := s.service.CreateElement(ctx, user, *cmd)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if out.UID == "" {
|
|
return nil, fmt.Errorf("created library panel has empty UID")
|
|
}
|
|
return s.Get(ctx, out.UID, &metav1.GetOptions{})
|
|
}
|
|
|
|
func (s *LibraryPanelStore) Update(ctx context.Context, name string, objInfo rest.UpdatedObjectInfo, createValidation rest.ValidateObjectFunc, updateValidation rest.ValidateObjectUpdateFunc, forceAllowCreate bool, options *metav1.UpdateOptions) (runtime.Object, bool, error) {
|
|
user, err := identity.GetRequester(ctx)
|
|
if err != nil {
|
|
return nil, false, err
|
|
}
|
|
old, err := s.Get(ctx, name, &metav1.GetOptions{})
|
|
if err != nil {
|
|
return nil, false, err
|
|
}
|
|
|
|
// NOTE: this includes all access control checks
|
|
obj, err := objInfo.UpdatedObject(ctx, old)
|
|
if err != nil {
|
|
return nil, false, err
|
|
}
|
|
|
|
cmd, err := libraryelements.ToPatchLibraryElementCommand(obj)
|
|
if err != nil {
|
|
return nil, false, err
|
|
}
|
|
|
|
out, err := s.service.PatchLibraryElement(ctx, user, *cmd, name)
|
|
if err != nil {
|
|
return nil, false, err
|
|
}
|
|
if out.UID == "" {
|
|
return nil, false, fmt.Errorf("created library panel has empty UID")
|
|
}
|
|
obj, err = s.Get(ctx, out.UID, &metav1.GetOptions{})
|
|
return obj, false, err
|
|
}
|
|
|
|
func (s *LibraryPanelStore) Delete(ctx context.Context, name string, deleteValidation rest.ValidateObjectFunc, options *metav1.DeleteOptions) (runtime.Object, bool, error) {
|
|
user, err := identity.GetRequester(ctx)
|
|
if err != nil {
|
|
return nil, false, err
|
|
}
|
|
|
|
// NOTE: this includes all access control checks
|
|
_, err = s.service.DeleteLibraryElement(ctx, user, name)
|
|
if err != nil {
|
|
return nil, false, err
|
|
}
|
|
return nil, true, nil
|
|
}
|
|
|
|
func (s *LibraryPanelStore) DeleteCollection(ctx context.Context, deleteValidation rest.ValidateObjectFunc, options *metav1.DeleteOptions, listOptions *internalversion.ListOptions) (runtime.Object, error) {
|
|
return nil, apierrors.NewMethodNotSupported(s.ResourceInfo.GroupResource(), "deletecollection")
|
|
}
|
|
|
|
func (s *LibraryPanelStore) List(ctx context.Context, options *internalversion.ListOptions) (runtime.Object, error) {
|
|
if options.ResourceVersion != "" {
|
|
return nil, apierrors.NewBadRequest("List with explicit resourceVersion is not supported with this storage backend")
|
|
}
|
|
ns, err := request.NamespaceInfoFrom(ctx, true)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
query := legacy.LibraryPanelQuery{
|
|
OrgID: ns.OrgID,
|
|
Limit: options.Limit,
|
|
}
|
|
if options.Continue != "" {
|
|
query.LastID, err = strconv.ParseInt(options.Continue, 10, 64)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("invalid continue token")
|
|
}
|
|
}
|
|
if query.Limit < 1 {
|
|
query.Limit = 25
|
|
}
|
|
return s.Access.GetLibraryPanels(ctx, query)
|
|
}
|
|
|
|
func (s *LibraryPanelStore) Get(ctx context.Context, name string, options *metav1.GetOptions) (runtime.Object, error) {
|
|
ns, err := request.NamespaceInfoFrom(ctx, true)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
query := legacy.LibraryPanelQuery{
|
|
OrgID: ns.OrgID,
|
|
UID: name,
|
|
Limit: 1,
|
|
}
|
|
found, err := s.Access.GetLibraryPanels(ctx, query)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(found.Items) == 1 {
|
|
return &found.Items[0], nil
|
|
}
|
|
return nil, s.ResourceInfo.NewNotFound(name)
|
|
}
|