2

here で説明されているように、このクラスを実装するために開発者認証手法を使用しています。これまでのところ、このクラスを実装し、CognitoCachingCredentialsProvider.getCachedIdentityId() をチェックしてユーザーがログインしているかどうかを確認するフレームワークを構築することができました (したがって、電子メールとパスワードを入力して再認証する必要はありません)。 )。これを行うために、Util と呼ばれるクラスで一連の静的メソッドを使用しています。これは、インスタンス化する必要があるのは一度だけだからです。これは次のようになります。

package com.pranskee.boxesapp;

import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ExecutionException;

import org.json.JSONException;
import org.json.JSONObject;

import android.content.Context;
import android.util.Log;

import com.amazonaws.auth.AWSAbstractCognitoIdentityProvider;
import com.amazonaws.auth.CognitoCachingCredentialsProvider;
import com.amazonaws.mobileconnectors.cognito.*;
import com.amazonaws.regions.Regions;

public class Util {
    private final static String TAG = "Util";

    private static final String AWS_ACCOUNT_ID = {acct id};
    private static final String COGNITO_POOL_ID = {pool id};
    private static final String COGNITO_ROLE_AUTH = {auth arn};
    private static final String COGNITO_ROLE_UNAUTH = {unauth arn}

    private static CognitoCachingCredentialsProvider sCredProvider;
    private static UserIdentityProvider sIdProvider;
    private static CognitoSyncManager sSyncManager;

    private Util() {
    }

    public static CognitoCachingCredentialsProvider getCredProvider(
            Context context) {
        if (sCredProvider == null) {
            if (sIdProvider == null) {
                CognitoCachingCredentialsProvider tmpProvider = new CognitoCachingCredentialsProvider(
                        context.getApplicationContext(), AWS_ACCOUNT_ID,
                        COGNITO_POOL_ID, COGNITO_ROLE_UNAUTH,
                        COGNITO_ROLE_AUTH, Regions.US_EAST_1);
                if (tmpProvider.getCachedIdentityId() != null) {
                    sCredProvider = tmpProvider;
                } else {
                    sCredProvider = null;
                }
            } else {
                sCredProvider = new CognitoCachingCredentialsProvider(
                        context.getApplicationContext(), sIdProvider,
                        COGNITO_ROLE_UNAUTH, COGNITO_ROLE_AUTH);
            }
        }
        return sCredProvider;
    }

    public static UserIdentityProvider getIdentityProvider(Context context,
            String email, String pwd) {
        if (sIdProvider == null) {
            sIdProvider = new UserIdentityProvider(AWS_ACCOUNT_ID,
                    COGNITO_POOL_ID, context.getApplicationContext(), email,
                    pwd);
            Map logins = new HashMap();
            logins.put({Developer Provider Name}, sIdProvider.getToken());
            sIdProvider.setLogins(logins);
        }
        return sIdProvider;
    }

    public static boolean isLoggedIn(Context context) {
        if (getCredProvider(context) == null) {
            return false;
        }
        return true;
    }

    private static CognitoSyncManager getSyncManager(Context context) {
        if (sSyncManager == null) {
            sSyncManager = new CognitoSyncManager(
                    context.getApplicationContext(), Regions.US_EAST_1,
                    sCredProvider);
        }
        return sSyncManager;
    }

    protected static class UserIdentityProvider extends
            AWSAbstractCognitoIdentityProvider {

        private Context context;
        private String email;
        private String password;

        public UserIdentityProvider(String accountId, String identityPoolId,
                Context c, String em, String pwd) {
            super(accountId, identityPoolId);
            context = c;
            email = em;
            password = pwd;
        }

        @Override
        public String refresh() {
            try {
                ServerCommunicator server = new ServerCommunicator(context);
                //this is a server call, which makes the call GetOpenIdTokenForDeveloperIdentityRequest after I authenticate the user and send AWS my user's token
                String response = server.initUserLoginAsyncTask()
                        .execute(email, password).get();
                JSONObject responseJSON = new JSONObject(response);
                String identityId = responseJSON.getString("id");
                String token = responseJSON.getString("token");
                this.setToken(token);
                this.setIdentityId(identityId);
                update(identityId, token);
                return token;
            } catch (InterruptedException e) {
                e.printStackTrace();
            } catch (ExecutionException e) {
                e.printStackTrace();
            } catch (JSONException e) {
                e.printStackTrace();
            }
            return null;
        }

        @Override
        public String getProviderName() {
            return {Developer Provider Name};
        }

    }

}

ここで、Logout も実装したいと思います。私がする必要があるのは、キャッシュされた ID Id を何らかの形で削除することだと思いますが、それを行うための最良の方法が何であるかはわかりません。あるいは、まったくそうではないかもしれません。まったく別のことをする必要があります。いずれにせよ、ユーザーがアプリの「ログアウト」を選択できるようにするという意図した動作を実装したいだけです。これにより、Cognito はその ID が ID プールにログインしたことを忘れ、ID ID を再度確立しようとする試みを無効にします。認証プロセスを再度実行する必要はありません。

4

1 に答える 1