2022-10-26 22:15:14 +08:00
|
|
|
package folder
|
|
|
|
|
|
|
|
import (
|
2023-05-10 21:20:16 +08:00
|
|
|
"fmt"
|
2022-10-26 22:15:14 +08:00
|
|
|
"time"
|
2022-10-28 21:35:49 +08:00
|
|
|
|
2023-05-10 21:20:16 +08:00
|
|
|
"github.com/grafana/grafana/pkg/infra/slugify"
|
2023-08-30 22:51:18 +08:00
|
|
|
"github.com/grafana/grafana/pkg/services/auth/identity"
|
2023-05-10 21:20:16 +08:00
|
|
|
"github.com/grafana/grafana/pkg/setting"
|
2022-10-28 21:35:49 +08:00
|
|
|
"github.com/grafana/grafana/pkg/util/errutil"
|
2022-10-26 22:15:14 +08:00
|
|
|
)
|
|
|
|
|
2023-08-22 18:52:24 +08:00
|
|
|
var ErrMaximumDepthReached = errutil.BadRequest("folder.maximum-depth-reached", errutil.WithPublicMessage("Maximum nested folder depth reached"))
|
|
|
|
var ErrBadRequest = errutil.BadRequest("folder.bad-request")
|
|
|
|
var ErrDatabaseError = errutil.Internal("folder.database-error")
|
|
|
|
var ErrInternal = errutil.Internal("folder.internal")
|
|
|
|
var ErrCircularReference = errutil.BadRequest("folder.circular-reference", errutil.WithPublicMessage("Circular reference detected"))
|
|
|
|
var ErrTargetRegistrySrvConflict = errutil.Internal("folder.target-registry-srv-conflict")
|
2022-11-03 21:21:41 +08:00
|
|
|
|
2022-10-26 22:15:14 +08:00
|
|
|
const (
|
|
|
|
GeneralFolderUID = "general"
|
2022-11-08 21:59:55 +08:00
|
|
|
RootFolderUID = ""
|
2023-11-15 17:25:40 +08:00
|
|
|
MaxNestedFolderDepth = 4
|
2022-10-26 22:15:14 +08:00
|
|
|
)
|
|
|
|
|
2023-08-22 18:52:24 +08:00
|
|
|
var ErrFolderNotFound = errutil.NotFound("folder.notFound")
|
2022-10-28 21:35:49 +08:00
|
|
|
|
2022-10-26 22:15:14 +08:00
|
|
|
type Folder struct {
|
2022-11-03 21:21:41 +08:00
|
|
|
ID int64 `xorm:"pk autoincr 'id'"`
|
|
|
|
OrgID int64 `xorm:"org_id"`
|
|
|
|
UID string `xorm:"uid"`
|
|
|
|
ParentUID string `xorm:"parent_uid"`
|
2022-10-26 22:15:14 +08:00
|
|
|
Title string
|
|
|
|
Description string
|
|
|
|
|
|
|
|
Created time.Time
|
|
|
|
Updated time.Time
|
|
|
|
|
2022-10-28 20:23:39 +08:00
|
|
|
// TODO: validate if this field is required/relevant to folders.
|
2022-11-03 21:21:41 +08:00
|
|
|
// currently there is no such column
|
2022-11-15 18:58:12 +08:00
|
|
|
Version int
|
2023-01-25 16:14:32 +08:00
|
|
|
URL string
|
2022-11-15 18:58:12 +08:00
|
|
|
UpdatedBy int64
|
|
|
|
CreatedBy int64
|
|
|
|
HasACL bool
|
2022-11-10 17:41:03 +08:00
|
|
|
}
|
|
|
|
|
2023-02-08 23:16:53 +08:00
|
|
|
var GeneralFolder = Folder{ID: 0, Title: "General"}
|
|
|
|
|
|
|
|
func (f *Folder) IsGeneral() bool {
|
|
|
|
return f.ID == GeneralFolder.ID && f.Title == GeneralFolder.Title
|
|
|
|
}
|
|
|
|
|
2023-05-10 21:20:16 +08:00
|
|
|
func (f *Folder) WithURL() *Folder {
|
|
|
|
if f == nil || f.URL != "" {
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
|
|
|
// copy of dashboards.GetFolderURL()
|
|
|
|
f.URL = fmt.Sprintf("%s/dashboards/f/%s/%s", setting.AppSubUrl, f.UID, slugify.Slugify(f.Title))
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
2022-10-26 22:15:14 +08:00
|
|
|
// NewFolder tales a title and returns a Folder with the Created and Updated
|
|
|
|
// fields set to the current time.
|
|
|
|
func NewFolder(title string, description string) *Folder {
|
|
|
|
return &Folder{
|
|
|
|
Title: title,
|
|
|
|
Description: description,
|
|
|
|
Created: time.Now(),
|
|
|
|
Updated: time.Now(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateFolderCommand captures the information required by the folder service
|
|
|
|
// to create a folder.
|
|
|
|
type CreateFolderCommand struct {
|
2022-11-03 21:21:41 +08:00
|
|
|
UID string `json:"uid"`
|
2022-11-10 17:41:03 +08:00
|
|
|
OrgID int64 `json:"-"`
|
2022-10-26 22:15:14 +08:00
|
|
|
Title string `json:"title"`
|
|
|
|
Description string `json:"description"`
|
2022-11-25 02:28:53 +08:00
|
|
|
ParentUID string `json:"parentUid"`
|
2022-11-23 17:13:47 +08:00
|
|
|
|
2023-10-06 21:02:34 +08:00
|
|
|
SignedInUser identity.Requester `json:"-"`
|
2022-10-26 22:15:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateFolderCommand captures the information required by the folder service
|
|
|
|
// to update a folder. Use Move to update a folder's parent folder.
|
|
|
|
type UpdateFolderCommand struct {
|
2022-12-20 21:00:33 +08:00
|
|
|
UID string `json:"-"`
|
|
|
|
OrgID int64 `json:"-"`
|
|
|
|
// NewTitle it's an optional parameter used for overriding the existing folder title
|
|
|
|
NewTitle *string `json:"title"` // keep same json tag with the legacy command for not breaking the existing APIs
|
|
|
|
// NewDescription it's an optional parameter used for overriding the existing folder description
|
|
|
|
NewDescription *string `json:"description"` // keep same json tag with the legacy command for not breaking the existing APIs
|
|
|
|
NewParentUID *string `json:"-"`
|
|
|
|
|
|
|
|
// Version only used by the legacy folder implementation
|
|
|
|
Version int `json:"version"`
|
|
|
|
// Overwrite only used by the legacy folder implementation
|
|
|
|
Overwrite bool `json:"overwrite"`
|
2022-11-23 17:13:47 +08:00
|
|
|
|
2023-10-06 21:02:34 +08:00
|
|
|
SignedInUser identity.Requester `json:"-"`
|
2022-10-26 22:15:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// MoveFolderCommand captures the information required by the folder service
|
|
|
|
// to move a folder.
|
|
|
|
type MoveFolderCommand struct {
|
2023-01-25 23:04:08 +08:00
|
|
|
UID string `json:"-"`
|
|
|
|
NewParentUID string `json:"parentUid"`
|
2022-11-10 17:41:03 +08:00
|
|
|
OrgID int64 `json:"-"`
|
2022-11-23 17:13:47 +08:00
|
|
|
|
2023-10-06 21:02:34 +08:00
|
|
|
SignedInUser identity.Requester `json:"-"`
|
2022-10-26 22:15:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteFolderCommand captures the information required by the folder service
|
|
|
|
// to delete a folder.
|
|
|
|
type DeleteFolderCommand struct {
|
2022-11-10 16:42:32 +08:00
|
|
|
UID string `json:"uid" xorm:"uid"`
|
|
|
|
OrgID int64 `json:"orgId" xorm:"org_id"`
|
|
|
|
ForceDeleteRules bool `json:"forceDeleteRules"`
|
2022-11-23 17:13:47 +08:00
|
|
|
|
2023-10-06 21:02:34 +08:00
|
|
|
SignedInUser identity.Requester `json:"-"`
|
2022-10-26 22:15:14 +08:00
|
|
|
}
|
|
|
|
|
2022-10-26 23:52:01 +08:00
|
|
|
// GetFolderQuery is used for all folder Get requests. Only one of UID, ID, or
|
2023-06-22 16:43:38 +08:00
|
|
|
// Title should be set; if multiple fields are set by the caller the dashboard
|
2023-10-12 23:31:49 +08:00
|
|
|
// service will select the field with the most specificity, in order: ID, UID,
|
|
|
|
// Title.
|
2022-10-26 23:52:01 +08:00
|
|
|
type GetFolderQuery struct {
|
2023-11-15 23:30:00 +08:00
|
|
|
UID *string
|
|
|
|
// Deprecated: use FolderUID instead
|
2023-10-12 23:31:49 +08:00
|
|
|
ID *int64
|
|
|
|
Title *string
|
|
|
|
OrgID int64
|
2022-11-23 17:13:47 +08:00
|
|
|
|
2023-09-06 17:16:10 +08:00
|
|
|
SignedInUser identity.Requester `json:"-"`
|
2022-10-26 22:15:14 +08:00
|
|
|
}
|
|
|
|
|
2022-10-26 23:52:01 +08:00
|
|
|
// GetParentsQuery captures the information required by the folder service to
|
2022-10-26 22:15:14 +08:00
|
|
|
// return a list of all parent folders of a given folder.
|
2022-10-26 23:52:01 +08:00
|
|
|
type GetParentsQuery struct {
|
2022-11-03 21:21:41 +08:00
|
|
|
UID string `xorm:"uid"`
|
|
|
|
OrgID int64 `xorm:"org_id"`
|
2022-10-26 22:15:14 +08:00
|
|
|
}
|
|
|
|
|
2022-12-19 16:52:04 +08:00
|
|
|
// GetChildrenQuery captures the information required by the folder service to
|
2022-10-26 22:15:14 +08:00
|
|
|
// return a list of child folders of the given folder.
|
|
|
|
|
2022-12-19 16:52:04 +08:00
|
|
|
type GetChildrenQuery struct {
|
2022-10-29 02:07:25 +08:00
|
|
|
UID string `xorm:"uid"`
|
|
|
|
OrgID int64 `xorm:"org_id"`
|
2022-10-26 22:15:14 +08:00
|
|
|
Depth int64
|
|
|
|
|
|
|
|
// Pagination options
|
|
|
|
Limit int64
|
|
|
|
Page int64
|
2022-12-19 16:52:04 +08:00
|
|
|
|
2023-10-06 21:02:34 +08:00
|
|
|
SignedInUser identity.Requester `json:"-"`
|
2022-10-26 22:15:14 +08:00
|
|
|
}
|
2023-01-25 16:14:32 +08:00
|
|
|
|
|
|
|
type HasEditPermissionInFoldersQuery struct {
|
2023-10-06 21:02:34 +08:00
|
|
|
SignedInUser identity.Requester
|
2023-01-25 16:14:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type HasAdminPermissionInDashboardsOrFoldersQuery struct {
|
2023-10-06 21:02:34 +08:00
|
|
|
SignedInUser identity.Requester
|
2023-01-25 16:14:32 +08:00
|
|
|
}
|
2023-04-24 21:57:28 +08:00
|
|
|
|
2023-04-27 23:00:09 +08:00
|
|
|
// GetDescendantCountsQuery captures the information required by the folder service
|
|
|
|
// to return the count of descendants (direct and indirect) in a folder.
|
|
|
|
type GetDescendantCountsQuery struct {
|
2023-04-24 21:57:28 +08:00
|
|
|
UID *string
|
|
|
|
OrgID int64
|
|
|
|
|
2023-10-06 21:02:34 +08:00
|
|
|
SignedInUser identity.Requester `json:"-"`
|
2023-04-24 21:57:28 +08:00
|
|
|
}
|
|
|
|
|
2023-04-27 23:00:09 +08:00
|
|
|
type DescendantCounts map[string]int64
|