grafana/pkg/middleware/auth.go

77 lines
1.5 KiB
Go
Raw Normal View History

2014-10-05 14:13:01 -05:00
package middleware
import (
"errors"
"strconv"
"strings"
2015-01-14 07:25:12 -06:00
"github.com/Unknwon/macaron"
"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
)
type AuthOptions struct {
ReqAdmin bool
ReqSignedIn bool
}
func getRequestAccountId(c *Context) (int64, error) {
2015-01-14 07:25:12 -06:00
accountId := c.Session.Get("accountId")
2014-10-05 14:13:01 -05:00
if accountId != nil {
return accountId.(int64), nil
}
// localhost render query
urlQuery := c.Req.URL.Query()
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)
2015-01-14 07:25:12 -06:00
c.Session.Set("accountId", accId)
2014-10-05 14:13:01 -05:00
accountId = accId
}
// check api token
header := c.Req.Header.Get("Authorization")
parts := strings.SplitN(header, " ", 2)
if len(parts) == 2 || parts[0] == "Bearer" {
token := parts[1]
userQuery := m.GetAccountByTokenQuery{Token: token}
if err := bus.Dispatch(&userQuery); err != nil {
return -1, err
}
return userQuery.Result.Id, nil
}
// anonymous gues user
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-10-05 14:13:01 -05:00
}
func authDenied(c *Context) {
2015-01-14 07:25:12 -06:00
if c.IsApiRequest() {
c.JsonApiErr(401, "Access denied", nil)
}
2015-01-04 14:03:40 -06:00
c.Redirect(setting.AppSubUrl + "/login")
2014-10-05 14:13:01 -05:00
}
func Auth(options *AuthOptions) macaron.Handler {
return func(c *Context) {
if !c.IsSignedIn && options.ReqSignedIn {
authDenied(c)
return
}
if !c.IsAdmin && options.ReqAdmin {
authDenied(c)
return
}
2014-10-05 14:13:01 -05:00
}
}