summaryrefslogtreecommitdiffstats
path: root/mobile/android/services/src/main/java/org/mozilla/gecko/browserid/verifier/BrowserIDRemoteVerifierClient20.java
blob: 013856576d16707c5de2b14b368f3383a5348ed5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* 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.net.URI;
import java.net.URISyntaxException;

import org.mozilla.gecko.sync.ExtendedJSONObject;
import org.mozilla.gecko.sync.net.BaseResource;

/**
 * The verifier protocol changed: version 1 posts form-encoded data; version 2
 * posts JSON data.
 */
public class BrowserIDRemoteVerifierClient20 extends AbstractBrowserIDRemoteVerifierClient {
  public static final String LOG_TAG = BrowserIDRemoteVerifierClient20.class.getSimpleName();

  public static final String DEFAULT_VERIFIER_URL = "https://verifier.accounts.firefox.com/v2";

  protected static final String JSON_KEY_ASSERTION = "assertion";
  protected static final String JSON_KEY_AUDIENCE = "audience";

  public BrowserIDRemoteVerifierClient20() throws URISyntaxException {
    super(new URI(DEFAULT_VERIFIER_URL));
  }

  public BrowserIDRemoteVerifierClient20(URI verifierUri) {
    super(verifierUri);
  }

  @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);

    final ExtendedJSONObject requestBody = new ExtendedJSONObject();
    requestBody.put(JSON_KEY_AUDIENCE, audience);
    requestBody.put(JSON_KEY_ASSERTION, assertion);

    try {
      r.post(requestBody);
    } catch (Exception e) {
      delegate.handleError(e);
    }
  }
}