mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
6afad51761
* Move SignedInUser to user service and RoleType and Roles to org * Use go naming convention for roles * Fix some imports and leftovers * Fix ldap debug test * Fix lint * Fix lint 2 * Fix lint 3 * Fix type and not needed conversion * Clean up messages in api tests * Clean up api tests 2
84 lines
1.9 KiB
Go
84 lines
1.9 KiB
Go
package models
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/grafana/grafana/pkg/services/sqlstore/searchstore"
|
|
"github.com/grafana/grafana/pkg/services/user"
|
|
)
|
|
|
|
type SortOption struct {
|
|
Name string
|
|
DisplayName string
|
|
Description string
|
|
Index int
|
|
MetaName string
|
|
Filter []SortOptionFilter
|
|
}
|
|
|
|
type SortOptionFilter interface {
|
|
searchstore.FilterOrderBy
|
|
}
|
|
|
|
type FindPersistedDashboardsQuery struct {
|
|
Title string
|
|
OrgId int64
|
|
SignedInUser *user.SignedInUser
|
|
IsStarred bool
|
|
DashboardIds []int64
|
|
DashboardUIDs []string
|
|
Type string
|
|
FolderIds []int64
|
|
Tags []string
|
|
Limit int64
|
|
Page int64
|
|
Permission PermissionType
|
|
Sort SortOption
|
|
|
|
Filters []interface{}
|
|
|
|
Result HitList
|
|
}
|
|
|
|
type HitType string
|
|
|
|
const (
|
|
DashHitDB HitType = "dash-db"
|
|
DashHitHome HitType = "dash-home"
|
|
DashHitFolder HitType = "dash-folder"
|
|
)
|
|
|
|
type Hit struct {
|
|
ID int64 `json:"id"`
|
|
UID string `json:"uid"`
|
|
Title string `json:"title"`
|
|
URI string `json:"uri"`
|
|
URL string `json:"url"`
|
|
Slug string `json:"slug"`
|
|
Type HitType `json:"type"`
|
|
Tags []string `json:"tags"`
|
|
IsStarred bool `json:"isStarred"`
|
|
FolderID int64 `json:"folderId,omitempty"`
|
|
FolderUID string `json:"folderUid,omitempty"`
|
|
FolderTitle string `json:"folderTitle,omitempty"`
|
|
FolderURL string `json:"folderUrl,omitempty"`
|
|
SortMeta int64 `json:"sortMeta"`
|
|
SortMetaName string `json:"sortMetaName,omitempty"`
|
|
}
|
|
|
|
type HitList []*Hit
|
|
|
|
func (s HitList) Len() int { return len(s) }
|
|
func (s HitList) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
|
|
func (s HitList) Less(i, j int) bool {
|
|
if s[i].Type == "dash-folder" && s[j].Type == "dash-db" {
|
|
return true
|
|
}
|
|
|
|
if s[i].Type == "dash-db" && s[j].Type == "dash-folder" {
|
|
return false
|
|
}
|
|
|
|
return strings.ToLower(s[i].Title) < strings.ToLower(s[j].Title)
|
|
}
|