0.1.24 • Published 3 months ago

@equinor/mad-auth v0.1.24

Weekly downloads
-
License
MIT
Repository
-
Last release
3 months ago

MAD AUTH

A simple authentication package used by the mad-team. It uses MSAL under the hood, and requires you to set up an app registration in azure.

Usage

You have to install react-native-msal in your app in order to make this work. react-native-msal is an archived package no longer maintained, but we have created a fork which you can find here. Install the newest commit by putting this in your package.json:

{
    "dependencies": {
        "react-native-msal": "git+https://github.com/equinor/react-native-msal.git#COMMIT_HASH"
    }
}

PS: you might need yarn installed on your computer for it to work.

After installing it, follow this guide if you use expo, or this guide for iOS setup in a bare react native project. Our fork of react-native-msal will not work for Android.

Next, add our provided LoginButton to your application:

export const LoginScreen = () => {
    const navigation = useNavigation<NavigationProp<RootStackParamList>>();
    return (
        <View
            style={{
                height: "100%",
                alignItems: "center",
                justifyContent: "center",
                flexDirection: "row",
            }}
        >
            <LoginButton
                redirectUri="msauth.com.equinor.mad.chronicles://auth"
                clientId="49222fe1-4e0a-4310-9e81-1a2c3eb9b2ed"
                onAuthenticationSuccessful={() => navigation.navigate("Root")}
                onAuthenticationFailed={() => console.error("Unable to authenticate")}
                enableAutomaticAuthentication
            />
        </View>
    );
};

The LoginButton provided by this package uses @equinor/mad-components's Button component. You can style it however you want. However, if you want to create your own LoginButton from scratch, you can do so by using the useAuthenticate hook. See the implementation of our LoginButton if you need some inspiration. Alternatively, you can create the login flow logic from scratch using the provided functions below.

This package provides a few basic functions you can use to either make your own login button, or use throughout the app:

If you are not using our login button, nor useAuthenticate, use this function to initate the authentication client:

initiateAuthenticationClient({clientId: string, redirectUri: string, authority?: string}): Promise<void>

To check if the authentication client exists, use this function:

authenticationClientExists(): boolean

To authenticate interactively, use this function:

authenticateInteractively(scope: string[]): Promise<MadAuthenticationResult | null>

To authenticate silently, use this function:

authenticateSilently(scope: string[]): Promise<MadAuthenticationResult | null>

To get account, use this function:

getAccount(): Promise<MadAccount | null>

Alternatively, you can use this hook to get account:

useAccount(): MadAccount | null
0.1.24

3 months ago

0.1.23

3 months ago

0.1.21

3 months ago

0.1.22

3 months ago

0.1.20

3 months ago

0.1.19

3 months ago

0.1.17

3 months ago

0.1.18

3 months ago

0.1.14

3 months ago

0.1.15

3 months ago

0.1.16

3 months ago

0.1.11

3 months ago

0.1.12

3 months ago

0.1.13

3 months ago

0.1.10

3 months ago

0.1.9

4 months ago

0.1.8

4 months ago

0.1.7

4 months ago

0.1.6

4 months ago

0.1.5

4 months ago

0.1.4

4 months ago

0.1.3

5 months ago

0.1.2

5 months ago

0.1.1

5 months ago

0.1.0

5 months ago

0.0.14

5 months ago

0.0.13

6 months ago

0.0.12

6 months ago

0.0.11

7 months ago

0.0.10

7 months ago

0.0.9

7 months ago

0.0.8

7 months ago

0.0.7

7 months ago

0.0.6

7 months ago

0.0.5

7 months ago

0.0.4

7 months ago

0.0.3

7 months ago

0.0.2

7 months ago

0.0.1

8 months ago