Search in sources :

Example 6 with TestpressApplication

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();
}
Also used : Account(android.accounts.Account) PostDao(in.testpress.testpress.models.PostDao) SharedPreferences(android.content.SharedPreferences) Intent(android.content.Intent) MainActivity(in.testpress.testpress.ui.MainActivity) OrderConfirmActivity(in.testpress.testpress.ui.OrderConfirmActivity) PostActivity(in.testpress.testpress.ui.PostActivity) TestpressApplication(in.testpress.testpress.TestpressApplication) DaoSession(in.testpress.testpress.models.DaoSession)

Aggregations

TestpressApplication (in.testpress.testpress.TestpressApplication)6 DaoSession (in.testpress.testpress.models.DaoSession)5 Intent (android.content.Intent)4 TextView (android.widget.TextView)3 InstituteSettings (in.testpress.testpress.models.InstituteSettings)3 KeyEvent (android.view.KeyEvent)2 InstituteSettingsDao (in.testpress.testpress.models.InstituteSettingsDao)2 Account (android.accounts.Account)1 AccountManager (android.accounts.AccountManager)1 ProgressDialog (android.app.ProgressDialog)1 BroadcastReceiver (android.content.BroadcastReceiver)1 Context (android.content.Context)1 SharedPreferences (android.content.SharedPreferences)1 Paint (android.graphics.Paint)1 NonNull (android.support.annotation.NonNull)1 LinearLayoutManager (android.support.v7.widget.LinearLayoutManager)1 RecyclerView (android.support.v7.widget.RecyclerView)1 PasswordTransformationMethod (android.text.method.PasswordTransformationMethod)1 View (android.view.View)1 AdapterView (android.widget.AdapterView)1