DEV Community

Cover image for My Secret ArcGIS Identity
Rene Rubalcava
Rene Rubalcava

Posted on • Originally published at odoe.net

My Secret ArcGIS Identity

Your Identity Matters

There will probably come a time when you are tasked to include private data in your ArcGIS web mapping applications. There are different types of Identity you can work with depending on your organization or account. I won't get into Developer Accounts and API Keys here, but I have talked about that before. This workflow is for the organization devs that need use OAuth for their apps.

The source for the code in this post can be found on github.

OAuth Flow

When working with the ArcGIS API for JavaScript, you're going to want to use the IdentityManager. The IdentityManager is going to handle all your OAuth needs. It will even kick in by default, if your application hits a service that requires authentication and you have not set it up. The drawback here is that the credentials won't get saved for next time if you don't do the set up. So let's walk through the basics of what you probably want to do in your application.

  1. Set up authentication.
  2. Check if user is signed in.
  3. Provide a way to sign in.
  4. Provide a way to sign out.

I've done this enough times that I have a module I use frequently.

1. Setting up OAuth

Before we dive in to the various steps, let's quickly talk about setting up your OAuth. First thing you will want to do is register your application in your account. This will provide your with the client ID you will need to register it with the IdentityManager. This can be done with the OAuthInfo module, via the appId property.

export const initialize = (appId) => {
    const oauthInfo = new OAuthInfo({ appId });
    IdentityManager.registerOAuthInfos([oauthInfo]);
    return oauthInfo;
};
Enter fullscreen mode Exit fullscreen mode

2. Check if the user is signed in

Just our luck, the IdentityManager provides a method we can use to check the sign in status. This method will check if we signed in to the designated portal url and return the credentials if we are.

export const checkCurrentStatus = async (oauthInfo) => {
    try {
        const credential = await IdentityManager.checkSignInStatus(
            `${oauthInfo.portalUrl}/sharing`
        );
        return credential;
    } catch (error) {
        console.warn(error);
    }
};
Enter fullscreen mode Exit fullscreen mode

3. Let a user sign in

Now that we have a way to check if the user is signed in, we can use it as part of our workflow to allow a user to sign in. When the user signs in, we can do our due diligence and check if they have any existing credentials. If they don't, we can kick off the workflow to fetch those credentials and this will load the OAuth sign process.

export const signIn = async (oauthInfo) => {
    try {
        const credential = await checkCurrentStatus(oauthInfo)
            || await fetchCredentials(oauthInfo);
        return credential;
    } catch (error) {
        const credential = await fetchCredentials(oauthInfo);
        return credential;
    }
};
Enter fullscreen mode Exit fullscreen mode

The fetchCredentials method used here looks like this.

export const fetchCredentials = async (oauthInfo) => {
    try {
        const credential = await IdentityManager.getCredential(
            `${oauthInfo.portalUrl}/sharing`
        );
        return credential;
    } catch (error) {
        console.warn(error);
    }
};
Enter fullscreen mode Exit fullscreen mode

When you registered your application in step one, you would have set up a redirect URI, that would allow your application be authenticated. I highly recommend you have a client ID for development, and another for production. Your development client ID would redirect to your local development URI. Your production to your production location. There are numerous ways you can set this up in your build tooling using environment variables, and build scripts.

When you use the IdentityManager.getCredential method, this will either open a popup with the ArcGIS Oauth login or direct the current page to the OAuth login, depending on how you set up your OAuthInfo. If you are have the popup set to true in OAuthInfo, you will need this oauth-callback page hosted with your application.

4. Sign out

With a way to sign in, now we need a way to sign out. Lucky for us, the IdentityManager simplifies this step with the destroyCredentials method.

export const signOut = async () => {
    IdentityManager.destroyCredentials();
    window.location.reload();
};
Enter fullscreen mode Exit fullscreen mode

Once you destroy the credentials, you will also want to reload the page. It's important to note, if you are logged in to ArcGIS Online in your browser as well, this will not log you out of those pages. But this will provide you with a pretty basic sign out process for your application.

Summary

Working with Identity in any application can seem a little daunting at first, but the ArcGIS API for JavaScript provides all the tooling you'll need to set it up in your apps as needed. Ideally, this will help to simplify the login process for you as a developer and your users. As I mentioned earlier, there can be various Identity workflows. If you have an Enterprise installation, this could include various implementations I haven't covered, and honestly, I am not familiar with many of them. Usually, in that environment, authentication is pass-through and should just work. But don't quote me on that.

You can see more in the video below!

Top comments (0)