コード例 #1
0
    private boolean checkDone(String url) {

      if (url.startsWith(REDIRECT_URI)) {

        Bundle values = parseUrl(url);

        String error = values.getString("error_reason");

        AQUtility.debug("error", error);

        if (error == null) {
          token = extractToken(url);
        }

        if (token != null) {
          dismiss();
          storeToken(token, permissions);
          first = false;
          authenticated(token);
          success(act);
        } else {
          failure();
        }

        return true;
      } else if (url.startsWith(CANCEL_URI)) {
        AQUtility.debug("cancelled");
        failure();
        return true;
      }

      return false;
    }
コード例 #2
0
  private void webAuth() {

    AQUtility.debug("web auth");

    Bundle parameters = new Bundle();
    parameters.putString("client_id", appId);
    parameters.putString("type", "user_agent");
    if (permissions != null) {
      parameters.putString("scope", permissions);
    }

    parameters.putString("redirect_uri", REDIRECT_URI);
    String url = OAUTH_ENDPOINT + "?" + encodeUrl(parameters);

    FbWebViewClient client = new FbWebViewClient();

    dialog = new WebDialog(act, url, client);
    dialog.setLoadingMessage(message);
    dialog.setOnCancelListener(client);

    show();

    if (!first || token != null) {

      AQUtility.debug("auth hide");
      hide();
    }

    dialog.load();

    AQUtility.debug("auth started");
  }
コード例 #3
0
    @Override
    public boolean shouldOverrideUrlLoading(WebView view, String url) {

      AQUtility.debug("return url: " + url);

      return checkDone(url);
    }
コード例 #4
0
  public void asyncJson() throws JSONException {
    JSONObject params1 = new JSONObject();
    params1.putOpt("startPlaceAuditID", GodObject.START_PLACE_AUDIT_ID);
    params1.putOpt("finishPlaceAuditID", GodObject.FINISH_PLACE_AUDIT_ID_CITY);
    params1.putOpt("userID", GodObject.USER_ID);
    params1.putOpt("currency", GOS.getCurrencyString());

    JSONObject params2 = new JSONObject();
    params2.putOpt("startPlaceAuditID", GodObject.START_PLACE_AUDIT_ID);
    params2.putOpt("finishPlaceAuditID", GodObject.FINISH_PLACE_AUDIT_ID_AERO);
    params2.putOpt("userID", GodObject.USER_ID);
    params2.putOpt("currency", GOS.getCurrencyString());

    AQUtility.setDebug(true);
    AjaxCallback<JSONObject> cb1 =
        new AjaxCallback<JSONObject>() {
          @Override
          public void callback(String url, JSONObject html, AjaxStatus status) {
            jsonCallback(url, html, status, "city");
          }
        };

    AjaxCallback<JSONObject> cb2 =
        new AjaxCallback<JSONObject>() {
          @Override
          public void callback(String url, JSONObject html, AjaxStatus status) {
            jsonCallback(url, html, status, "aero");
          }
        };

    if (GOS.isRub() && GOS.getPricesRub().size() < 4) makeRequest(params1, params2, cb1, cb2);
    if (GOS.isUsd() && GOS.getPricesUsd().size() < 4) makeRequest(params1, params2, cb1, cb2);
    if (GOS.isEur() && GOS.getPricesEur().size() < 4) makeRequest(params1, params2, cb1, cb2);
  }
コード例 #5
0
  @Override
  public boolean expired(AbstractAjaxCallback<?, ?> cb, AjaxStatus status) {

    int code = status.getCode();
    if (code == 200) return false;

    String error = status.getError();
    if (error != null && error.contains("OAuthException")) {
      AQUtility.debug("fb token expired");
      return true;
    }

    String url = cb.getUrl();

    if (code == 400
        && (url.endsWith("/likes") || url.endsWith("/comments") || url.endsWith("/checkins"))) {
      return false;
    }

    if (code == 403 && (url.endsWith("/feed") || url.contains("method=delete"))) {
      return false;
    }

    return code == 400 || code == 401 || code == 403;
  }
コード例 #6
0
    @Override
    public void onPageFinished(WebView view, String url) {

      super.onPageFinished(view, url);
      show();

      AQUtility.debug("finished", url);
    }
コード例 #7
0
  public void onActivityResult(int requestCode, int resultCode, Intent data) {

    AQUtility.debug("on result", resultCode);

    // Successfully redirected.
    if (resultCode == Activity.RESULT_OK) {

      // Check OAuth 2.0/2.10 error code.
      String error = data.getStringExtra("error");
      if (error == null) {
        error = data.getStringExtra("error_type");
      }

      // A Facebook error occurred.
      if (error != null) {
        AQUtility.debug("error", error);
        if (error.equals("service_disabled") || error.equals("AndroidAuthKillSwitchException")) {
          webAuth();
        } else {

          String description = data.getStringExtra("error_description");
          AQUtility.debug("fb error", description);

          failure();
        }
        // No errors.
      } else {

        token = data.getStringExtra("access_token");

        AQUtility.debug("onComplete", token);
        if (token != null) {
          storeToken(token, permissions);
          first = false;
          authenticated(token);
          success(act);
        } else {
          failure();
        }
      }

      // An error occurred before we could be redirected.
    } else if (resultCode == Activity.RESULT_CANCELED) {
      failure();
    }
  }
コード例 #8
0
  @Override
  public boolean reauth(final AbstractAjaxCallback<?, ?> cb) {

    AQUtility.debug("reauth requested");

    token = null;

    AQUtility.post(
        new Runnable() {

          @Override
          public void run() {
            auth(cb);
          }
        });

    return false;
  }
