2020-03-24 13:15:01 +00:00
|
|
|
package middleware
|
2020-03-23 06:01:59 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-07-08 11:56:37 +00:00
|
|
|
|
2020-03-23 06:01:59 +00:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
"google.golang.org/grpc/status"
|
|
|
|
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/api/authz"
|
|
|
|
grpc_util "github.com/zitadel/zitadel/internal/api/grpc"
|
|
|
|
"github.com/zitadel/zitadel/internal/api/http"
|
|
|
|
"github.com/zitadel/zitadel/internal/telemetry/tracing"
|
2020-03-23 06:01:59 +00:00
|
|
|
)
|
|
|
|
|
2020-07-08 11:56:37 +00:00
|
|
|
func AuthorizationInterceptor(verifier *authz.TokenVerifier, authConfig authz.Config) grpc.UnaryServerInterceptor {
|
2020-03-23 06:01:59 +00:00
|
|
|
return func(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (interface{}, error) {
|
2020-07-08 11:56:37 +00:00
|
|
|
return authorize(ctx, req, info, handler, verifier, authConfig)
|
|
|
|
}
|
|
|
|
}
|
2020-03-23 06:01:59 +00:00
|
|
|
|
2020-10-21 08:18:34 +00:00
|
|
|
func authorize(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler, verifier *authz.TokenVerifier, authConfig authz.Config) (_ interface{}, err error) {
|
2020-07-08 11:56:37 +00:00
|
|
|
authOpt, needsToken := verifier.CheckAuthMethod(info.FullMethod)
|
|
|
|
if !needsToken {
|
2020-03-23 06:01:59 +00:00
|
|
|
return handler(ctx, req)
|
|
|
|
}
|
2020-07-08 11:56:37 +00:00
|
|
|
|
2020-12-14 12:34:05 +00:00
|
|
|
authCtx, span := tracing.NewServerInterceptorSpan(ctx)
|
2020-11-20 06:57:39 +00:00
|
|
|
defer func() { span.EndWithError(err) }()
|
|
|
|
|
2020-12-14 12:34:05 +00:00
|
|
|
authToken := grpc_util.GetAuthorizationHeader(authCtx)
|
2020-07-08 11:56:37 +00:00
|
|
|
if authToken == "" {
|
|
|
|
return nil, status.Error(codes.Unauthenticated, "auth header missing")
|
|
|
|
}
|
|
|
|
|
2023-10-13 12:37:35 +00:00
|
|
|
orgID, orgDomain := orgIDAndDomainFromRequest(authCtx, req)
|
2023-05-05 15:34:53 +00:00
|
|
|
ctxSetter, err := authz.CheckUserAuthorization(authCtx, req, authToken, orgID, orgDomain, verifier, authConfig, authOpt, info.FullMethod)
|
2020-07-08 11:56:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-10-21 08:18:34 +00:00
|
|
|
span.End()
|
2020-12-14 12:34:05 +00:00
|
|
|
return handler(ctxSetter(ctx), req)
|
2020-03-23 06:01:59 +00:00
|
|
|
}
|
2023-04-26 05:47:57 +00:00
|
|
|
|
2023-10-13 12:37:35 +00:00
|
|
|
func orgIDAndDomainFromRequest(ctx context.Context, req interface{}) (id, domain string) {
|
|
|
|
orgID := grpc_util.GetHeader(ctx, http.ZitadelOrgID)
|
|
|
|
o, ok := req.(OrganizationFromRequest)
|
|
|
|
if !ok {
|
|
|
|
return orgID, ""
|
|
|
|
}
|
|
|
|
id = o.OrganizationFromRequest().ID
|
|
|
|
domain = o.OrganizationFromRequest().Domain
|
|
|
|
if id != "" || domain != "" {
|
|
|
|
return id, domain
|
|
|
|
}
|
|
|
|
// check if the deprecated organisation is used.
|
|
|
|
// to be removed before going GA (https://github.com/zitadel/zitadel/issues/6718)
|
|
|
|
id = o.OrganisationFromRequest().ID
|
|
|
|
domain = o.OrganisationFromRequest().Domain
|
|
|
|
if id != "" || domain != "" {
|
|
|
|
return id, domain
|
|
|
|
}
|
|
|
|
return orgID, domain
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: will be removed in favor of OrganizationFromRequest (https://github.com/zitadel/zitadel/issues/6718)
|
2023-05-04 08:50:19 +00:00
|
|
|
type OrganisationFromRequest interface {
|
2023-10-13 12:37:35 +00:00
|
|
|
OrganisationFromRequest() *Organization
|
2023-09-13 12:43:01 +00:00
|
|
|
}
|
|
|
|
|
2023-10-13 12:37:35 +00:00
|
|
|
type Organization struct {
|
2023-09-13 12:43:01 +00:00
|
|
|
ID string
|
|
|
|
Domain string
|
2023-04-26 05:47:57 +00:00
|
|
|
}
|
2023-10-13 12:37:35 +00:00
|
|
|
|
|
|
|
type OrganizationFromRequest interface {
|
|
|
|
OrganizationFromRequest() *Organization
|
|
|
|
OrganisationFromRequest
|
|
|
|
}
|