| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- package api
- import (
- "github.com/grafana/grafana/pkg/bus"
- "github.com/grafana/grafana/pkg/middleware"
- m "github.com/grafana/grafana/pkg/models"
- )
- // TODO: this needs to be cached or improved somehow
- func setIsStarredFlagOnSearchResults(c *middleware.Context, hits []*m.DashboardSearchHit) error {
- if !c.IsSignedIn {
- return nil
- }
- query := m.GetUserStarsQuery{UserId: c.UserId}
- if err := bus.Dispatch(&query); err != nil {
- return err
- }
- for _, dash := range hits {
- if _, exists := query.Result[dash.Id]; exists {
- dash.IsStarred = true
- }
- }
- return nil
- }
- func Search(c *middleware.Context) {
- query := c.Query("query")
- tag := c.Query("tag")
- tagcloud := c.Query("tagcloud")
- starred := c.Query("starred")
- limit := c.QueryInt("limit")
- if limit == 0 {
- limit = 200
- }
- result := m.SearchResult{
- Dashboards: []*m.DashboardSearchHit{},
- Tags: []*m.DashboardTagCloudItem{},
- }
- if tagcloud == "true" {
- query := m.GetDashboardTagsQuery{OrgId: c.OrgId}
- err := bus.Dispatch(&query)
- if err != nil {
- c.JsonApiErr(500, "Failed to get tags from database", err)
- return
- }
- result.Tags = query.Result
- result.TagsOnly = true
- } else {
- query := m.SearchDashboardsQuery{
- Title: query,
- Tag: tag,
- UserId: c.UserId,
- Limit: limit,
- IsStarred: starred == "true",
- OrgId: c.OrgId,
- }
- err := bus.Dispatch(&query)
- if err != nil {
- c.JsonApiErr(500, "Search failed", err)
- return
- }
- if err := setIsStarredFlagOnSearchResults(c, query.Result); err != nil {
- c.JsonApiErr(500, "Failed to get user stars", err)
- return
- }
- result.Dashboards = query.Result
- }
- c.JSON(200, result)
- }
|