384d479501b150941a1ed082242c2f7c4caa713d
[so.git] / common / src / main / java / org / onap / so / client / cds / BasicAuthClientInterceptor.java
1 /*
2  * Copyright (C) 2019 Bell Canada.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.so.client.cds;
17
18 import io.grpc.CallOptions;
19 import io.grpc.Channel;
20 import io.grpc.ClientCall;
21 import io.grpc.ClientCall.Listener;
22 import io.grpc.ClientInterceptor;
23 import io.grpc.ForwardingClientCall;
24 import io.grpc.Metadata;
25 import io.grpc.Metadata.Key;
26 import io.grpc.MethodDescriptor;
27
28 public class BasicAuthClientInterceptor implements ClientInterceptor {
29
30     private CDSProperties props;
31
32     public BasicAuthClientInterceptor(CDSProperties props) {
33         this.props = props;
34     }
35
36     @Override
37     public <ReqT, RespT> ClientCall<ReqT, RespT> interceptCall(
38         MethodDescriptor<ReqT, RespT> method,
39         CallOptions callOptions,
40         Channel channel) {
41
42         Key<String> authHeader = Key.of("Authorization", Metadata.ASCII_STRING_MARSHALLER);
43
44         return new ForwardingClientCall.SimpleForwardingClientCall<ReqT, RespT>(
45             channel.newCall(method, callOptions)) {
46             @Override
47             public void start(Listener<RespT> responseListener, Metadata headers) {
48                 headers.put(authHeader, props.getBasicAuth());
49                 super.start(responseListener, headers);
50             }
51         };
52     }
53 }