Files

33 lines
906 B
Go

package server
import (
"context"
"github.com/grafana/grafana/pkg/infra/log"
"github.com/grafana/grafana/pkg/setting"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
claims "github.com/grafana/authlib/types"
)
func authorize(ctx context.Context, namespace string, ss setting.ZanzanaServerSettings) error {
logger := log.New("zanzana.server.auth")
if ss.AllowInsecure {
logger.Debug("AllowInsecure=true; skipping authorization check")
return nil
}
c, ok := claims.AuthInfoFrom(ctx)
if !ok {
return status.Errorf(codes.Unauthenticated, "unauthenticated")
}
if c.GetNamespace() == "" || namespace == "" {
return status.Errorf(codes.Unauthenticated, "unauthenticated")
}
if !claims.NamespaceMatches(c.GetNamespace(), namespace) {
return status.Errorf(codes.PermissionDenied, "token namespace %s does not match request namespace", c.GetNamespace())
}
return nil
}