mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9ef788dd99
--HG-- extra : rebase_source : cb622c61646be2752e4900fd6e480874e9ba5406
137 lines
4.5 KiB
Java
137 lines
4.5 KiB
Java
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko.browserid.verifier;
|
|
|
|
import java.io.IOException;
|
|
import java.io.UnsupportedEncodingException;
|
|
import java.net.URI;
|
|
import java.net.URISyntaxException;
|
|
import java.security.GeneralSecurityException;
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
|
|
import org.mozilla.gecko.background.common.log.Logger;
|
|
import org.mozilla.gecko.browserid.verifier.BrowserIDVerifierException.BrowserIDVerifierErrorResponseException;
|
|
import org.mozilla.gecko.browserid.verifier.BrowserIDVerifierException.BrowserIDVerifierMalformedResponseException;
|
|
import org.mozilla.gecko.sync.ExtendedJSONObject;
|
|
import org.mozilla.gecko.sync.net.BaseResource;
|
|
import org.mozilla.gecko.sync.net.BaseResourceDelegate;
|
|
import org.mozilla.gecko.sync.net.Resource;
|
|
import org.mozilla.gecko.sync.net.SyncResponse;
|
|
|
|
import ch.boye.httpclientandroidlib.HttpResponse;
|
|
import ch.boye.httpclientandroidlib.NameValuePair;
|
|
import ch.boye.httpclientandroidlib.client.ClientProtocolException;
|
|
import ch.boye.httpclientandroidlib.client.entity.UrlEncodedFormEntity;
|
|
import ch.boye.httpclientandroidlib.message.BasicNameValuePair;
|
|
|
|
public class BrowserIDRemoteVerifierClient implements BrowserIDVerifierClient {
|
|
protected static class RemoteVerifierResourceDelegate extends BaseResourceDelegate {
|
|
private final BrowserIDVerifierDelegate delegate;
|
|
|
|
protected RemoteVerifierResourceDelegate(Resource resource, BrowserIDVerifierDelegate delegate) {
|
|
super(resource);
|
|
this.delegate = delegate;
|
|
}
|
|
|
|
@Override
|
|
public String getUserAgent() {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public void handleHttpResponse(HttpResponse response) {
|
|
SyncResponse res = new SyncResponse(response);
|
|
int statusCode = res.getStatusCode();
|
|
Logger.debug(LOG_TAG, "Got response with status code " + statusCode + ".");
|
|
|
|
if (statusCode != 200) {
|
|
delegate.handleError(new BrowserIDVerifierErrorResponseException("Expected status code 200."));
|
|
return;
|
|
}
|
|
|
|
ExtendedJSONObject o = null;
|
|
try {
|
|
o = res.jsonObjectBody();
|
|
} catch (Exception e) {
|
|
delegate.handleError(new BrowserIDVerifierMalformedResponseException(e));
|
|
return;
|
|
}
|
|
|
|
String status = o.getString("status");
|
|
if ("failure".equals(status)) {
|
|
delegate.handleFailure(o);
|
|
return;
|
|
}
|
|
|
|
if (!("okay".equals(status))) {
|
|
delegate.handleError(new BrowserIDVerifierMalformedResponseException("Expected status okay, got '" + status + "'."));
|
|
return;
|
|
}
|
|
|
|
delegate.handleSuccess(o);
|
|
}
|
|
|
|
@Override
|
|
public void handleTransportException(GeneralSecurityException e) {
|
|
Logger.warn(LOG_TAG, "Got transport exception.", e);
|
|
delegate.handleError(e);
|
|
}
|
|
|
|
@Override
|
|
public void handleHttpProtocolException(ClientProtocolException e) {
|
|
Logger.warn(LOG_TAG, "Got protocol exception.", e);
|
|
delegate.handleError(e);
|
|
}
|
|
|
|
@Override
|
|
public void handleHttpIOException(IOException e) {
|
|
Logger.warn(LOG_TAG, "Got IO exception.", e);
|
|
delegate.handleError(e);
|
|
}
|
|
}
|
|
|
|
public static final String LOG_TAG = "BrowserIDRemoteVerifierClient";
|
|
|
|
public static final String DEFAULT_VERIFIER_URL = "https://verifier.login.persona.org/verify";
|
|
|
|
protected final URI verifierUri;
|
|
|
|
public BrowserIDRemoteVerifierClient(URI verifierUri) {
|
|
this.verifierUri = verifierUri;
|
|
}
|
|
|
|
public BrowserIDRemoteVerifierClient() throws URISyntaxException {
|
|
this.verifierUri = new URI(DEFAULT_VERIFIER_URL);
|
|
}
|
|
|
|
@Override
|
|
public void verify(String audience, String assertion, final BrowserIDVerifierDelegate delegate) {
|
|
if (audience == null) {
|
|
throw new IllegalArgumentException("audience cannot be null.");
|
|
}
|
|
if (assertion == null) {
|
|
throw new IllegalArgumentException("assertion cannot be null.");
|
|
}
|
|
if (delegate == null) {
|
|
throw new IllegalArgumentException("delegate cannot be null.");
|
|
}
|
|
|
|
BaseResource r = new BaseResource(verifierUri);
|
|
|
|
r.delegate = new RemoteVerifierResourceDelegate(r, delegate);
|
|
|
|
List<NameValuePair> nvps = Arrays.asList(new NameValuePair[] {
|
|
new BasicNameValuePair("audience", audience),
|
|
new BasicNameValuePair("assertion", assertion) });
|
|
|
|
try {
|
|
r.post(new UrlEncodedFormEntity(nvps, "UTF-8"));
|
|
} catch (UnsupportedEncodingException e) {
|
|
delegate.handleError(e);
|
|
}
|
|
}
|
|
}
|