2014-10-05 14:13:01 -05:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/Unknwon/macaron"
|
|
|
|
"github.com/macaron-contrib/session"
|
2014-11-20 08:19:44 -06:00
|
|
|
|
2014-12-19 06:40:02 -06:00
|
|
|
"github.com/torkelo/grafana-pro/pkg/bus"
|
|
|
|
m "github.com/torkelo/grafana-pro/pkg/models"
|
2015-01-04 14:03:40 -06:00
|
|
|
"github.com/torkelo/grafana-pro/pkg/setting"
|
2014-10-05 14:13:01 -05:00
|
|
|
)
|
|
|
|
|
2014-11-20 05:11:07 -06:00
|
|
|
func authGetRequestAccountId(c *Context, sess session.Store) (int64, error) {
|
2014-10-05 14:13:01 -05:00
|
|
|
accountId := sess.Get("accountId")
|
|
|
|
|
|
|
|
urlQuery := c.Req.URL.Query()
|
2015-01-07 09:37:24 -06:00
|
|
|
|
|
|
|
// TODO: check that this is a localhost request
|
2014-10-05 14:13:01 -05:00
|
|
|
if len(urlQuery["render"]) > 0 {
|
2014-12-01 15:25:57 -06:00
|
|
|
accId, _ := strconv.ParseInt(urlQuery["accountId"][0], 10, 64)
|
2014-10-05 14:13:01 -05:00
|
|
|
sess.Set("accountId", accId)
|
|
|
|
accountId = accId
|
|
|
|
}
|
|
|
|
|
|
|
|
if accountId == nil {
|
2015-01-07 09:37:24 -06:00
|
|
|
if setting.Anonymous {
|
|
|
|
return setting.AnonymousAccountId, nil
|
|
|
|
}
|
|
|
|
|
2014-10-05 14:13:01 -05:00
|
|
|
return -1, errors.New("Auth: session account id not found")
|
|
|
|
}
|
|
|
|
|
2014-11-20 05:11:07 -06:00
|
|
|
return accountId.(int64), nil
|
2014-10-05 14:13:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func authDenied(c *Context) {
|
2015-01-04 14:03:40 -06:00
|
|
|
c.Redirect(setting.AppSubUrl + "/login")
|
2014-10-05 14:13:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func Auth() macaron.Handler {
|
|
|
|
return func(c *Context, sess session.Store) {
|
|
|
|
accountId, err := authGetRequestAccountId(c, sess)
|
|
|
|
|
|
|
|
if err != nil && c.Req.URL.Path != "/login" {
|
|
|
|
authDenied(c)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-12-19 06:40:02 -06:00
|
|
|
userQuery := m.GetAccountByIdQuery{Id: accountId}
|
|
|
|
err = bus.Dispatch(&userQuery)
|
2014-10-05 14:13:01 -05:00
|
|
|
if err != nil {
|
|
|
|
authDenied(c)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-12-19 06:40:02 -06:00
|
|
|
usingQuery := m.GetAccountByIdQuery{Id: userQuery.Result.UsingAccountId}
|
|
|
|
err = bus.Dispatch(&usingQuery)
|
2014-10-05 14:13:01 -05:00
|
|
|
if err != nil {
|
|
|
|
authDenied(c)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-12-19 06:40:02 -06:00
|
|
|
c.UserAccount = userQuery.Result
|
|
|
|
c.Account = usingQuery.Result
|
2014-10-05 14:13:01 -05:00
|
|
|
}
|
|
|
|
}
|