Search in sources :

Example 1 with RequestUserLogin

use of net.iGap.request.RequestUserLogin in project iGap-Android by KianIranian-STDG.

the class LoginActions method login.

/**
 * try login to server and do common actions
 */
public static void login() {
    if (!G.ISRealmOK) {
        return;
    }
    G.onUserLogin = new OnUserLogin() {

        @Override
        public void onLogin() {
            G.handler.post(new Runnable() {

                @Override
                public void run() {
                    if (firstEnter) {
                        firstEnter = false;
                        new RequestUserContactsGetBlockedList().userContactsGetBlockedList();
                        importContact();
                    }
                    getUserInfo();
                    if (G.isAppInFg) {
                        UserStatusController.getInstance().setOnline();
                    }
                    if (AndroidUtils.isAppOnForeground(G.context)) {
                        GPSTracker.getGpsTrackerInstance().checkLocation();
                    }
                    // sendWaitingRequestWrappers();
                    HelperCheckInternetConnection.detectConnectionTypeForDownload();
                }
            });
        }

        @Override
        public void onLoginError(int majorCode, int minorCode) {
        }
    };
    if (RequestManager.getInstance(AccountManager.selectedAccount).isSecure()) {
        DbManager.getInstance().doRealmTask(realm -> {
            RealmUserInfo userInfo = realm.where(RealmUserInfo.class).findFirst();
            if (!RequestManager.getInstance(AccountManager.selectedAccount).isUserLogin()) {
                if (userInfo != null) {
                    if (userInfo.getUserRegistrationState()) {
                        Log.wtf(LoginActions.class.getName(), "LoginActions.login: RequestUserLogin().userLogin");
                        new RequestUserLogin().userLogin(userInfo.getToken());
                    } else {
                        Log.wtf(LoginActions.class.getName(), "LoginActions.login:getUserRegistrationState" + userInfo.getUserRegistrationState());
                    }
                } else {
                    Log.wtf(LoginActions.class.getName(), "LoginActions.login:userInfo != null");
                }
            } else {
                Log.wtf(LoginActions.class.getName(), "LoginActions.login:else");
            }
        });
    } else {
        login();
    }
}
Also used : RealmUserInfo(net.iGap.realm.RealmUserInfo) RequestUserLogin(net.iGap.request.RequestUserLogin) RequestUserContactsGetBlockedList(net.iGap.request.RequestUserContactsGetBlockedList) OnUserLogin(net.iGap.observers.interfaces.OnUserLogin)

Aggregations

OnUserLogin (net.iGap.observers.interfaces.OnUserLogin)1 RealmUserInfo (net.iGap.realm.RealmUserInfo)1 RequestUserContactsGetBlockedList (net.iGap.request.RequestUserContactsGetBlockedList)1 RequestUserLogin (net.iGap.request.RequestUserLogin)1