mirror of
https://github.com/grafana/grafana.git
synced 2025-01-10 08:03:58 -06:00
57 lines
1.8 KiB
Go
57 lines
1.8 KiB
Go
package authorizer
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"k8s.io/apiserver/pkg/authorization/authorizer"
|
|
|
|
"github.com/grafana/grafana/pkg/apimachinery/identity"
|
|
"github.com/grafana/grafana/pkg/infra/log"
|
|
"github.com/grafana/grafana/pkg/services/org"
|
|
)
|
|
|
|
var _ authorizer.Authorizer = &orgRoleAuthorizer{}
|
|
|
|
type orgRoleAuthorizer struct {
|
|
log log.Logger
|
|
}
|
|
|
|
func newOrgRoleAuthorizer(orgService org.Service) *orgRoleAuthorizer {
|
|
return &orgRoleAuthorizer{log: log.New("grafana-apiserver.authorizer.orgrole")}
|
|
}
|
|
|
|
func (auth orgRoleAuthorizer) Authorize(ctx context.Context, a authorizer.Attributes) (authorized authorizer.Decision, reason string, err error) {
|
|
signedInUser, err := identity.GetRequester(ctx)
|
|
if err != nil {
|
|
return authorizer.DecisionDeny, fmt.Sprintf("error getting signed in user: %v", err), nil
|
|
}
|
|
|
|
orgRole := signedInUser.GetOrgRole()
|
|
switch orgRole {
|
|
case org.RoleAdmin:
|
|
return authorizer.DecisionAllow, "", nil
|
|
case org.RoleEditor:
|
|
switch a.GetVerb() {
|
|
case "get", "list", "watch", "create", "update", "patch", "delete", "put", "post":
|
|
return authorizer.DecisionAllow, "", nil
|
|
default:
|
|
return authorizer.DecisionDeny, errorMessageForGrafanaOrgRole(orgRole, a), nil
|
|
}
|
|
case org.RoleViewer:
|
|
switch a.GetVerb() {
|
|
case "get", "list", "watch":
|
|
return authorizer.DecisionAllow, "", nil
|
|
default:
|
|
return authorizer.DecisionDeny, errorMessageForGrafanaOrgRole(orgRole, a), nil
|
|
}
|
|
case org.RoleNone:
|
|
return authorizer.DecisionDeny, errorMessageForGrafanaOrgRole(orgRole, a), nil
|
|
}
|
|
return authorizer.DecisionDeny, "", nil
|
|
}
|
|
|
|
func errorMessageForGrafanaOrgRole(orgRole identity.RoleType, a authorizer.Attributes) string {
|
|
return fmt.Sprintf("Grafana org role (%s) didn't allow %s access on requested resource=%s, path=%s", orgRole, a.GetVerb(), a.GetResource(), a.GetPath())
|
|
}
|