Package org.ametys.core.util
Class HttpUrlUtils
java.lang.Object
org.ametys.core.util.HttpUrlUtils
- All Implemented Interfaces:
Component
Utility class for HTTP urls.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic enum
The status of HTTP checkstatic final record
Represent the result of a check and a potential message -
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncheckHttpUrl
(String httpUrl) Method to check a HTTP url from client side.static HttpUrlUtils.HttpCheckReport
checkHttpUrl
(String httpUrl, String userAgent, String method, int timeout, int readTimeOut, boolean followRedirects) Check the HTTP urlstatic HttpUrlUtils.HttpCheckReport
checkHttpUrl
(String httpUrl, String userAgent, String method, int timeout, int readTimeOut, boolean followRedirects, Map<String, String> requestHeaders) Check the HTTP urlstatic HttpUrlUtils.HttpCheckReport
checkHttpUrl
(URL url, String userAgent, String method, int timeout, int readTimeOut, boolean followRedirects, Map<String, String> requestHeaders) Check the HTTP urlstatic HttpURLConnection
prepareConnection
(String url, String userAgent, String method, int timeout, int readTimeOut, boolean followRedirects) Prepare the connection to the remote urlstatic HttpURLConnection
prepareConnection
(String httpUrl, String userAgent, String method, int timeout, int readTimeOut, boolean followRedirects, Map<String, String> requestHeaders) Prepare the connection to the remote urlstatic HttpURLConnection
prepareConnection
(URL url, String userAgent, String method, int timeout, int readTimeOut, boolean followRedirects, Map<String, String> requestHeaders) Prepare the connection to the remote url
-
Field Details
-
ROLE
The Avalon role -
HTTP_URL_VALIDATOR
Regexp for HTTP url -
HTTP_REDIRECT_TEMP
HTTP Status-Code 307: Temporay Redirect- See Also:
-
HTTP_REDIRECT_PERM
HTTP Status-Code 308: Temporay Redirect- See Also:
-
-
Constructor Details
-
HttpUrlUtils
public HttpUrlUtils()
-
-
Method Details
-
prepareConnection
public static HttpURLConnection prepareConnection(String url, String userAgent, String method, int timeout, int readTimeOut, boolean followRedirects) throws MalformedURLException, IOException Prepare the connection to the remote url- Parameters:
url
- The urluserAgent
- The user agent. Can be null.method
- The method for teh URL request. Can be null.timeout
- The connection timeout in milliseconds. Set to -1 to not set a timeout.readTimeOut
- The read timeout in milliseconds. Set to -1 to not set a timeout.followRedirects
- Sets to true to follow HTTP redirects- Returns:
- The URL connection
- Throws:
MalformedURLException
- If the given url is a malformed URLIOException
- if an I/O exception occurs
-
prepareConnection
public static HttpURLConnection prepareConnection(String httpUrl, String userAgent, String method, int timeout, int readTimeOut, boolean followRedirects, Map<String, String> requestHeaders) throws MalformedURLException, IOExceptionPrepare the connection to the remote url- Parameters:
httpUrl
- The HTTP urluserAgent
- The user agent. Can be null.method
- The method for teh URL request. Can be null.timeout
- The connection timeout in milliseconds. Set to -1 to not set a timeout.readTimeOut
- The read timeout in milliseconds. Set to -1 to not set a timeout.followRedirects
- Sets to true to follow HTTP redirectsrequestHeaders
- The request headers.- Returns:
- The URL connection
- Throws:
MalformedURLException
- If the given url is a malformed URLIOException
- if an I/O exception occurs
-
prepareConnection
public static HttpURLConnection prepareConnection(URL url, String userAgent, String method, int timeout, int readTimeOut, boolean followRedirects, Map<String, String> requestHeaders) throws MalformedURLException, IOExceptionPrepare the connection to the remote url- Parameters:
url
- The urluserAgent
- The user agent. Can be null.method
- The method for teh URL request. Can be null.timeout
- The connection timeout in milliseconds. Set to -1 to not set a timeout.readTimeOut
- The read timeout in milliseconds. Set to -1 to not set a timeout.followRedirects
- Sets to true to follow HTTP redirectsrequestHeaders
- The request headers.- Returns:
- The URL connection
- Throws:
MalformedURLException
- If the given url is a malformed URLIOException
- if an I/O exception occurs
-
checkHttpUrl
public static HttpUrlUtils.HttpCheckReport checkHttpUrl(String httpUrl, String userAgent, String method, int timeout, int readTimeOut, boolean followRedirects) Check the HTTP url- Parameters:
httpUrl
- The HTTP url to testuserAgent
- The user agent. Can be null.method
- The method for teh URL request. Can be null.timeout
- The connection timeout in milliseconds. Set to -1 to not set a timeout.readTimeOut
- The read timeout in milliseconds. Set to -1 to not set a timeout.followRedirects
- Sets to true to follow HTTP redirects- Returns:
- The URL connection
-
checkHttpUrl
public static HttpUrlUtils.HttpCheckReport checkHttpUrl(String httpUrl, String userAgent, String method, int timeout, int readTimeOut, boolean followRedirects, Map<String, String> requestHeaders) Check the HTTP url- Parameters:
httpUrl
- The url to testuserAgent
- The user agent. Can be null.method
- The method for teh URL request. Can be null.timeout
- The connection timeout in milliseconds. Set to -1 to not set a timeout.readTimeOut
- The read timeout in milliseconds. Set to -1 to not set a timeout.followRedirects
- Sets to true to follow HTTP redirectsrequestHeaders
- The request headers.- Returns:
- The URL connection
-
checkHttpUrl
public static HttpUrlUtils.HttpCheckReport checkHttpUrl(URL url, String userAgent, String method, int timeout, int readTimeOut, boolean followRedirects, Map<String, String> requestHeaders) Check the HTTP url- Parameters:
url
- The url to testuserAgent
- The user agent. Can be null.method
- The method for teh URL request. Can be null.timeout
- The connection timeout in milliseconds. Set to -1 to not set a timeout.readTimeOut
- The read timeout in milliseconds. Set to -1 to not set a timeout.followRedirects
- Sets to true to follow HTTP redirectsrequestHeaders
- The request headers.- Returns:
- The URL connection
-
checkHttpUrl
Method to check a HTTP url from client side. The HTTP redirects will be followed.- Parameters:
httpUrl
- the http url to check- Returns:
- the result of the check
-