mirror of https://github.com/apache/jclouds.git
changed to use vcloud x-vcloud-authorization header
This commit is contained in:
parent
6ca5a99484
commit
cff322803a
|
@ -28,7 +28,6 @@ import java.util.regex.Pattern;
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
import javax.inject.Provider;
|
import javax.inject.Provider;
|
||||||
import javax.inject.Singleton;
|
import javax.inject.Singleton;
|
||||||
import javax.ws.rs.core.HttpHeaders;
|
|
||||||
|
|
||||||
import org.jclouds.http.HttpResponse;
|
import org.jclouds.http.HttpResponse;
|
||||||
import org.jclouds.http.HttpResponseException;
|
import org.jclouds.http.HttpResponseException;
|
||||||
|
@ -49,36 +48,35 @@ import com.google.common.base.Function;
|
||||||
*/
|
*/
|
||||||
@Singleton
|
@Singleton
|
||||||
public class ParseLoginResponseFromHeaders implements Function<HttpResponse, VCloudSession> {
|
public class ParseLoginResponseFromHeaders implements Function<HttpResponse, VCloudSession> {
|
||||||
static final Pattern pattern = Pattern.compile("vcloud-token=([^;]+);.*");
|
static final Pattern pattern = Pattern.compile("(vcloud-token=)?([^;]+)(;.*)?");
|
||||||
|
|
||||||
private final ParseSax.Factory factory;
|
private final ParseSax.Factory factory;
|
||||||
private final Provider<OrgListHandler> orgHandlerProvider;
|
private final Provider<OrgListHandler> orgHandlerProvider;
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
private ParseLoginResponseFromHeaders(Factory factory,
|
private ParseLoginResponseFromHeaders(Factory factory, Provider<OrgListHandler> orgHandlerProvider) {
|
||||||
Provider<OrgListHandler> orgHandlerProvider) {
|
|
||||||
this.factory = factory;
|
this.factory = factory;
|
||||||
this.orgHandlerProvider = orgHandlerProvider;
|
this.orgHandlerProvider = orgHandlerProvider;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* parses the http response headers to create a new {@link VCloudSession} object.
|
* parses the http response headers to create a new {@link VCloudSession}
|
||||||
|
* object.
|
||||||
*/
|
*/
|
||||||
public VCloudSession apply(HttpResponse from) {
|
public VCloudSession apply(HttpResponse from) {
|
||||||
String cookieHeader = checkNotNull(from.getFirstHeaderOrNull(HttpHeaders.SET_COOKIE),
|
String cookieHeader = checkNotNull(from.getFirstHeaderOrNull("x-vcloud-authorization"), "x-vcloud-authorization");
|
||||||
HttpHeaders.SET_COOKIE);
|
|
||||||
|
|
||||||
final Matcher matcher = pattern.matcher(cookieHeader);
|
final Matcher matcher = pattern.matcher(cookieHeader);
|
||||||
boolean matchFound = matcher.find();
|
boolean matchFound = matcher.find();
|
||||||
try {
|
try {
|
||||||
if (matchFound) {
|
if (matchFound) {
|
||||||
final Map<String, ReferenceType> org = factory.create(orgHandlerProvider.get()).parse(
|
final Map<String, ReferenceType> org = factory.create(orgHandlerProvider.get()).parse(
|
||||||
from.getPayload().getInput());
|
from.getPayload().getInput());
|
||||||
|
|
||||||
return new VCloudSession() {
|
return new VCloudSession() {
|
||||||
@VCloudToken
|
@VCloudToken
|
||||||
public String getVCloudToken() {
|
public String getVCloudToken() {
|
||||||
return matcher.group(1);
|
return matcher.group(2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Org
|
@Org
|
||||||
|
@ -91,6 +89,6 @@ public class ParseLoginResponseFromHeaders implements Function<HttpResponse, VCl
|
||||||
} finally {
|
} finally {
|
||||||
releasePayload(from);
|
releasePayload(from);
|
||||||
}
|
}
|
||||||
throw new HttpResponseException("not found ", null, from);
|
throw new HttpResponseException("x-vcloud-authorization not found ", null, from);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,8 +22,6 @@ import static org.testng.Assert.assertEquals;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
|
|
||||||
import javax.ws.rs.core.HttpHeaders;
|
|
||||||
|
|
||||||
import org.jclouds.http.HttpResponse;
|
import org.jclouds.http.HttpResponse;
|
||||||
import org.jclouds.http.functions.BaseHandlerTest;
|
import org.jclouds.http.functions.BaseHandlerTest;
|
||||||
import org.jclouds.io.Payloads;
|
import org.jclouds.io.Payloads;
|
||||||
|
@ -55,7 +53,7 @@ public class ParseLoginResponseFromHeadersTest extends BaseHandlerTest {
|
||||||
@Test
|
@Test
|
||||||
public void testApply() {
|
public void testApply() {
|
||||||
HttpResponse response = new HttpResponse(200, "OK", Payloads.newInputStreamPayload(getClass()
|
HttpResponse response = new HttpResponse(200, "OK", Payloads.newInputStreamPayload(getClass()
|
||||||
.getResourceAsStream("/orglist.xml")), ImmutableMultimap.<String,String>of(HttpHeaders.SET_COOKIE, "vcloud-token=9er4d061-4bff-48fa-84b1-5da7166764d2; path=/"));
|
.getResourceAsStream("/orglist.xml")), ImmutableMultimap.<String,String>of("x-vcloud-authorization", "vcloud-token=9er4d061-4bff-48fa-84b1-5da7166764d2; path=/"));
|
||||||
response.getPayload().getContentMetadata().setContentType("Content-Type: application/xml; charset=utf-8");
|
response.getPayload().getContentMetadata().setContentType("Content-Type: application/xml; charset=utf-8");
|
||||||
response.getPayload().getContentMetadata().setContentLength(307l);
|
response.getPayload().getContentMetadata().setContentLength(307l);
|
||||||
|
|
||||||
|
@ -69,15 +67,28 @@ public class ParseLoginResponseFromHeadersTest extends BaseHandlerTest {
|
||||||
@Test
|
@Test
|
||||||
public void testApplyBlueLock() {
|
public void testApplyBlueLock() {
|
||||||
HttpResponse response = new HttpResponse(200, "OK", Payloads.newInputStreamPayload(getClass()
|
HttpResponse response = new HttpResponse(200, "OK", Payloads.newInputStreamPayload(getClass()
|
||||||
.getResourceAsStream("/orglist.xml")), ImmutableMultimap.<String,String>of(HttpHeaders.SET_COOKIE,"vcloud-token=c9f232506df9b65d7b7d97b7499eddd7; Domain=.bluelock.com; Path=/") );
|
.getResourceAsStream("/orglist.xml")), ImmutableMultimap.<String,String>of("x-vcloud-authorization","MUKOJ2HoAfoMmLnHRp4esNb2MtWscCLLhVysnsIsCG0=") );
|
||||||
response.getPayload().getContentMetadata().setContentType("Content-Type: application/xml; charset=utf-8");
|
response.getPayload().getContentMetadata().setContentType("Content-Type: application/xml; charset=utf-8");
|
||||||
response.getPayload().getContentMetadata().setContentLength(307l);
|
response.getPayload().getContentMetadata().setContentLength(307l);
|
||||||
|
|
||||||
VCloudSession reply = parser.apply(response);
|
VCloudSession reply = parser.apply(response);
|
||||||
assertEquals(reply.getVCloudToken(), "c9f232506df9b65d7b7d97b7499eddd7");
|
assertEquals(reply.getVCloudToken(), "MUKOJ2HoAfoMmLnHRp4esNb2MtWscCLLhVysnsIsCG0=");
|
||||||
assertEquals(reply.getOrgs(), ImmutableMap.of("adrian@jclouds.org", new ReferenceTypeImpl("adrian@jclouds.org",
|
assertEquals(reply.getOrgs(), ImmutableMap.of("adrian@jclouds.org", new ReferenceTypeImpl("adrian@jclouds.org",
|
||||||
VCloudMediaType.ORG_XML, URI.create("https://services.vcloudexpress.terremark.com/api/v0.8/org/48"))));
|
VCloudMediaType.ORG_XML, URI.create("https://services.vcloudexpress.terremark.com/api/v0.8/org/48"))));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testApplyVirtacore() {
|
||||||
|
HttpResponse response = new HttpResponse(200, "OK", Payloads.newInputStreamPayload(getClass()
|
||||||
|
.getResourceAsStream("/orglist.xml")), ImmutableMultimap.<String,String>of("x-vcloud-authorization","vcloud-token=IPy0w7UGD4lwtdWAK/ZVzfuLK+dztxGRqsOhWqV0i48=") );
|
||||||
|
response.getPayload().getContentMetadata().setContentType("Content-Type: application/xml; charset=utf-8");
|
||||||
|
response.getPayload().getContentMetadata().setContentLength(307l);
|
||||||
|
|
||||||
|
VCloudSession reply = parser.apply(response);
|
||||||
|
assertEquals(reply.getVCloudToken(), "IPy0w7UGD4lwtdWAK/ZVzfuLK+dztxGRqsOhWqV0i48=");
|
||||||
|
assertEquals(reply.getOrgs(), ImmutableMap.of("adrian@jclouds.org", new ReferenceTypeImpl("adrian@jclouds.org",
|
||||||
|
VCloudMediaType.ORG_XML, URI.create("https://services.vcloudexpress.terremark.com/api/v0.8/org/48"))));
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue