-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathHttpUtils.java
More file actions
182 lines (165 loc) · 6.41 KB
/
HttpUtils.java
File metadata and controls
182 lines (165 loc) · 6.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/*
* Copyright (c) 2004-2024, University of Oslo
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* Neither the name of the HISP project nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.hisp.dhis.util;
import java.io.UnsupportedEncodingException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URLDecoder;
import java.nio.charset.StandardCharsets;
import java.util.Base64;
import java.util.regex.Pattern;
import lombok.AccessLevel;
import lombok.NoArgsConstructor;
import org.apache.hc.client5.http.classic.methods.HttpUriRequestBase;
import org.apache.hc.core5.http.message.BasicHttpRequest;
import org.apache.hc.core5.net.URIBuilder;
import org.hisp.dhis.Dhis2Config;
import org.hisp.dhis.auth.Authentication;
/** Utilities for HTTP communication. */
@NoArgsConstructor(access = AccessLevel.PRIVATE)
public class HttpUtils {
/** Pattern for matching a DHIS2 access token as part of a HTTP header value. */
public static final Pattern PATTERN_ACCESS_TOKEN = Pattern.compile("^ApiToken\\s+(.+)$");
/** Pattern for matching a Bearer API token as part of a HTTP header value. */
public static final Pattern PATTERN_BEARER_TOKEN = Pattern.compile("^Bearer\\s+(.+)$");
/** Pattern for matching a session identifier as part of a session cookie value. */
public static final Pattern PATTERN_SESSION_ID = Pattern.compile("JSESSIONID=(\\w+);.*");
/**
* Adds a HTTP header for authentication based on the {@link Authentication} of the given {@link
* Dhis2Config}.
*
* @param request the {@link HttpUriRequestBase}.
* @param config the {@link Dhis2Config}.
* @param <T> the request class type.
* @return the request object.
*/
public static <T extends HttpUriRequestBase> T withAuth(T request, Dhis2Config config) {
Authentication auth = config.getAuthentication();
if (auth.hasAuth()) {
request.setHeader(auth.getHttpHeaderAuthName(), auth.getHttpHeaderAuthValue());
}
return request;
}
/**
* Builds on URI without throwing checked exceptions.
*
* @param uriBuilder the {@link URIBuilder}.
* @return a {@link URI}.
*/
public static URI build(URIBuilder uriBuilder) {
try {
return uriBuilder.build();
} catch (URISyntaxException ex) {
throw new RuntimeException(ex);
}
}
/**
* Returns the string representing the given URI. The URI is decoded.
*
* @param uri the {@link URI}.
* @return a URI string.
*/
public static String asString(URI uri) {
try {
return URLDecoder.decode(uri.toString(), StandardCharsets.UTF_8.toString());
} catch (UnsupportedEncodingException ex) {
throw new RuntimeException(ex);
}
}
/**
* Returns the string representing the URI the given HTTP request. The URI is decoded.
*
* @param request the {@link BasicHttpRequest}.
* @return a URI string.
*/
public static String getUriAsString(BasicHttpRequest request) {
try {
return asString(request.getUri());
} catch (URISyntaxException ex) {
throw new RuntimeException(ex);
}
}
/**
* Returns a basic authentication string, on the format <code>Basic {auth-string}</code>, where
* the auth string is generated by Base64-encoding username:password.
*
* @param username the username.
* @param password the password.
* @return an encoded string.
*/
public static String getBasicAuthString(String username, String password) {
String value = String.format("%s:%s", username, password);
return "Basic " + Base64.getEncoder().encodeToString(value.getBytes());
}
/**
* Returns an API token authentication string, on the format <code>ApiToken {access-token}</code>.
*
* @param token the authentication token.
* @return an authentication token string.
*/
public static String getApiTokenAuthString(String token) {
return String.format("ApiToken %s", token);
}
/**
* Returns the API token from the given HTTP header value.
*
* @param value the header value.
* @return an access token, or null if not found.
*/
public static String getApiToken(String value) {
return RegexUtils.getFirstMatch(PATTERN_ACCESS_TOKEN, value);
}
/**
* Returns a bearer token authentication string, on the format <code>Bearer {access-token}</code>.
*
* @param token the authentication token.
* @return an authentication token string.
*/
public static String getBearerTokenAuthString(String token) {
return String.format("Bearer %s", token);
}
/**
* Returns a session token authentication string, on the format <code>JSESSIONID={session-id}
* </code>.
*
* @param sessionId the session identifier.
* @return an authentication session string.
*/
public static String getSessionIdString(String sessionId) {
return String.format("JSESSIONID=%s", sessionId);
}
/**
* Returns the bearer token value from the given authorization bearer token header value.
*
* @param value the header value.
* @return a bearer token, or null if not found.
*/
public static String getBearerToken(String value) {
return RegexUtils.getFirstMatch(PATTERN_BEARER_TOKEN, value);
}
}