2014-10-05 14:13:01 -05:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
2015-01-27 05:05:23 -06:00
|
|
|
"net/url"
|
2020-11-20 12:30:37 -06:00
|
|
|
"regexp"
|
2020-07-06 07:59:00 -05:00
|
|
|
"strconv"
|
2015-01-14 02:33:34 -06:00
|
|
|
"strings"
|
2014-11-20 08:19:44 -06:00
|
|
|
|
2019-03-05 05:41:01 -06:00
|
|
|
macaron "gopkg.in/macaron.v1"
|
2015-01-14 07:25:12 -06:00
|
|
|
|
2020-12-11 04:44:44 -06:00
|
|
|
"github.com/grafana/grafana/pkg/middleware/cookies"
|
2020-02-28 05:50:58 -06:00
|
|
|
"github.com/grafana/grafana/pkg/models"
|
2015-02-05 03:37:13 -06:00
|
|
|
"github.com/grafana/grafana/pkg/setting"
|
2014-10-05 14:13:01 -05:00
|
|
|
)
|
|
|
|
|
2015-01-15 05:16:54 -06:00
|
|
|
type AuthOptions struct {
|
2015-01-16 07:32:18 -06:00
|
|
|
ReqGrafanaAdmin bool
|
|
|
|
ReqSignedIn bool
|
2015-01-15 05:16:54 -06:00
|
|
|
}
|
|
|
|
|
2020-02-28 05:50:58 -06:00
|
|
|
func accessForbidden(c *models.ReqContext) {
|
2015-01-14 07:25:12 -06:00
|
|
|
if c.IsApiRequest() {
|
2015-09-08 03:46:31 -05:00
|
|
|
c.JsonApiErr(403, "Permission denied", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-02-05 11:17:47 -06:00
|
|
|
c.Redirect(setting.AppSubUrl + "/")
|
2015-09-08 03:46:31 -05:00
|
|
|
}
|
|
|
|
|
2020-02-28 05:50:58 -06:00
|
|
|
func notAuthorized(c *models.ReqContext) {
|
2015-09-08 03:46:31 -05:00
|
|
|
if c.IsApiRequest() {
|
|
|
|
c.JsonApiErr(401, "Unauthorized", nil)
|
2015-01-27 05:05:23 -06:00
|
|
|
return
|
2015-01-14 07:25:12 -06:00
|
|
|
}
|
|
|
|
|
2020-03-11 04:04:48 -05:00
|
|
|
redirectTo := c.Req.RequestURI
|
|
|
|
if setting.AppSubUrl != "" && !strings.HasPrefix(redirectTo, setting.AppSubUrl) {
|
|
|
|
redirectTo = setting.AppSubUrl + c.Req.RequestURI
|
|
|
|
}
|
2018-02-15 03:56:29 -06:00
|
|
|
|
2020-11-20 12:30:37 -06:00
|
|
|
// remove any forceLogin=true params
|
|
|
|
redirectTo = removeForceLoginParams(redirectTo)
|
|
|
|
|
2020-12-11 04:44:44 -06:00
|
|
|
cookies.WriteCookie(c.Resp, "redirect_to", url.QueryEscape(redirectTo), 0, nil)
|
2015-01-04 14:03:40 -06:00
|
|
|
c.Redirect(setting.AppSubUrl + "/login")
|
2014-10-05 14:13:01 -05:00
|
|
|
}
|
|
|
|
|
2020-11-20 12:30:37 -06:00
|
|
|
var forceLoginParamsRegexp = regexp.MustCompile(`&?forceLogin=true`)
|
|
|
|
|
|
|
|
func removeForceLoginParams(str string) string {
|
|
|
|
return forceLoginParamsRegexp.ReplaceAllString(str, "")
|
|
|
|
}
|
|
|
|
|
2020-02-28 05:50:58 -06:00
|
|
|
func EnsureEditorOrViewerCanEdit(c *models.ReqContext) {
|
|
|
|
if !c.SignedInUser.HasRole(models.ROLE_EDITOR) && !setting.ViewersCanEdit {
|
2019-03-05 05:41:01 -06:00
|
|
|
accessForbidden(c)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-28 05:50:58 -06:00
|
|
|
func RoleAuth(roles ...models.RoleType) macaron.Handler {
|
|
|
|
return func(c *models.ReqContext) {
|
2015-01-16 08:28:44 -06:00
|
|
|
ok := false
|
|
|
|
for _, role := range roles {
|
2015-02-23 13:07:49 -06:00
|
|
|
if role == c.OrgRole {
|
2015-01-16 08:28:44 -06:00
|
|
|
ok = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !ok {
|
2015-09-08 03:46:31 -05:00
|
|
|
accessForbidden(c)
|
2015-01-16 08:28:44 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-15 05:16:54 -06:00
|
|
|
func Auth(options *AuthOptions) macaron.Handler {
|
2020-02-28 05:50:58 -06:00
|
|
|
return func(c *models.ReqContext) {
|
2020-07-06 07:59:00 -05:00
|
|
|
forceLogin := false
|
|
|
|
if c.AllowAnonymous {
|
|
|
|
forceLoginParam, err := strconv.ParseBool(c.Req.URL.Query().Get("forceLogin"))
|
|
|
|
if err == nil {
|
|
|
|
forceLogin = forceLoginParam
|
|
|
|
}
|
2020-10-23 09:34:35 -05:00
|
|
|
|
|
|
|
if !forceLogin {
|
|
|
|
orgIDValue := c.Req.URL.Query().Get("orgId")
|
|
|
|
orgID, err := strconv.ParseInt(orgIDValue, 10, 64)
|
|
|
|
if err == nil && orgID > 0 && orgID != c.OrgId {
|
|
|
|
forceLogin = true
|
|
|
|
}
|
|
|
|
}
|
2020-07-06 07:59:00 -05:00
|
|
|
}
|
2020-06-16 08:33:44 -05:00
|
|
|
requireLogin := !c.AllowAnonymous || forceLogin
|
|
|
|
if !c.IsSignedIn && options.ReqSignedIn && requireLogin {
|
2015-09-08 03:46:31 -05:00
|
|
|
notAuthorized(c)
|
2015-01-15 05:16:54 -06:00
|
|
|
return
|
|
|
|
}
|
2015-01-14 02:33:34 -06:00
|
|
|
|
2015-09-08 03:46:31 -05:00
|
|
|
if !c.IsGrafanaAdmin && options.ReqGrafanaAdmin {
|
|
|
|
accessForbidden(c)
|
2015-01-15 05:16:54 -06:00
|
|
|
return
|
2015-01-14 02:33:34 -06:00
|
|
|
}
|
2014-10-05 14:13:01 -05:00
|
|
|
}
|
|
|
|
}
|
2019-03-06 03:27:38 -06:00
|
|
|
|
2019-03-14 04:02:46 -05:00
|
|
|
// AdminOrFeatureEnabled creates a middleware that allows access
|
|
|
|
// if the signed in user is either an Org Admin or if the
|
|
|
|
// feature flag is enabled.
|
|
|
|
// Intended for when feature flags open up access to APIs that
|
|
|
|
// are otherwise only available to admins.
|
|
|
|
func AdminOrFeatureEnabled(enabled bool) macaron.Handler {
|
2020-02-28 05:50:58 -06:00
|
|
|
return func(c *models.ReqContext) {
|
|
|
|
if c.OrgRole == models.ROLE_ADMIN {
|
2019-03-13 04:38:09 -05:00
|
|
|
return
|
2019-03-06 03:27:38 -06:00
|
|
|
}
|
|
|
|
|
2019-03-13 04:38:09 -05:00
|
|
|
if !enabled {
|
2019-03-06 03:27:38 -06:00
|
|
|
accessForbidden(c)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-02 08:15:46 -05:00
|
|
|
|
2021-02-17 02:51:50 -06:00
|
|
|
// SnapshotPublicModeOrSignedIn creates a middleware that allows access
|
|
|
|
// if snapshot public mode is enabled or if user is signed in.
|
2020-12-11 04:44:44 -06:00
|
|
|
func SnapshotPublicModeOrSignedIn(cfg *setting.Cfg) macaron.Handler {
|
2020-02-28 05:50:58 -06:00
|
|
|
return func(c *models.ReqContext) {
|
2020-12-11 04:44:44 -06:00
|
|
|
if cfg.SnapshotPublicMode {
|
2019-09-02 08:15:46 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-02-17 02:51:50 -06:00
|
|
|
if !c.IsSignedIn {
|
|
|
|
notAuthorized(c)
|
|
|
|
return
|
2019-09-02 08:15:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|