| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- package stores
- import (
- "errors"
- log "github.com/alecthomas/log4go"
- r "github.com/dancannon/gorethink"
- "github.com/torkelo/grafana-pro/pkg/models"
- )
- func (self *rethinkStore) SaveDashboard(dash *models.Dashboard) error {
- resp, err := r.Table("dashboards").Insert(dash, r.InsertOpts{Conflict: "update"}).RunWrite(self.session)
- if err != nil {
- return err
- }
- log.Info("Inserted: %v, Errors: %v, Updated: %v", resp.Inserted, resp.Errors, resp.Updated)
- log.Info("First error:", resp.FirstError)
- if len(resp.GeneratedKeys) > 0 {
- dash.Id = resp.GeneratedKeys[0]
- }
- return nil
- }
- func (self *rethinkStore) GetDashboard(slug string, accountId int) (*models.Dashboard, error) {
- resp, err := r.Table("dashboards").
- GetAllByIndex("AccountIdSlug", []interface{}{accountId, slug}).
- Run(self.session)
- if err != nil {
- return nil, err
- }
- var dashboard models.Dashboard
- err = resp.One(&dashboard)
- if err != nil {
- return nil, err
- }
- return &dashboard, nil
- }
- func (self *rethinkStore) DeleteDashboard(slug string, accountId int) error {
- resp, err := r.Table("dashboards").
- GetAllByIndex("AccountIdSlug", []interface{}{accountId, slug}).
- Delete().RunWrite(self.session)
- if err != nil {
- return err
- }
- if resp.Deleted != 1 {
- return errors.New("Did not find dashboard to delete")
- }
- return nil
- }
- func (self *rethinkStore) Query(query string, accountId int) ([]*models.SearchResult, error) {
- docs, err := r.Table("dashboards").
- GetAllByIndex("AccountId", []interface{}{accountId}).
- Filter(r.Row.Field("Title").Match(".*")).Run(self.session)
- if err != nil {
- return nil, err
- }
- results := make([]*models.SearchResult, 0, 50)
- var dashboard models.Dashboard
- for docs.Next(&dashboard) {
- results = append(results, &models.SearchResult{
- Title: dashboard.Title,
- Id: dashboard.Slug,
- })
- }
- return results, nil
- }
|