2022-10-26 22:15:14 +08:00
|
|
|
package folderimpl
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
|
|
|
|
|
"github.com/grafana/grafana/pkg/services/folder"
|
|
|
|
|
)
|
|
|
|
|
|
2022-10-28 21:35:49 +08:00
|
|
|
// store is the interface which a folder store must implement.
|
2022-10-26 23:52:01 +08:00
|
|
|
type store interface {
|
|
|
|
|
// Create creates a folder and returns the newly-created folder.
|
2022-11-03 21:21:41 +08:00
|
|
|
Create(ctx context.Context, cmd folder.CreateFolderCommand) (*folder.Folder, error)
|
2022-10-26 22:15:14 +08:00
|
|
|
|
2022-10-26 23:52:01 +08:00
|
|
|
// Delete deletes a folder from the folder store.
|
|
|
|
|
Delete(ctx context.Context, uid string, orgID int64) error
|
2022-10-26 22:15:14 +08:00
|
|
|
|
2023-04-04 02:24:36 +08:00
|
|
|
// Update updates the given folder's UID, Title, and Description (update mode).
|
|
|
|
|
// If the NewParentUID field is not nil, it updates also the parent UID (move mode).
|
|
|
|
|
// If it's a non empty string, it moves the folder under the folder with the specific UID
|
|
|
|
|
// otherwise, it moves the folder under the root folder (parent_uid column is set to NULL).
|
2022-11-03 21:21:41 +08:00
|
|
|
Update(ctx context.Context, cmd folder.UpdateFolderCommand) (*folder.Folder, error)
|
2022-10-26 22:15:14 +08:00
|
|
|
|
2022-10-26 23:52:01 +08:00
|
|
|
// Get returns a folder.
|
2022-11-03 21:21:41 +08:00
|
|
|
Get(ctx context.Context, cmd folder.GetFolderQuery) (*folder.Folder, error)
|
2022-10-26 22:15:14 +08:00
|
|
|
|
2022-10-26 23:52:01 +08:00
|
|
|
// GetParents returns an ordered list of parent folder of the given folder.
|
2022-11-03 21:21:41 +08:00
|
|
|
GetParents(ctx context.Context, cmd folder.GetParentsQuery) ([]*folder.Folder, error)
|
2022-10-26 22:15:14 +08:00
|
|
|
|
2022-10-26 23:52:01 +08:00
|
|
|
// GetChildren returns the set of immediate children folders (depth=1) of the
|
|
|
|
|
// given folder.
|
2022-12-19 16:52:04 +08:00
|
|
|
GetChildren(ctx context.Context, cmd folder.GetChildrenQuery) ([]*folder.Folder, error)
|
2022-12-08 21:49:17 +08:00
|
|
|
|
|
|
|
|
// GetHeight returns the height of the folder tree. When parentUID is set, the function would
|
|
|
|
|
// verify in the meanwhile that parentUID is not present in the subtree of the folder with the given UID.
|
|
|
|
|
GetHeight(ctx context.Context, foldrUID string, orgID int64, parentUID *string) (int, error)
|
2022-10-26 22:15:14 +08:00
|
|
|
}
|