| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- package sqlstore
- import (
- "fmt"
- "time"
- "github.com/go-xorm/xorm"
- "github.com/grafana/grafana/pkg/bus"
- m "github.com/grafana/grafana/pkg/models"
- )
- func init() {
- bus.AddHandler("sql", AddAccountUser)
- bus.AddHandler("sql", RemoveAccountUser)
- bus.AddHandler("sql", GetAccountUsers)
- }
- func AddAccountUser(cmd *m.AddAccountUserCommand) error {
- return inTransaction(func(sess *xorm.Session) error {
- entity := m.AccountUser{
- AccountId: cmd.AccountId,
- UserId: cmd.UserId,
- Role: cmd.Role,
- Created: time.Now(),
- Updated: time.Now(),
- }
- _, err := sess.Insert(&entity)
- return err
- })
- }
- func GetAccountUsers(query *m.GetAccountUsersQuery) error {
- query.Result = make([]*m.AccountUserDTO, 0)
- sess := x.Table("account_user")
- sess.Join("INNER", "user", fmt.Sprintf("account_user.user_id=%s.id", x.Dialect().Quote("user")))
- sess.Where("account_user.account_id=?", query.AccountId)
- sess.Cols("account_user.account_id", "account_user.user_id", "user.email", "user.login", "account_user.role")
- sess.Asc("user.email", "user.login")
- err := sess.Find(&query.Result)
- return err
- }
- func RemoveAccountUser(cmd *m.RemoveAccountUserCommand) error {
- return inTransaction(func(sess *xorm.Session) error {
- var rawSql = "DELETE FROM account_user WHERE account_id=? and user_id=?"
- _, err := sess.Exec(rawSql, cmd.AccountId, cmd.UserId)
- if err != nil {
- return err
- }
- // validate that there is an admin user left
- res, err := sess.Query("SELECT 1 from account_user WHERE account_id=? and role='Admin'", cmd.AccountId)
- if err != nil {
- return err
- }
- if len(res) == 0 {
- return m.ErrLastAccountAdmin
- }
- return err
- })
- }
|