All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.faces.context.UrlBuilder Maven / Gradle / Ivy

Go to download

Jakarta Faces defines an MVC framework for building user interfaces for web applications, including UI components, state management, event handing, input validation, page navigation, and support for internationalization and accessibility.

There is a newer version: 4.1.2
Show newest version
/*
 * Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0, which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * This Source Code may also be made available under the following Secondary
 * Licenses when the conditions for such availability set forth in the
 * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
 * version 2 with the GNU Classpath Exception, which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
 */

package com.sun.faces.context;

import static com.sun.faces.RIConstants.CHAR_ENCODING;

import java.net.URLEncoder;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;

import com.sun.faces.util.Util;

import jakarta.faces.context.FacesContext;
import jakarta.faces.lifecycle.ClientWindow;
import jakarta.faces.render.ResponseStateManager;

/**
 * 

* The UrlBuilder provides a convenient way to assemble a URL. It follows the standard Builder Pattern. * A seed URL is provided, which is broken into parts to allow for dynamic assembly. When the URL is to be build, a call * to createUrl() assembles the parts into a relative URL. This class should be extended if the developer wishes to have * it deal with absolute URLs. *

* *

* Note that this class is optimized to parse the query string lazily so as to avoid unnecessary work if the seed URL * differs little from the URL to be built. *

*/ class UrlBuilder { public static final String QUERY_STRING_SEPARATOR = "?"; public static final char QUERY_STRING_SEPARATOR_CHAR = QUERY_STRING_SEPARATOR.charAt(0); public static final String PARAMETER_PAIR_SEPARATOR = "&"; public static final String PARAMETER_NAME_VALUE_SEPARATOR = "="; public static final String FRAGMENT_SEPARATOR = "#"; public static final char FRAGMENT_SEPARATOR_CHAR = FRAGMENT_SEPARATOR.charAt(0); public static final String WEBSOCKET_PROTOCOL = "ws"; public static final String PROTOCOL_SEPARATOR = "://"; private final StringBuilder url; private String path; private String queryString; private String fragment; private Map> parameters; private final Charset encoding; // ------------------------------------------------------------ Constructors public UrlBuilder(String url, String encoding) { if (url == null || url.trim().length() == 0) { throw new IllegalArgumentException("Url cannot be empty"); } this.url = new StringBuilder(url.length() * 2); extractSegments(url); this.encoding = encoding != null ? Charset.forName(encoding) : null; // PERF TL lookup per-instance } public UrlBuilder(String url) { this(url, CHAR_ENCODING); } // ---------------------------------------------------------- Public Methods public UrlBuilder addParameters(String name, List values) { if ( name == null || name.isBlank() ) { throw new IllegalArgumentException("Parameter name cannot be empty"); } addValuesToParameter(name.trim(), values, true); return this; } public UrlBuilder addParameters(Map> params) { if (params != null && !params.isEmpty()) { for (Map.Entry> entry : params.entrySet()) { if (entry.getKey() == null || entry.getKey().trim().length() == 0) { throw new IllegalArgumentException("Parameter name cannot be empty"); } List values = entry.getValue(); addValuesToParameter(entry.getKey().trim(), values, true); } } return this; } public UrlBuilder setPath(String path) { if (path == null || path.trim().length() == 0) { throw new IllegalArgumentException("Path cannot be empty"); } this.path = path; return this; } /** * Setting a query string consecutively will replace all but the last one. Otherwise, the name/value pairs in the query * string contribute to the parameters already established. */ public UrlBuilder setQueryString(String queryString) { this.queryString = queryString; cleanQueryString(); return this; } /** * The fragment is appended at the end of the url after a hash mark. It represents the fragement of the document that * should be brought into focus when the document is rendered. Setting the fragment replaces the previous value. */ public UrlBuilder setFragment(String fragment) { this.fragment = fragment; cleanFragment(); return this; } public String createUrl() { appendPath(); appendQueryString(); appendFragment(); return url.toString(); } // ------------------------------------------------------- Protected Methods protected String getPath() { return path; } protected Map> getParameters() { parseQueryString(); return parameters; } protected void parseQueryString() { if (parameters == null) { parameters = new LinkedHashMap<>(); } // if query string is null, then it has been parsed into parameters if (queryString == null) { return; } Map appMap = FacesContext.getCurrentInstance().getExternalContext().getApplicationMap(); String[] pairs = Util.split(appMap, queryString, PARAMETER_PAIR_SEPARATOR); for (String pair : pairs) { String[] nameAndValue = Util.split(appMap, pair, PARAMETER_NAME_VALUE_SEPARATOR); // ignore malformed pair if (nameAndValue.length != 2 || nameAndValue[0].trim().length() == 0) { continue; } addValueToParameter(nameAndValue[0], nameAndValue[1], false); } queryString = null; } protected void appendPath() { url.append(path); } protected void appendQueryString() { boolean hasQueryString = false; if (parameters != null) { String nextSeparatorChar; if (queryString == null) { nextSeparatorChar = QUERY_STRING_SEPARATOR; } else { nextSeparatorChar = PARAMETER_PAIR_SEPARATOR; url.append(QUERY_STRING_SEPARATOR_CHAR).append(queryString); } for (Map.Entry> param : parameters.entrySet()) { for (String value : param.getValue()) { url.append(nextSeparatorChar); url.append(param.getKey()); url.append(PARAMETER_NAME_VALUE_SEPARATOR); url.append(value); nextSeparatorChar = PARAMETER_PAIR_SEPARATOR; } } hasQueryString = true; } else if (queryString != null) { url.append(QUERY_STRING_SEPARATOR).append(queryString); hasQueryString = true; } FacesContext context = FacesContext.getCurrentInstance(); ClientWindow cw = context.getExternalContext().getClientWindow(); boolean appendClientWindow = false; if (null != cw) { appendClientWindow = cw.isClientWindowRenderModeEnabled(context); } if (appendClientWindow && -1 == url.indexOf(ResponseStateManager.CLIENT_WINDOW_URL_PARAM)) { if (null != cw) { String clientWindow = cw.getId(); if (!hasQueryString) { url.append(QUERY_STRING_SEPARATOR); } else { url.append(PARAMETER_PAIR_SEPARATOR); } url.append(ResponseStateManager.CLIENT_WINDOW_URL_PARAM).append(PARAMETER_NAME_VALUE_SEPARATOR).append(clientWindow); Map additionalParams = cw.getQueryURLParameters(context); if (null != additionalParams) { for (Map.Entry cur : additionalParams.entrySet()) { url.append(PARAMETER_PAIR_SEPARATOR); url.append(cur.getKey()).append(UrlBuilder.PARAMETER_NAME_VALUE_SEPARATOR).append(cur.getValue()); } } } } } protected void appendFragment() { if (fragment != null) { url.append(FRAGMENT_SEPARATOR).append(fragment); } } protected void extractSegments(String url) { int fragmentIndex = url.indexOf(FRAGMENT_SEPARATOR_CHAR); if (fragmentIndex != -1) { fragment = url.substring(fragmentIndex + 1); cleanFragment(); url = url.substring(0, fragmentIndex); } int queryStringIndex = url.indexOf(QUERY_STRING_SEPARATOR_CHAR); if (queryStringIndex != -1) { queryString = url.substring(queryStringIndex + 1); cleanQueryString(); path = url.substring(0, queryStringIndex); } else { path = url; } } protected void addValueToParameter(String name, String value, boolean replace) { List values = new ArrayList<>(value == null ? 0 : 1); if (value != null) { values.add(value); } addValuesToParameter(name, values, replace); } protected void addValuesToParameter(String name, List valuesRef, boolean replace) { List values = new ArrayList<>(); if (valuesRef != null) { for (String string : valuesRef) { if (string != null) { values.add(encoding != null ? URLEncoder.encode(string, encoding) : string); } } } if (parameters == null) { parameters = new LinkedHashMap<>(); } if (replace) { parameters.put(name, values); } else { List oldValues = parameters.get(name); // add if exists if ( oldValues != null ) oldValues.addAll(values); // put old+new or put only new values parameters.put( name , oldValues != null ? oldValues : values ); } } // --------------------------------------------------------- Private Methods private void cleanFragment() { if (fragment != null) { // trim String f = fragment.trim(); // remove '#' if ( f.charAt(0) == FRAGMENT_SEPARATOR_CHAR ) { f = f.substring(1); } // null if empty fragment = f.isEmpty() ? null : f; } } private void cleanQueryString() { if (queryString != null) { // trim String q = queryString.trim(); // remove '?' if ( q.charAt(0) == QUERY_STRING_SEPARATOR_CHAR ) { q = q.substring(1); } // null if empty queryString = q.isEmpty() ? null : q; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy