mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
b3d8787921
* feat: add new services * improve demos and comments * remove unused field * add comment to demo proto calls * Apply suggestions from code review Co-authored-by: Silvan <silvan.reusser@gmail.com> --------- Co-authored-by: Silvan <silvan.reusser@gmail.com>
22 lines
535 B
Go
22 lines
535 B
Go
package middleware
|
|
|
|
import (
|
|
"context"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
"github.com/zitadel/zitadel/internal/api/service"
|
|
_ "github.com/zitadel/zitadel/internal/statik"
|
|
)
|
|
|
|
func ServiceHandler() grpc.UnaryServerInterceptor {
|
|
return func(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (interface{}, error) {
|
|
namer, ok := info.Server.(interface{ AppName() string })
|
|
if !ok {
|
|
return handler(ctx, req)
|
|
}
|
|
ctx = service.WithService(ctx, namer.AppName())
|
|
return handler(ctx, req)
|
|
}
|
|
}
|