mirror of https://github.com/apache/jclouds.git
Issue 70 sorting out url encoding
git-svn-id: http://jclouds.googlecode.com/svn/trunk@1483 3d8758e0-26b5-11de-8745-db77d3ebf521
This commit is contained in:
parent
074fefc7db
commit
6829c4ace2
|
@ -24,6 +24,7 @@
|
||||||
package org.jclouds.aws.s3.commands;
|
package org.jclouds.aws.s3.commands;
|
||||||
|
|
||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
|
import static org.jclouds.util.Utils.urlEncode;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
|
|
||||||
|
@ -32,7 +33,6 @@ import org.jclouds.aws.s3.domain.S3Object;
|
||||||
import org.jclouds.aws.s3.xml.CopyObjectHandler;
|
import org.jclouds.aws.s3.xml.CopyObjectHandler;
|
||||||
import org.jclouds.http.HttpMethod;
|
import org.jclouds.http.HttpMethod;
|
||||||
import org.jclouds.http.commands.callables.xml.ParseSax;
|
import org.jclouds.http.commands.callables.xml.ParseSax;
|
||||||
import org.jclouds.util.Utils;
|
|
||||||
|
|
||||||
import com.google.inject.Inject;
|
import com.google.inject.Inject;
|
||||||
import com.google.inject.assistedinject.Assisted;
|
import com.google.inject.assistedinject.Assisted;
|
||||||
|
@ -64,14 +64,15 @@ public class CopyObject extends S3FutureCommand<S3Object.Metadata> {
|
||||||
@Assisted("destinationBucket") String destinationBucket,
|
@Assisted("destinationBucket") String destinationBucket,
|
||||||
@Assisted("destinationObject") String destinationObject,
|
@Assisted("destinationObject") String destinationObject,
|
||||||
@Assisted CopyObjectOptions options) {
|
@Assisted CopyObjectOptions options) {
|
||||||
super(endPoint, HttpMethod.PUT, "/" + checkNotNull(destinationObject, "destinationObject"),
|
super(endPoint, HttpMethod.PUT, "/"
|
||||||
callable, destinationBucket);
|
+ urlEncode(checkNotNull(destinationObject, "destinationObject")), callable,
|
||||||
|
destinationBucket);
|
||||||
CopyObjectHandler handler = (CopyObjectHandler) callable.getHandler();
|
CopyObjectHandler handler = (CopyObjectHandler) callable.getHandler();
|
||||||
handler.setKey(destinationObject);
|
handler.setKey(destinationObject);
|
||||||
getRequest().getHeaders().put(
|
getRequest().getHeaders().put(
|
||||||
"x-amz-copy-source",
|
"x-amz-copy-source",
|
||||||
String.format("/%1$s/%2$s", checkNotNull(sourceBucket, "sourceBucket"), Utils
|
String.format("/%1$s/%2$s", checkNotNull(sourceBucket, "sourceBucket"),
|
||||||
.encodeUriPath(checkNotNull(sourceObject, "sourceObject"))));
|
urlEncode(checkNotNull(sourceObject, "sourceObject"))));
|
||||||
getRequest().getHeaders().putAll(options.buildRequestHeaders());
|
getRequest().getHeaders().putAll(options.buildRequestHeaders());
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -24,6 +24,7 @@
|
||||||
package org.jclouds.aws.s3.commands;
|
package org.jclouds.aws.s3.commands;
|
||||||
|
|
||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
|
import static org.jclouds.util.Utils.urlEncode;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
|
|
||||||
|
@ -46,6 +47,6 @@ public class DeleteObject extends S3FutureCommand<Boolean> {
|
||||||
@Inject
|
@Inject
|
||||||
public DeleteObject(URI endPoint, ReturnTrueIf2xx callable,
|
public DeleteObject(URI endPoint, ReturnTrueIf2xx callable,
|
||||||
@Assisted("bucketName") String bucket, @Assisted("key") String key) {
|
@Assisted("bucketName") String bucket, @Assisted("key") String key) {
|
||||||
super(endPoint, HttpMethod.DELETE, "/" + checkNotNull(key), callable, bucket);
|
super(endPoint, HttpMethod.DELETE, "/" + urlEncode(checkNotNull(key)), callable, bucket);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -23,6 +23,9 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.aws.s3.commands;
|
package org.jclouds.aws.s3.commands;
|
||||||
|
|
||||||
|
import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
|
import static org.jclouds.util.Utils.urlEncode;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.util.concurrent.ExecutionException;
|
import java.util.concurrent.ExecutionException;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
@ -57,7 +60,8 @@ public class GetAccessControlList extends S3FutureCommand<AccessControlList> {
|
||||||
@Inject
|
@Inject
|
||||||
public GetAccessControlList(URI endPoint, ParseSax<AccessControlList> accessControlListParser,
|
public GetAccessControlList(URI endPoint, ParseSax<AccessControlList> accessControlListParser,
|
||||||
@Assisted("bucketName") String bucket, @Assisted("objectKey") String objectKey) {
|
@Assisted("bucketName") String bucket, @Assisted("objectKey") String objectKey) {
|
||||||
super(endPoint, HttpMethod.GET, "/" + objectKey + "?acl", accessControlListParser, bucket);
|
super(endPoint, HttpMethod.GET, "/" + urlEncode(checkNotNull(objectKey)) + "?acl",
|
||||||
|
accessControlListParser, bucket);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
package org.jclouds.aws.s3.commands;
|
package org.jclouds.aws.s3.commands;
|
||||||
|
|
||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
|
import static org.jclouds.util.Utils.urlEncode;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.util.concurrent.ExecutionException;
|
import java.util.concurrent.ExecutionException;
|
||||||
|
@ -69,7 +70,7 @@ public class GetObject extends S3FutureCommand<S3Object> {
|
||||||
public GetObject(URI endPoint, ParseObjectFromHeadersAndHttpContent callable,
|
public GetObject(URI endPoint, ParseObjectFromHeadersAndHttpContent callable,
|
||||||
@Assisted("bucketName") String s3Bucket, @Assisted("key") String key,
|
@Assisted("bucketName") String s3Bucket, @Assisted("key") String key,
|
||||||
@Assisted GetObjectOptions options) {
|
@Assisted GetObjectOptions options) {
|
||||||
super(endPoint, HttpMethod.GET, "/" + checkNotNull(key), callable, s3Bucket);
|
super(endPoint, HttpMethod.GET, "/" + urlEncode(checkNotNull(key)), callable, s3Bucket);
|
||||||
this.getRequest().getHeaders().putAll(options.buildRequestHeaders());
|
this.getRequest().getHeaders().putAll(options.buildRequestHeaders());
|
||||||
callable.setKey(key);
|
callable.setKey(key);
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
package org.jclouds.aws.s3.commands;
|
package org.jclouds.aws.s3.commands;
|
||||||
|
|
||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
|
import static org.jclouds.util.Utils.urlEncode;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.util.concurrent.ExecutionException;
|
import java.util.concurrent.ExecutionException;
|
||||||
|
@ -60,7 +61,7 @@ public class HeadObject extends S3FutureCommand<S3Object.Metadata> {
|
||||||
@Inject
|
@Inject
|
||||||
public HeadObject(URI endPoint, ParseMetadataFromHeaders callable,
|
public HeadObject(URI endPoint, ParseMetadataFromHeaders callable,
|
||||||
@Assisted("bucketName") String bucket, @Assisted("key") String key) {
|
@Assisted("bucketName") String bucket, @Assisted("key") String key) {
|
||||||
super(endPoint, HttpMethod.HEAD, "/" + checkNotNull(key), callable, bucket);
|
super(endPoint, HttpMethod.HEAD, "/" + urlEncode(checkNotNull(key)), callable, bucket);
|
||||||
callable.setKey(key);
|
callable.setKey(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,7 @@ package org.jclouds.aws.s3.commands;
|
||||||
|
|
||||||
import static com.google.common.base.Preconditions.checkArgument;
|
import static com.google.common.base.Preconditions.checkArgument;
|
||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
|
import static org.jclouds.util.Utils.urlEncode;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
|
|
||||||
|
@ -59,7 +60,8 @@ public class PutObject extends S3FutureCommand<byte[]> {
|
||||||
@Inject
|
@Inject
|
||||||
public PutObject(URI endPoint, ParseMd5FromETagHeader callable, @Assisted String s3Bucket,
|
public PutObject(URI endPoint, ParseMd5FromETagHeader callable, @Assisted String s3Bucket,
|
||||||
@Assisted S3Object object, @Assisted PutObjectOptions options) {
|
@Assisted S3Object object, @Assisted PutObjectOptions options) {
|
||||||
super(endPoint, HttpMethod.PUT, "/" + checkNotNull(object.getKey()), callable, s3Bucket);
|
super(endPoint, HttpMethod.PUT, "/" + urlEncode(checkNotNull(object.getKey())), callable,
|
||||||
|
s3Bucket);
|
||||||
checkArgument(object.getMetadata().getSize() >= 0, "size must be set");
|
checkArgument(object.getMetadata().getSize() >= 0, "size must be set");
|
||||||
|
|
||||||
getRequest().setPayload(checkNotNull(object.getData(), "object.getContent()"));
|
getRequest().setPayload(checkNotNull(object.getData(), "object.getContent()"));
|
||||||
|
|
|
@ -23,6 +23,9 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.aws.s3.commands;
|
package org.jclouds.aws.s3.commands;
|
||||||
|
|
||||||
|
import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
|
import static org.jclouds.util.Utils.urlEncode;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
import javax.annotation.Resource;
|
||||||
|
@ -54,7 +57,7 @@ public class PutObjectAccessControlList extends S3FutureCommand<Boolean> {
|
||||||
public PutObjectAccessControlList(URI endPoint, ReturnTrueIf2xx callable,
|
public PutObjectAccessControlList(URI endPoint, ReturnTrueIf2xx callable,
|
||||||
@Assisted("bucketName") String bucket, @Assisted("key") String objectKey,
|
@Assisted("bucketName") String bucket, @Assisted("key") String objectKey,
|
||||||
@Assisted AccessControlList acl) {
|
@Assisted AccessControlList acl) {
|
||||||
super(endPoint, HttpMethod.PUT, "/" + objectKey + "?acl", callable, bucket);
|
super(endPoint, HttpMethod.PUT, "/" + urlEncode(checkNotNull(objectKey)) + "?acl", callable, bucket);
|
||||||
|
|
||||||
String aclPayload = "";
|
String aclPayload = "";
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -211,8 +211,6 @@ public class CopyObjectOptions extends BaseHttpRequestOptions {
|
||||||
*
|
*
|
||||||
* @param md5
|
* @param md5
|
||||||
* hash representing the entity
|
* hash representing the entity
|
||||||
* @throws UnsupportedEncodingException
|
|
||||||
* if there was a problem converting this into an S3 eTag string
|
|
||||||
*/
|
*/
|
||||||
public CopyObjectOptions ifSourceMd5Matches(byte[] md5) throws UnsupportedEncodingException {
|
public CopyObjectOptions ifSourceMd5Matches(byte[] md5) throws UnsupportedEncodingException {
|
||||||
checkState(getIfNoneMatch() == null,
|
checkState(getIfNoneMatch() == null,
|
||||||
|
|
|
@ -25,16 +25,14 @@ package org.jclouds.aws.s3.commands.options;
|
||||||
|
|
||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
import static com.google.common.base.Preconditions.checkState;
|
import static com.google.common.base.Preconditions.checkState;
|
||||||
import org.jclouds.http.options.BaseHttpRequestOptions;
|
|
||||||
|
|
||||||
import java.io.UnsupportedEncodingException;
|
import org.jclouds.http.options.BaseHttpRequestOptions;
|
||||||
import java.net.URLEncoder;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Contains options supported in the REST API for the GET bucket operation. <h2>
|
* Contains options supported in the REST API for the GET bucket operation. <h2>
|
||||||
* Usage</h2> The recommended way to instantiate a GetBucketOptions object is to
|
* Usage</h2> The recommended way to instantiate a GetBucketOptions object is to statically import
|
||||||
* statically import GetBucketOptions.Builder.* and invoke a static creation
|
* GetBucketOptions.Builder.* and invoke a static creation method followed by an instance mutator
|
||||||
* method followed by an instance mutator (if needed):
|
* (if needed):
|
||||||
* <p/>
|
* <p/>
|
||||||
* <code>
|
* <code>
|
||||||
* import static org.jclouds.aws.s3.commands.options.GetBucketOptions.Builder.*
|
* import static org.jclouds.aws.s3.commands.options.GetBucketOptions.Builder.*
|
||||||
|
@ -44,133 +42,116 @@ import java.net.URLEncoder;
|
||||||
* <code>
|
* <code>
|
||||||
*
|
*
|
||||||
* @author Adrian Cole
|
* @author Adrian Cole
|
||||||
* @see <a href="http://docs.amazonwebservices.com/AmazonS3/2006-03-01/index.html?RESTBucketGET.html?"
|
* @see <a
|
||||||
|
* href="http://docs.amazonwebservices.com/AmazonS3/2006-03-01/index.html?RESTBucketGET.html?"
|
||||||
* />
|
* />
|
||||||
*/
|
*/
|
||||||
public class ListBucketOptions extends BaseHttpRequestOptions {
|
public class ListBucketOptions extends BaseHttpRequestOptions {
|
||||||
public static final ListBucketOptions NONE = new ListBucketOptions();
|
public static final ListBucketOptions NONE = new ListBucketOptions();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Limits the response to keys which begin with the indicated prefix. You
|
* Limits the response to keys which begin with the indicated prefix. You can use prefixes to
|
||||||
* can use prefixes to separate a bucket into different sets of keys in a
|
* separate a bucket into different sets of keys in a way similar to how a file system uses
|
||||||
* way similar to how a file system uses folders.
|
* folders.
|
||||||
*
|
*
|
||||||
* @throws UnsupportedEncodingException
|
*/
|
||||||
*/
|
public ListBucketOptions withPrefix(String prefix) {
|
||||||
public ListBucketOptions withPrefix(String prefix)
|
parameters.put("prefix", checkNotNull(prefix, "prefix"));
|
||||||
throws UnsupportedEncodingException {
|
return this;
|
||||||
parameters.put("prefix", URLEncoder.encode(checkNotNull(prefix, "prefix"),
|
}
|
||||||
"UTF-8"));
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see ListBucketOptions#withPrefix(String)
|
* @see ListBucketOptions#withPrefix(String)
|
||||||
*/
|
*/
|
||||||
public String getPrefix() {
|
public String getPrefix() {
|
||||||
return parameters.get("prefix");
|
return parameters.get("prefix");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Indicates where in the bucket to begin listing. The list will only
|
* Indicates where in the bucket to begin listing. The list will only include keys that occur
|
||||||
* include keys that occur lexicographically after marker. This is
|
* lexicographically after marker. This is convenient for pagination: To get the next page of
|
||||||
* convenient for pagination: To get the next page of results use the last
|
* results use the last key of the current page as the marker.
|
||||||
* key of the current page as the marker.
|
*/
|
||||||
*
|
public ListBucketOptions afterMarker(String marker) {
|
||||||
* @throws UnsupportedEncodingException
|
parameters.put("marker", checkNotNull(marker, "marker"));
|
||||||
*/
|
return this;
|
||||||
public ListBucketOptions afterMarker(String marker)
|
}
|
||||||
throws UnsupportedEncodingException {
|
|
||||||
parameters.put("marker", URLEncoder.encode(checkNotNull(marker, "marker"),
|
|
||||||
"UTF-8"));
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see ListBucketOptions#afterMarker(String)
|
* @see ListBucketOptions#afterMarker(String)
|
||||||
*/
|
*/
|
||||||
public String getMarker() {
|
public String getMarker() {
|
||||||
return parameters.get("marker");
|
return parameters.get("marker");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The maximum number of keys you'd like to see in the response body. The
|
* The maximum number of keys you'd like to see in the response body. The server might return
|
||||||
* server might return fewer than this many keys, but will not return more.
|
* fewer than this many keys, but will not return more.
|
||||||
*/
|
*/
|
||||||
public ListBucketOptions maxResults(long maxKeys) {
|
public ListBucketOptions maxResults(long maxKeys) {
|
||||||
checkState(maxKeys >= 0, "maxKeys must be >= 0");
|
checkState(maxKeys >= 0, "maxKeys must be >= 0");
|
||||||
parameters.put("max-keys", Long.toString(maxKeys));
|
parameters.put("max-keys", Long.toString(maxKeys));
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see ListBucketOptions#maxResults(long)
|
* @see ListBucketOptions#maxResults(long)
|
||||||
*/
|
*/
|
||||||
public String getMaxKeys() {
|
public String getMaxKeys() {
|
||||||
return parameters.get("max-keys");
|
return parameters.get("max-keys");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Causes keys that contain the same string between the prefix and the first
|
* Causes keys that contain the same string between the prefix and the first occurrence of the
|
||||||
* occurrence of the delimiter to be rolled up into a single result element
|
* delimiter to be rolled up into a single result element in the CommonPrefixes collection. These
|
||||||
* in the CommonPrefixes collection. These rolled-up keys are not returned
|
* rolled-up keys are not returned elsewhere in the response.
|
||||||
* elsewhere in the response.
|
*
|
||||||
*
|
*/
|
||||||
* @throws UnsupportedEncodingException
|
public ListBucketOptions delimiter(String delimiter) {
|
||||||
*/
|
parameters.put("delimiter", checkNotNull(delimiter, "delimiter"));
|
||||||
public ListBucketOptions delimiter(String delimiter)
|
return this;
|
||||||
throws UnsupportedEncodingException {
|
}
|
||||||
parameters.put("delimiter", URLEncoder.encode(checkNotNull(delimiter,
|
|
||||||
"delimiter"), "UTF-8"));
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see ListBucketOptions#delimiter(String)
|
* @see ListBucketOptions#delimiter(String)
|
||||||
*/
|
*/
|
||||||
public String getDelimiter() {
|
public String getDelimiter() {
|
||||||
return parameters.get("delimiter");
|
return parameters.get("delimiter");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class Builder {
|
public static class Builder {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws UnsupportedEncodingException
|
* @see ListBucketOptions#withPrefix(String)
|
||||||
* @see ListBucketOptions#withPrefix(String)
|
*/
|
||||||
*/
|
public static ListBucketOptions withPrefix(String prefix) {
|
||||||
public static ListBucketOptions withPrefix(String prefix)
|
ListBucketOptions options = new ListBucketOptions();
|
||||||
throws UnsupportedEncodingException {
|
return options.withPrefix(prefix);
|
||||||
ListBucketOptions options = new ListBucketOptions();
|
}
|
||||||
return options.withPrefix(prefix);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws UnsupportedEncodingException
|
* @see ListBucketOptions#afterMarker(String)
|
||||||
* @see ListBucketOptions#afterMarker(String)
|
*/
|
||||||
*/
|
public static ListBucketOptions afterMarker(String marker) {
|
||||||
public static ListBucketOptions afterMarker(String marker)
|
ListBucketOptions options = new ListBucketOptions();
|
||||||
throws UnsupportedEncodingException {
|
return options.afterMarker(marker);
|
||||||
ListBucketOptions options = new ListBucketOptions();
|
}
|
||||||
return options.afterMarker(marker);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see ListBucketOptions#maxResults(long)
|
* @see ListBucketOptions#maxResults(long)
|
||||||
*/
|
*/
|
||||||
public static ListBucketOptions maxResults(long maxKeys) {
|
public static ListBucketOptions maxResults(long maxKeys) {
|
||||||
ListBucketOptions options = new ListBucketOptions();
|
ListBucketOptions options = new ListBucketOptions();
|
||||||
return options.maxResults(maxKeys);
|
return options.maxResults(maxKeys);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws UnsupportedEncodingException
|
* @see ListBucketOptions#delimiter(String)
|
||||||
* @see ListBucketOptions#delimiter(String)
|
*/
|
||||||
*/
|
public static ListBucketOptions delimiter(String delimiter) {
|
||||||
public static ListBucketOptions delimiter(String delimiter)
|
ListBucketOptions options = new ListBucketOptions();
|
||||||
throws UnsupportedEncodingException {
|
return options.delimiter(delimiter);
|
||||||
ListBucketOptions options = new ListBucketOptions();
|
}
|
||||||
return options.delimiter(delimiter);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,6 +25,12 @@ package org.jclouds.aws.s3.util;
|
||||||
|
|
||||||
import static com.google.common.base.Preconditions.checkArgument;
|
import static com.google.common.base.Preconditions.checkArgument;
|
||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
|
|
||||||
|
import java.io.ByteArrayInputStream;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
|
||||||
import org.apache.commons.io.IOUtils;
|
import org.apache.commons.io.IOUtils;
|
||||||
import org.apache.commons.io.output.ByteArrayOutputStream;
|
import org.apache.commons.io.output.ByteArrayOutputStream;
|
||||||
import org.bouncycastle.crypto.digests.MD5Digest;
|
import org.bouncycastle.crypto.digests.MD5Digest;
|
||||||
|
@ -38,8 +44,6 @@ import org.jclouds.http.HttpException;
|
||||||
import org.jclouds.http.HttpFutureCommand;
|
import org.jclouds.http.HttpFutureCommand;
|
||||||
import org.jclouds.http.HttpResponse;
|
import org.jclouds.http.HttpResponse;
|
||||||
|
|
||||||
import java.io.*;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Encryption, Hashing, and IO Utilities needed to sign and verify S3 requests and responses.
|
* Encryption, Hashing, and IO Utilities needed to sign and verify S3 requests and responses.
|
||||||
*
|
*
|
||||||
|
|
|
@ -232,7 +232,6 @@ public class S3IntegrationTest {
|
||||||
deleteBucket(scratchBucket);
|
deleteBucket(scratchBucket);
|
||||||
String newScratchBucket = bucketPrefix + (++bucketIndex);
|
String newScratchBucket = bucketPrefix + (++bucketIndex);
|
||||||
createBucketAndEnsureEmpty(newScratchBucket);
|
createBucketAndEnsureEmpty(newScratchBucket);
|
||||||
Thread.sleep(INCONSISTENCY_WINDOW);
|
|
||||||
returnBucket(newScratchBucket);
|
returnBucket(newScratchBucket);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -317,7 +316,6 @@ public class S3IntegrationTest {
|
||||||
deleteBucket(bucketName);
|
deleteBucket(bucketName);
|
||||||
client.putBucketIfNotExists(bucketName, createIn(LocationConstraint.EU)).get(10,
|
client.putBucketIfNotExists(bucketName, createIn(LocationConstraint.EU)).get(10,
|
||||||
TimeUnit.SECONDS);
|
TimeUnit.SECONDS);
|
||||||
Thread.sleep(INCONSISTENCY_WINDOW);
|
|
||||||
return bucketName;
|
return bucketName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -54,6 +54,39 @@ public class DeleteObjectIntegrationTest extends S3IntegrationTest {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void deleteObjectWithSpaces() throws Exception {
|
||||||
|
String bucketName = getBucketName();
|
||||||
|
try {
|
||||||
|
addObjectToBucket(bucketName, "p blic-read-acl");
|
||||||
|
assert client.deleteObject(bucketName, "p blic-read-acl").get(10, TimeUnit.SECONDS);
|
||||||
|
} finally {
|
||||||
|
returnBucket(bucketName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void deleteObjectUnicade() throws Exception {
|
||||||
|
String bucketName = getBucketName();
|
||||||
|
try {
|
||||||
|
addObjectToBucket(bucketName, "p¿blic-read-acl");
|
||||||
|
assert client.deleteObject(bucketName, "p¿blic-read-acl").get(10, TimeUnit.SECONDS);
|
||||||
|
} finally {
|
||||||
|
returnBucket(bucketName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void deleteObjectQuestion() throws Exception {
|
||||||
|
String bucketName = getBucketName();
|
||||||
|
try {
|
||||||
|
addObjectToBucket(bucketName, "p???blic-read-acl");
|
||||||
|
assert client.deleteObject(bucketName, "p???blic-read-acl").get(10, TimeUnit.SECONDS);
|
||||||
|
} finally {
|
||||||
|
returnBucket(bucketName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void deleteObjectNoBucket() throws Exception {
|
void deleteObjectNoBucket() throws Exception {
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -32,7 +32,6 @@ import javax.annotation.Resource;
|
||||||
|
|
||||||
import org.jclouds.command.Request;
|
import org.jclouds.command.Request;
|
||||||
import org.jclouds.logging.Logger;
|
import org.jclouds.logging.Logger;
|
||||||
import org.jclouds.util.Utils;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a request that can be executed within {@link HttpFutureCommandClient}
|
* Represents a request that can be executed within {@link HttpFutureCommandClient}
|
||||||
|
@ -62,7 +61,7 @@ public class HttpRequest extends HttpMessage implements Request<URI> {
|
||||||
public HttpRequest(URI endPoint, HttpMethod method, String uri) {
|
public HttpRequest(URI endPoint, HttpMethod method, String uri) {
|
||||||
this.endPoint = checkNotNull(endPoint, "endPoint");
|
this.endPoint = checkNotNull(endPoint, "endPoint");
|
||||||
this.method = checkNotNull(method, "method");
|
this.method = checkNotNull(method, "method");
|
||||||
this.uri = Utils.encodeUriPath(checkNotNull(uri, "uri"));
|
this.uri = checkNotNull(uri, "uri");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
package org.jclouds.http.options;
|
package org.jclouds.http.options;
|
||||||
|
|
||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
|
import static org.jclouds.util.Utils.urlEncode;
|
||||||
|
|
||||||
import java.io.UnsupportedEncodingException;
|
import java.io.UnsupportedEncodingException;
|
||||||
import java.net.URLEncoder;
|
import java.net.URLEncoder;
|
||||||
|
@ -86,7 +87,8 @@ public class BaseHttpRequestOptions implements HttpRequestOptions {
|
||||||
builder.append("?");
|
builder.append("?");
|
||||||
for (Iterator<Entry<String, String>> i = parameters.entrySet().iterator(); i.hasNext();) {
|
for (Iterator<Entry<String, String>> i = parameters.entrySet().iterator(); i.hasNext();) {
|
||||||
Entry<String, String> entry = i.next();
|
Entry<String, String> entry = i.next();
|
||||||
builder.append(entry.getKey()).append("=").append(entry.getValue());
|
builder.append(urlEncode(entry.getKey())).append("=").append(
|
||||||
|
urlEncode(entry.getValue()));
|
||||||
if (i.hasNext())
|
if (i.hasNext())
|
||||||
builder.append("&");
|
builder.append("&");
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,6 +50,14 @@ public class Utils {
|
||||||
@Resource
|
@Resource
|
||||||
protected static Logger logger = Logger.NULL;
|
protected static Logger logger = Logger.NULL;
|
||||||
|
|
||||||
|
public static String urlEncode(String in) {
|
||||||
|
try {
|
||||||
|
return URLEncoder.encode(in, "UTF-8");
|
||||||
|
} catch (UnsupportedEncodingException e) {
|
||||||
|
throw new IllegalStateException("Bad encoding on input: " + in, e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Content stream may need to be read. However, we should always close the http stream.
|
* Content stream may need to be read. However, we should always close the http stream.
|
||||||
*/
|
*/
|
||||||
|
@ -209,33 +217,4 @@ public class Utils {
|
||||||
return decodeString(bytes, UTF8_ENCODING);
|
return decodeString(bytes, UTF8_ENCODING);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Encode a path portion of a URI using the UTF-8 encoding, but leave slash '/' characters and
|
|
||||||
* any parameters (anything after the first '?') un-encoded. If encoding with UTF-8 fails, the
|
|
||||||
* method falls back to using the system's default encoding.
|
|
||||||
*
|
|
||||||
* @param uri
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
public static String encodeUriPath(String uri) {
|
|
||||||
String path, params = "";
|
|
||||||
|
|
||||||
int offset;
|
|
||||||
if ((offset = uri.indexOf('?')) >= 0) {
|
|
||||||
path = uri.substring(0, offset);
|
|
||||||
params = uri.substring(offset);
|
|
||||||
} else {
|
|
||||||
path = uri;
|
|
||||||
}
|
|
||||||
|
|
||||||
String encodedUri;
|
|
||||||
try {
|
|
||||||
encodedUri = URLEncoder.encode(path, "UTF-8");
|
|
||||||
} catch (UnsupportedEncodingException e) {
|
|
||||||
encodedUri = URLEncoder.encode(path);
|
|
||||||
}
|
|
||||||
return encodedUri.replace("%2F", "/") + params;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue