Enhancements for the aai-common library
[aai/aai-common.git] / aai-els-onap-logging / src / main / java / org / onap / logging / filter / base / MetricLogClientFilter.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - Logging
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.logging.filter.base;
22
23 import javax.annotation.Priority;
24 import javax.ws.rs.client.ClientRequestContext;
25 import javax.ws.rs.client.ClientRequestFilter;
26 import javax.ws.rs.client.ClientResponseContext;
27 import javax.ws.rs.client.ClientResponseFilter;
28 import javax.ws.rs.container.PreMatching;
29 import javax.ws.rs.core.Context;
30 import javax.ws.rs.core.MultivaluedMap;
31 import javax.ws.rs.ext.Provider;
32 import javax.ws.rs.ext.Providers;
33
34 @Priority(0)
35 public class MetricLogClientFilter
36         extends AbstractMetricLogFilter<ClientRequestContext, ClientResponseContext, MultivaluedMap<String, Object>>
37         implements ClientRequestFilter, ClientResponseFilter {
38
39     @Context
40     private Providers providers;
41
42     @Override
43     public void filter(ClientRequestContext clientRequest) {
44         pre(clientRequest, clientRequest.getHeaders());
45     }
46
47     @Override
48     public void filter(ClientRequestContext requestContext, ClientResponseContext responseContext) {
49         post(requestContext, responseContext);
50     }
51
52     @Override
53     protected void addHeader(MultivaluedMap<String, Object> requestHeaders, String headerName, String headerValue) {
54         requestHeaders.add(headerName, headerValue);
55     }
56
57     @Override
58     protected String getTargetServiceName(ClientRequestContext request) {
59         return request.getUri().toString();
60     }
61
62     @Override
63     protected String getServiceName(ClientRequestContext request) {
64         return request.getUri().getPath();
65     }
66
67     @Override
68     protected int getHttpStatusCode(ClientResponseContext response) {
69         return response.getStatus();
70     }
71
72     @Override
73     protected String getResponseCode(ClientResponseContext response) {
74         return String.valueOf(response.getStatus());
75     }
76
77     @Override
78     protected String getTargetEntity(ClientRequestContext request) {
79         return Constants.DefaultValues.UNKNOWN_TARGET_ENTITY;
80     }
81
82 }