mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 12:44:10 -06:00
97 lines
2.2 KiB
Go
97 lines
2.2 KiB
Go
package stores
|
|
|
|
import (
|
|
"errors"
|
|
|
|
r "github.com/dancannon/gorethink"
|
|
"github.com/torkelo/grafana-pro/pkg/models"
|
|
)
|
|
|
|
func (self *rethinkStore) getNextAccountId() (int, error) {
|
|
resp, err := r.Table("master").Get("ids").Update(map[string]interface{}{
|
|
"NextAccountId": r.Row.Field("NextAccountId").Add(1),
|
|
}, r.UpdateOpts{ReturnChanges: true}).RunWrite(self.session)
|
|
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
change := resp.Changes[0]
|
|
|
|
if change.NewValue == nil {
|
|
return 0, errors.New("Failed to get new value after incrementing account id")
|
|
}
|
|
|
|
return int(change.NewValue.(map[string]interface{})["NextAccountId"].(float64)), nil
|
|
}
|
|
|
|
func (self *rethinkStore) SaveUserAccount(account *models.UserAccount) error {
|
|
accountId, err := self.getNextAccountId()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
account.Id = accountId
|
|
|
|
resp, err := r.Table("accounts").Insert(account).RunWrite(self.session)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if resp.Inserted == 0 {
|
|
return errors.New("Failed to insert acccount")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (self *rethinkStore) GetUserAccountLogin(emailOrName string) (*models.UserAccount, error) {
|
|
resp, err := r.Table("accounts").GetAllByIndex("AccountLogin", []interface{}{emailOrName}).Run(self.session)
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var account models.UserAccount
|
|
err = resp.One(&account)
|
|
if err != nil {
|
|
return nil, errors.New("Not found")
|
|
}
|
|
|
|
return &account, nil
|
|
}
|
|
|
|
func (self *rethinkStore) GetAccount(id int) (*models.UserAccount, error) {
|
|
resp, err := r.Table("accounts").Get(id).Run(self.session)
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var account models.UserAccount
|
|
err = resp.One(&account)
|
|
if err != nil {
|
|
return nil, errors.New("Not found")
|
|
}
|
|
|
|
return &account, nil
|
|
}
|
|
|
|
func (self *rethinkStore) getNextDashboardNumber(accountId int) (int, error) {
|
|
resp, err := r.Table("accounts").Get(accountId).Update(map[string]interface{}{
|
|
"NextDashboardId": r.Row.Field("NextDashboardId").Add(1),
|
|
}, r.UpdateOpts{ReturnChanges: true}).RunWrite(self.session)
|
|
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
change := resp.Changes[0]
|
|
|
|
if change.NewValue == nil {
|
|
return 0, errors.New("Failed to get next dashboard id, no new value after update")
|
|
}
|
|
|
|
return int(change.NewValue.(map[string]interface{})["NextDashboardId"].(float64)), nil
|
|
}
|