org.xwiki.velocity.tools.URLTool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xwiki-commons-velocity Show documentation
Show all versions of xwiki-commons-velocity Show documentation
APIs to evaluate content with Velocity
/*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.xwiki.velocity.tools;
import java.net.MalformedURLException;
import java.net.URL;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import org.apache.http.NameValuePair;
import org.apache.http.client.utils.URLEncodedUtils;
/**
* Velocity tool to parse URL parts.
*
* @version $Id: 710b083ae0a3b685c404ed8adb47803f59671231 $
* @since 6.3M1
*/
public class URLTool
{
/**
* Parse a query string into a map of key-value pairs.
*
* @param query query string to be parsed
* @return a mapping of parameter names to values suitable e.g. to pass into {@link EscapeTool#url(Map)}
*/
public Map> parseQuery(String query)
{
Map> queryParams = new LinkedHashMap<>();
if (query != null) {
for (NameValuePair params : URLEncodedUtils.parse(query, StandardCharsets.UTF_8)) {
String name = params.getName();
List values = queryParams.get(name);
if (values == null) {
values = new ArrayList<>();
queryParams.put(name, values);
}
values.add(params.getValue());
}
}
return queryParams;
}
/**
* Convert a string to an URL object, if it's possible.
*
* @param urlString string to be convert
* @return an URL object from a given string
* @since 12.9RC1
*/
public URL toURL(String urlString)
{
try {
return new URL(urlString);
} catch (MalformedURLException e) {
return null;
}
}
}