Merge "perform self release"
[logging-analytics.git] / reference / logging-filter / logging-filter-base / 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.core.Context;
29 import javax.ws.rs.core.MultivaluedMap;
30 import javax.ws.rs.ext.Providers;
31
32 @Priority(0)
33 public class MetricLogClientFilter
34         extends AbstractMetricLogFilter<ClientRequestContext, ClientResponseContext, MultivaluedMap<String, Object>>
35         implements ClientRequestFilter, ClientResponseFilter {
36
37     @Context
38     private Providers providers;
39
40     @Override
41     public void filter(ClientRequestContext clientRequest) {
42         pre(clientRequest, clientRequest.getHeaders());
43     }
44
45     @Override
46     public void filter(ClientRequestContext requestContext, ClientResponseContext responseContext) {
47         post(requestContext, responseContext);
48     }
49
50     @Override
51     protected void addHeader(MultivaluedMap<String, Object> requestHeaders, String headerName, String headerValue) {
52         requestHeaders.add(headerName, headerValue);
53     }
54
55     @Override
56     protected String getTargetServiceName(ClientRequestContext request) {
57         return request.getUri().toString();
58     }
59
60     @Override
61     protected String getServiceName(ClientRequestContext request) {
62         return request.getUri().getPath();
63     }
64
65     @Override
66     protected int getHttpStatusCode(ClientResponseContext response) {
67         return response.getStatus();
68     }
69
70     @Override
71     protected String getResponseCode(ClientResponseContext response) {
72         return String.valueOf(response.getStatus());
73     }
74
75     @Override
76     protected String getTargetEntity(ClientRequestContext request) {
77         return Constants.DefaultValues.UNKNOWN_TARGET_ENTITY;
78     }
79
80 }