2014-12-22 05:25:08 -06:00
|
|
|
package sqlstore
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/go-xorm/xorm"
|
|
|
|
"github.com/torkelo/grafana-pro/pkg/bus"
|
|
|
|
m "github.com/torkelo/grafana-pro/pkg/models"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2014-12-29 06:58:06 -06:00
|
|
|
bus.AddHandler("sql", SaveDashboard)
|
|
|
|
bus.AddHandler("sql", GetDashboard)
|
|
|
|
bus.AddHandler("sql", DeleteDashboard)
|
|
|
|
bus.AddHandler("sql", SearchDashboards)
|
2015-01-06 11:39:26 -06:00
|
|
|
bus.AddHandler("sql", GetDashboardTags)
|
2014-12-22 05:25:08 -06:00
|
|
|
}
|
|
|
|
|
2014-12-29 06:58:06 -06:00
|
|
|
func SaveDashboard(cmd *m.SaveDashboardCommand) error {
|
2014-12-22 05:25:08 -06:00
|
|
|
return inTransaction(func(sess *xorm.Session) error {
|
|
|
|
dash := cmd.GetDashboardModel()
|
|
|
|
|
2015-01-05 10:04:29 -06:00
|
|
|
// try get existing dashboard
|
|
|
|
existing := m.Dashboard{Slug: dash.Slug, AccountId: dash.AccountId}
|
|
|
|
hasExisting, err := sess.Get(&existing)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if hasExisting && dash.Id != existing.Id {
|
|
|
|
return m.ErrDashboardWithSameNameExists
|
|
|
|
}
|
|
|
|
|
2014-12-22 05:25:08 -06:00
|
|
|
if dash.Id == 0 {
|
|
|
|
_, err = sess.Insert(dash)
|
|
|
|
} else {
|
|
|
|
_, err = sess.Id(dash.Id).Update(dash)
|
|
|
|
}
|
|
|
|
|
2015-01-07 05:37:24 -06:00
|
|
|
// delete existing tabs
|
|
|
|
_, err = sess.Exec("DELETE FROM dashboard_tag WHERE dashboard_id=?", dash.Id)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// insert new tags
|
|
|
|
tags := dash.GetTags()
|
|
|
|
if len(tags) > 0 {
|
|
|
|
tagRows := make([]DashboardTag, len(tags))
|
|
|
|
for _, tag := range tags {
|
|
|
|
tagRows = append(tagRows, DashboardTag{Term: tag, DashboardId: dash.Id})
|
|
|
|
}
|
|
|
|
sess.InsertMulti(&tagRows)
|
|
|
|
}
|
|
|
|
|
2014-12-22 05:25:08 -06:00
|
|
|
cmd.Result = dash
|
|
|
|
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-12-29 06:58:06 -06:00
|
|
|
func GetDashboard(query *m.GetDashboardQuery) error {
|
|
|
|
dashboard := m.Dashboard{Slug: query.Slug, AccountId: query.AccountId}
|
2014-12-22 05:25:08 -06:00
|
|
|
has, err := x.Get(&dashboard)
|
|
|
|
if err != nil {
|
2014-12-29 06:58:06 -06:00
|
|
|
return err
|
2014-12-22 05:25:08 -06:00
|
|
|
} else if has == false {
|
2014-12-29 06:58:06 -06:00
|
|
|
return m.ErrDashboardNotFound
|
2014-12-22 05:25:08 -06:00
|
|
|
}
|
|
|
|
|
2014-12-29 06:58:06 -06:00
|
|
|
query.Result = &dashboard
|
|
|
|
|
|
|
|
return nil
|
2014-12-22 05:25:08 -06:00
|
|
|
}
|
|
|
|
|
2015-01-07 05:37:24 -06:00
|
|
|
type DashboardSearchProjection struct {
|
|
|
|
Id int64
|
|
|
|
Title string
|
|
|
|
Slug string
|
|
|
|
Term string
|
|
|
|
}
|
|
|
|
|
2014-12-29 06:58:06 -06:00
|
|
|
func SearchDashboards(query *m.SearchDashboardsQuery) error {
|
2015-01-07 05:37:24 -06:00
|
|
|
titleQuery := "%" + query.Title + "%"
|
2015-01-06 10:15:52 -06:00
|
|
|
|
2015-01-07 05:37:24 -06:00
|
|
|
sess := x.Table("dashboard")
|
|
|
|
sess.Join("LEFT OUTER", "dashboard_tag", "dashboard.id=dashboard_tag.dashboard_id")
|
|
|
|
sess.Where("account_id=? AND title LIKE ?", query.AccountId, titleQuery)
|
|
|
|
sess.Cols("dashboard.id", "dashboard.title", "dashboard.slug", "dashboard_tag.term")
|
|
|
|
sess.Limit(100, 0)
|
2014-12-22 05:25:08 -06:00
|
|
|
|
2015-01-07 05:37:24 -06:00
|
|
|
if len(query.Tag) > 0 {
|
|
|
|
sess.And("dashboard_tag.term=?", query.Tag)
|
|
|
|
}
|
|
|
|
|
|
|
|
var res []DashboardSearchProjection
|
|
|
|
err := sess.Find(&res)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
query.Result = make([]*m.DashboardSearchHit, 0)
|
|
|
|
hits := make(map[int64]*m.DashboardSearchHit)
|
|
|
|
|
|
|
|
for _, item := range res {
|
|
|
|
hit, exists := hits[item.Id]
|
|
|
|
if !exists {
|
|
|
|
hit = &m.DashboardSearchHit{
|
|
|
|
Title: item.Title,
|
|
|
|
Slug: item.Slug,
|
|
|
|
Tags: []string{},
|
|
|
|
}
|
|
|
|
query.Result = append(query.Result, hit)
|
|
|
|
hits[item.Id] = hit
|
|
|
|
}
|
|
|
|
if len(item.Term) > 0 {
|
|
|
|
hit.Tags = append(hit.Tags, item.Term)
|
|
|
|
}
|
|
|
|
}
|
2014-12-22 05:25:08 -06:00
|
|
|
|
2014-12-29 06:58:06 -06:00
|
|
|
return err
|
2014-12-22 05:25:08 -06:00
|
|
|
}
|
|
|
|
|
2015-01-06 11:39:26 -06:00
|
|
|
func GetDashboardTags(query *m.GetDashboardTagsQuery) error {
|
2015-01-07 05:37:24 -06:00
|
|
|
sess := x.Sql("select count() as count, term from dashboard_tag group by term")
|
|
|
|
|
|
|
|
err := sess.Find(&query.Result)
|
|
|
|
return err
|
2015-01-06 11:39:26 -06:00
|
|
|
}
|
|
|
|
|
2014-12-29 06:58:06 -06:00
|
|
|
func DeleteDashboard(cmd *m.DeleteDashboardCommand) error {
|
2014-12-22 05:25:08 -06:00
|
|
|
sess := x.NewSession()
|
|
|
|
defer sess.Close()
|
|
|
|
|
|
|
|
rawSql := "DELETE FROM Dashboard WHERE account_id=? and slug=?"
|
2014-12-29 06:58:06 -06:00
|
|
|
_, err := sess.Exec(rawSql, cmd.AccountId, cmd.Slug)
|
2014-12-22 05:25:08 -06:00
|
|
|
|
|
|
|
return err
|
|
|
|
}
|