2020-11-17 12:44:37 +00:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2023-04-11 13:37:42 +00:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/api/service"
|
|
|
|
_ "github.com/zitadel/zitadel/internal/statik"
|
2020-11-17 12:44:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func ServiceHandler() grpc.UnaryServerInterceptor {
|
|
|
|
return func(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (interface{}, error) {
|
2023-04-11 13:37:42 +00:00
|
|
|
namer, ok := info.Server.(interface{ AppName() string })
|
|
|
|
if !ok {
|
|
|
|
return handler(ctx, req)
|
|
|
|
}
|
2020-11-17 12:44:37 +00:00
|
|
|
ctx = service.WithService(ctx, namer.AppName())
|
|
|
|
return handler(ctx, req)
|
|
|
|
}
|
|
|
|
}
|