netty5/codec-http/src/main/java/io/netty/handler/codec/http/QueryStringEncoder.java

123 lines
3.8 KiB
Java
Raw Normal View History

2008-11-19 08:22:15 +01:00
/*
2012-06-04 22:31:44 +02:00
* Copyright 2012 The Netty Project
2009-06-19 19:48:17 +02:00
*
* The Netty Project licenses this file to you 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:
2008-11-19 08:22:15 +01:00
*
2012-06-04 22:31:44 +02:00
* http://www.apache.org/licenses/LICENSE-2.0
2008-11-19 08:22:15 +01:00
*
2009-08-28 09:15:49 +02:00
* 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
2009-08-28 09:15:49 +02:00
* License for the specific language governing permissions and limitations
* under the License.
2008-11-19 08:22:15 +01:00
*/
2011-12-09 04:38:59 +01:00
package io.netty.handler.codec.http;
2008-11-19 08:22:15 +01:00
import io.netty.util.internal.ObjectUtil;
import java.io.UnsupportedEncodingException;
2008-11-19 08:22:15 +01:00
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URLEncoder;
import java.nio.charset.Charset;
import java.nio.charset.UnsupportedCharsetException;
2008-11-19 08:22:15 +01:00
/**
2009-06-19 16:49:26 +02:00
* Creates an URL-encoded URI from a path string and key-value parameter pairs.
* This encoder is for one time use only. Create a new instance for each URI.
*
2009-06-19 17:05:47 +02:00
* <pre>
* {@link QueryStringEncoder} encoder = new {@link QueryStringEncoder}("/hello");
2009-06-19 17:05:47 +02:00
* encoder.addParam("recipient", "world");
* assert encoder.toString().equals("/hello?recipient=world");
* </pre>
* @see QueryStringDecoder
2008-11-19 08:22:15 +01:00
*/
public class QueryStringEncoder {
private final String charsetName;
private final StringBuilder uriBuilder;
private boolean hasParams;
2008-11-19 08:22:15 +01:00
2009-06-19 16:49:26 +02:00
/**
* Creates a new encoder that encodes a URI that starts with the specified
* path string. The encoder will encode the URI in UTF-8.
*/
public QueryStringEncoder(String uri) {
this(uri, HttpConstants.DEFAULT_CHARSET);
}
2009-06-19 16:49:26 +02:00
/**
* Creates a new encoder that encodes a URI that starts with the specified
* path string in the specified charset.
*/
public QueryStringEncoder(String uri, Charset charset) {
uriBuilder = new StringBuilder(uri);
charsetName = charset.name();
2008-11-19 08:22:15 +01:00
}
2009-06-19 16:49:26 +02:00
/**
* Adds a parameter with the specified name and value to this encoder.
*/
2008-11-19 08:22:15 +01:00
public void addParam(String name, String value) {
ObjectUtil.checkNotNull(name, "name");
if (hasParams) {
uriBuilder.append('&');
} else {
uriBuilder.append('?');
hasParams = true;
}
appendComponent(name, charsetName, uriBuilder);
if (value != null) {
uriBuilder.append('=');
appendComponent(value, charsetName, uriBuilder);
}
2008-11-19 08:22:15 +01:00
}
2009-06-19 16:49:26 +02:00
/**
* Returns the URL-encoded URI object which was created from the path string
* specified in the constructor and the parameters added by
* {@link #addParam(String, String)} method.
2009-06-19 16:49:26 +02:00
*/
2008-11-19 08:22:15 +01:00
public URI toUri() throws URISyntaxException {
2008-12-01 06:29:59 +01:00
return new URI(toString());
}
2009-06-19 16:49:26 +02:00
/**
* Returns the URL-encoded URI which was created from the path string
* specified in the constructor and the parameters added by
* {@link #addParam(String, String)} method.
2009-06-19 16:49:26 +02:00
*/
2008-12-01 06:29:59 +01:00
@Override
public String toString() {
return uriBuilder.toString();
2008-11-19 08:22:15 +01:00
}
private static void appendComponent(String s, String charset, StringBuilder sb) {
try {
s = URLEncoder.encode(s, charset);
} catch (UnsupportedEncodingException ignored) {
throw new UnsupportedCharsetException(charset);
}
// replace all '+' with "%20"
int idx = s.indexOf('+');
if (idx == -1) {
sb.append(s);
return;
}
sb.append(s, 0, idx).append("%20");
int size = s.length();
idx++;
for (; idx < size; idx++) {
char c = s.charAt(idx);
if (c != '+') {
sb.append(c);
} else {
sb.append("%20");
}
2008-11-19 08:22:15 +01:00
}
}
}