コード例 #9
0
 private void hide() {
   if (dialog != null) {
     try {
       dialog.hide();
     } catch (Exception e) {
       AQUtility.debug(e);
     }
   }
 }
コード例 #10
0
  private String extractToken(String url) {

    Uri uri = Uri.parse(url.replace('#', '?'));

    String token = uri.getQueryParameter("access_token");

    AQUtility.debug("token", token);

    return token;
  }
コード例 #11
0
    @Override
    public void onPageStarted(WebView view, String url, Bitmap favicon) {

      AQUtility.debug("started", url);

      if (checkDone(url)) {
      } else {
        super.onPageStarted(view, url, favicon);
      }
    }
コード例 #12
0
  protected void auth() {

    if (act.isFinishing()) return;

    boolean ok = sso();

    AQUtility.debug("authing", ok);

    if (!ok) {
      webAuth();
    }
  }
コード例 #13
0
  @Override
  public void onCreate() {
    super.onCreate();

    REF_SMART_APPLICATION = this;

    SmartUtils.setNetworkStateAvailability(this);

    smartApplicationConfiguration = new ApplicationConfiguration();
    loadConfiguration();

    AQUtility.setCacheDir(new File(SmartUtils.getStorageDirectory()));

    @SuppressWarnings("unused")
    SmartFrameworkSecurity smartFrameworkSecurity = new SmartFrameworkSecurity(this);

    // if (smartFrameworkSecurity.matchKey(securityKey)) {

    if (IS_SHARED_PREFERENCE_ENABLE) {
      sharedPreferences = getSharedPreferences(SHARED_PREFERENCE_NAME, MODE_PRIVATE);
    }

    if (IS_DB_ENABLE) {
      try {
        dataHelper =
            new SmartDataHelper(
                getApplicationContext(),
                DATABASE_NAME,
                DATABASE_VERSION,
                DBSQL,
                getSmartVersionHandler());
      } catch (IOException e) {
        e.printStackTrace();
      }
    }

    /*if(readSharedPreferences().getBoolean(IS_APPLICATION_LAUNCHED_FIRST_TIME,true)){

        SmartUtils.SetIsApplicationLaunchedFirstTime(true);
        writeSharedPreferences(IS_APPLICATION_LAUNCHED_FIRST_TIME,false);
    }else{

        SmartUtils.SetIsApplicationLaunchedFirstTime(false);
    }*/

  }
コード例 #14
0
  private boolean permissionOk(String permissions, String old) {

    if (permissions == null) return true;
    if (old == null) return false;

    String[] splits = old.split("[,\\s]+");
    Set<String> oldSet = new HashSet<String>(Arrays.asList(splits));

    splits = permissions.split("[,\\s]+");

    for (int i = 0; i < splits.length; i++) {
      if (!oldSet.contains(splits[i])) {
        AQUtility.debug("perm mismatch");
        return false;
      }
    }

    return true;
  }
コード例 #15
0
  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    // Tell AQUtility about context: it can use this globally...which is really handy!
    AQUtility.setContext(getApplication());
    // Load default preferences
    PreferenceManager.setDefaultValues(this, R.xml.preferences, false);

    findAllViewsById();

    View.OnClickListener radioButtonListener =
        new View.OnClickListener() {
          public void onClick(View v) {
            RadioButton radioButton = (RadioButton) v;
            searchTypeTextView.setText("Searching for " + radioButton.getText());
          }
        };

    moviesSearchRadioButton.setOnClickListener(radioButtonListener);
    peopleSearchRadioButton.setOnClickListener(radioButtonListener);

    searchButton.setOnClickListener(
        new View.OnClickListener() {
          @Override
          public void onClick(View view) {
            String query = searchEditText.getText().toString();
            if (moviesSearchRadioButton.isChecked()) {
              PerformFilmSearchTask task = new PerformFilmSearchTask(FilmSearchAppActivity.this);
              task.execute(query);
            } else if (peopleSearchRadioButton.isChecked()) {
              PerformPersonSearchTask task =
                  new PerformPersonSearchTask(FilmSearchAppActivity.this);
              task.execute(query);
            }
          }
        });

    int radioId = searchRadioGroup.getCheckedRadioButtonId();
    RadioButton radioButton = (RadioButton) findViewById(radioId);
    searchTypeTextView.setText(radioButton.getText());
  }
コード例 #16
0
  private void render(List<Photo> entries) {

    AQUtility.debug("render setup");

    ArrayAdapter<Photo> aa =
        new ArrayAdapter<Photo>(getActivity(), R.layout.grid_item2, entries) {

          public View getView(int position, View convertView, ViewGroup parent) {

            if (convertView == null) {
              convertView = aq.inflate(convertView, R.layout.grid_item2, parent);
            }

            Photo photo = getItem(position);

            AQuery aq = aq2.recycle(convertView);

            String tbUrl = photo.tb;

            // Bitmap placeholder = aq.getCachedImage(R.drawable.image_ph);

            if (aq.shouldDelay(position, convertView, parent, tbUrl)) {

              // aq.id(R.id.tb).image(placeholder);
              aq.id(R.id.tb).clear();

            } else {

              aq.id(R.id.tb).image(tbUrl, true, true, 200, R.drawable.image_missing, null, 0, 0);
            }

            return convertView;
          }
        };

    aq.id(R.id.grid).adapter(aa);
  }
コード例 #17
0
 private void storeToken(String token, String permission) {
   Editor editor = PreferenceManager.getDefaultSharedPreferences(act).edit();
   editor.putString(FB_TOKEN, token).putString(FB_PERMISSION, permission); // .commit();
   AQUtility.apply(editor);
 }