com.signalfx.shaded.jetty.websocket.api.util.WSURI Maven / Gradle / Ivy
Show all versions of signalfx-codahale Show documentation
//
// ========================================================================
// Copyright (c) 1995-2022 Mort Bay Consulting Pty Ltd and others.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the Eclipse Public License v1.0
// and Apache License v2.0 which accompanies this distribution.
//
// The Eclipse Public License is available at
// http://www.eclipse.org/legal/epl-v10.html
//
// The Apache License v2.0 is available at
// http://www.opensource.org/licenses/apache2.0.php
//
// You may elect to redistribute this code under either of these licenses.
// ========================================================================
//
package com.signalfx.shaded.jetty.websocket.api.util;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.Objects;
// @checkstyle-disable-check : AbbreviationAsWordInNameCheck
/**
* Utility methods for converting a {@link URI} between an HTTP(S) and WS(S) URI.
*/
public final class WSURI
{
/**
* Convert to HTTP http
or https
scheme URIs.
*
* Converting ws
and wss
URIs to their HTTP equivalent
*
* @param inputUri the input URI
* @return the HTTP scheme URI for the input URI.
* @throws URISyntaxException if unable to convert the input URI
*/
public static URI toHttp(final URI inputUri) throws URISyntaxException
{
Objects.requireNonNull(inputUri, "Input URI must not be null");
String wsScheme = inputUri.getScheme();
if ("http".equalsIgnoreCase(wsScheme) || "https".equalsIgnoreCase(wsScheme))
{
// leave alone
return inputUri;
}
if ("ws".equalsIgnoreCase(wsScheme))
{
// convert to http
return new URI("http" + inputUri.toString().substring(wsScheme.length()));
}
if ("wss".equalsIgnoreCase(wsScheme))
{
// convert to https
return new URI("https" + inputUri.toString().substring(wsScheme.length()));
}
throw new URISyntaxException(inputUri.toString(), "Unrecognized WebSocket scheme");
}
/**
* Convert to WebSocket ws
or wss
scheme URIs
*
* Converting http
and https
URIs to their WebSocket equivalent
*
* @param inputUrl the input URI
* @return the WebSocket scheme URI for the input URI.
* @throws URISyntaxException if unable to convert the input URI
*/
public static URI toWebsocket(CharSequence inputUrl) throws URISyntaxException
{
return toWebsocket(new URI(inputUrl.toString()));
}
/**
* Convert to WebSocket ws
or wss
scheme URIs
*
* Converting http
and https
URIs to their WebSocket equivalent
*
* @param inputUrl the input URI
* @param query the optional query string
* @return the WebSocket scheme URI for the input URI.
* @throws URISyntaxException if unable to convert the input URI
*/
public static URI toWebsocket(CharSequence inputUrl, String query) throws URISyntaxException
{
if (query == null)
{
return toWebsocket(new URI(inputUrl.toString()));
}
return toWebsocket(new URI(inputUrl.toString() + '?' + query));
}
/**
* Convert to WebSocket ws
or wss
scheme URIs
*
*
* Converting http
and https
URIs to their WebSocket equivalent
*
* @param inputUri the input URI
* @return the WebSocket scheme URI for the input URI.
* @throws URISyntaxException if unable to convert the input URI
*/
public static URI toWebsocket(final URI inputUri) throws URISyntaxException
{
Objects.requireNonNull(inputUri, "Input URI must not be null");
String httpScheme = inputUri.getScheme();
if ("ws".equalsIgnoreCase(httpScheme) || "wss".equalsIgnoreCase(httpScheme))
{
// keep as-is
return inputUri;
}
if ("http".equalsIgnoreCase(httpScheme))
{
// convert to ws
return new URI("ws" + inputUri.toString().substring(httpScheme.length()));
}
if ("https".equalsIgnoreCase(httpScheme))
{
// convert to wss
return new URI("wss" + inputUri.toString().substring(httpScheme.length()));
}
throw new URISyntaxException(inputUri.toString(), "Unrecognized HTTP scheme");
}
}