use of in.testpress.testpress.TestpressApplication in project android by testpress.
the class LoginActivity method finishLogin.
/**
* Called when response is received from the server for authentication
* request. See onAuthenticationResult(). Sets the
* AccountAuthenticatorResult which is sent back to the caller. Also sets
* the authToken in AccountManager for this account.
*/
protected void finishLogin() {
SharedPreferences sharedPreferences = getSharedPreferences(Constants.GCM_PREFERENCE_NAME, Context.MODE_PRIVATE);
sharedPreferences.edit().putBoolean(GCMPreference.SENT_TOKEN_TO_SERVER, false).apply();
CommonUtils.registerDevice(this, testpressService);
final Account account = new Account(username, Constants.Auth.TESTPRESS_ACCOUNT_TYPE);
if (requestNewAccount) {
accountManager.addAccountExplicitly(account, password, null);
accountManager.setAuthToken(account, Constants.Auth.TESTPRESS_ACCOUNT_TYPE, authToken);
} else {
accountManager.setPassword(account, password);
}
DaoSession daoSession = ((TestpressApplication) getApplicationContext()).getDaoSession();
PostDao postDao = daoSession.getPostDao();
postDao.deleteAll();
daoSession.clear();
if (authTokenType != null && authTokenType.equals(Constants.Auth.AUTHTOKEN_TYPE)) {
final Intent intent = new Intent();
intent.putExtra(KEY_ACCOUNT_NAME, username);
intent.putExtra(KEY_ACCOUNT_TYPE, Constants.Auth.TESTPRESS_ACCOUNT_TYPE);
intent.putExtra(KEY_AUTHTOKEN, authToken);
setAccountAuthenticatorResult(intent.getExtras());
setResult(RESULT_OK, intent);
} else {
Intent intent = new Intent(this, MainActivity.class);
if (getIntent().getStringExtra(Constants.DEEP_LINK_TO) != null) {
switch(getIntent().getStringExtra(Constants.DEEP_LINK_TO)) {
case Constants.DEEP_LINK_TO_PAYMENTS:
intent = new Intent(this, OrderConfirmActivity.class);
intent.putExtra(Constants.IS_DEEP_LINK, true);
intent.putExtras(getIntent().getExtras());
break;
case Constants.DEEP_LINK_TO_POST:
intent = new Intent(this, PostActivity.class);
intent.putExtra(Constants.IS_DEEP_LINK, true);
intent.putExtras(getIntent().getExtras());
break;
default:
intent = new Intent(this, MainActivity.class);
break;
}
}
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
startActivity(intent);
}
finish();
}
Aggregations