org.keycloak.models.KeycloakUriInfo Maven / Gradle / Ivy
/*
* Copyright 2016 Red Hat, Inc. and/or its affiliates
* and other contributors as indicated by the @author tags.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.keycloak.models;
import org.jboss.resteasy.specimpl.ResteasyUriBuilder;
import org.keycloak.urls.HostnameProvider;
import org.keycloak.urls.UrlType;
import javax.ws.rs.core.MultivaluedMap;
import javax.ws.rs.core.PathSegment;
import javax.ws.rs.core.UriBuilder;
import javax.ws.rs.core.UriInfo;
import java.net.URI;
import java.util.List;
public class KeycloakUriInfo implements UriInfo {
private final UriInfo delegate;
private final String hostname;
private final String scheme;
private final int port;
private final String contextPath;
private URI absolutePath;
private URI requestURI;
private URI baseURI;
public KeycloakUriInfo(KeycloakSession session, UrlType type, UriInfo delegate) {
this.delegate = delegate;
HostnameProvider hostnameProvider = session.getProvider(HostnameProvider.class);
this.scheme = hostnameProvider.getScheme(delegate, type);
this.hostname = hostnameProvider.getHostname(delegate, type);
this.port = hostnameProvider.getPort(delegate, type);
this.contextPath = hostnameProvider.getContextPath(delegate, type);
}
public UriInfo getDelegate() {
return delegate;
}
private UriBuilder initUriBuilder(UriBuilder b) {
b.scheme(scheme);
b.host(hostname);
b.port(port);
b.replacePath(contextPath);
return b;
}
@Override
public URI getRequestUri() {
if (requestURI == null) {
requestURI = delegate.getRequestUri();
}
return requestURI;
}
@Override
public UriBuilder getRequestUriBuilder() {
return UriBuilder.fromUri(getRequestUri());
}
@Override
public URI getAbsolutePath() {
if (absolutePath == null) {
absolutePath = delegate.getAbsolutePath();
}
return absolutePath;
}
@Override
public UriBuilder getAbsolutePathBuilder() {
return UriBuilder.fromUri(getAbsolutePath());
}
@Override
public URI getBaseUri() {
if (baseURI == null) {
baseURI = initUriBuilder(delegate.getBaseUriBuilder()).build();
}
return baseURI;
}
@Override
public UriBuilder getBaseUriBuilder() {
return UriBuilder.fromUri(getBaseUri());
}
@Override
public URI resolve(URI uri) {
return getBaseUri().resolve(uri);
}
@Override
public URI relativize(URI uri) {
URI from = this.getRequestUri();
URI to = uri;
if (uri.getScheme() == null && uri.getHost() == null) {
to = this.getBaseUriBuilder().replaceQuery(null).path(uri.getPath()).replaceQuery(uri.getQuery()).fragment(uri.getFragment()).build(new Object[0]);
}
return ResteasyUriBuilder.relativize(from, to);
}
@Override
public String getPath() {
return delegate.getPath();
}
@Override
public String getPath(boolean decode) {
return delegate.getPath(decode);
}
@Override
public List getPathSegments() {
return delegate.getPathSegments();
}
@Override
public List getPathSegments(boolean decode) {
return delegate.getPathSegments(decode);
}
@Override
public MultivaluedMap getPathParameters() {
return delegate.getPathParameters();
}
@Override
public MultivaluedMap getPathParameters(boolean decode) {
return delegate.getPathParameters(decode);
}
@Override
public MultivaluedMap getQueryParameters() {
return delegate.getQueryParameters();
}
@Override
public MultivaluedMap getQueryParameters(boolean decode) {
return delegate.getQueryParameters(decode);
}
@Override
public List getMatchedURIs() {
return delegate.getMatchedURIs();
}
@Override
public List getMatchedURIs(boolean decode) {
return delegate.getMatchedURIs(decode);
}
@Override
public List