1
+ using Grpc . Core ;
2
+ using Grpc . Core . Interceptors ;
3
+
4
+ namespace MyJetTools . Sdk . Grpc ;
5
+
6
+ public class SourceInterceptor : Interceptor
7
+ {
8
+ public static string AppName { get ; set ; }
9
+ public static string AppVersion { get ; set ; }
10
+ public static string AppHost { get ; set ; }
11
+
12
+ public const string GrpcSourceAppNameHeader = "source-app-name" ;
13
+ public const string GrpcSourceAppVersionHeader = "source-app-name" ;
14
+ public const string GrpcSourceAppHostHeader = "source-app-name" ;
15
+
16
+ public override TResponse BlockingUnaryCall < TRequest , TResponse > ( TRequest request , ClientInterceptorContext < TRequest , TResponse > context ,
17
+ BlockingUnaryCallContinuation < TRequest , TResponse > continuation )
18
+ {
19
+ context . Options . Headers ? . Add ( GrpcSourceAppNameHeader , AppName ) ;
20
+ context . Options . Headers ? . Add ( GrpcSourceAppVersionHeader , AppVersion ) ;
21
+ context . Options . Headers ? . Add ( GrpcSourceAppHostHeader , AppHost ) ;
22
+
23
+ return base . BlockingUnaryCall ( request , context , continuation ) ;
24
+ }
25
+
26
+ public override AsyncUnaryCall < TResponse > AsyncUnaryCall < TRequest , TResponse > ( TRequest request , ClientInterceptorContext < TRequest , TResponse > context ,
27
+ AsyncUnaryCallContinuation < TRequest , TResponse > continuation )
28
+ {
29
+ context . Options . Headers ? . Add ( GrpcSourceAppNameHeader , AppName ) ;
30
+ context . Options . Headers ? . Add ( GrpcSourceAppVersionHeader , AppVersion ) ;
31
+ context . Options . Headers ? . Add ( GrpcSourceAppHostHeader , AppHost ) ;
32
+
33
+ return base . AsyncUnaryCall ( request , context , continuation ) ;
34
+ }
35
+ }
0 commit comments