Warning
Unmaintained. Deprecated in favor of PKCE flow with https://github.com/authts/react-oidc-context. Preferably you don't use client side authentication at all and move the logic to the server.
Fetch JWTs for API access from oidc-jwt-provider
npm install oidc-jwt-client --save
<OidcJwtProvider
client={{ url: 'https://api-auth.acc.titan.awssdu.nl' }}
shouldAttemptLogin={false}
shouldMonitorAccessTokens={false}
>
// Contents of your app
</OidcJwtProvider>
When you come back after authorization to your app it will have a token in the url like this ?token=
.
To replace this token we use window.history.replaceState()
by default.
If you would like to replace this behaviour you could send a custom removeTokenFromUrlFunction
.
In NextJS you could create a helper function like this:
// removeTokenFromUrlFunction.ts
import Router from 'next/router';
import { stripTokenFromUrl } from 'oidc-jwt-client';
const removeTokenFromUrlFunction = (url: string) => {
const urlWithoutToken = stripTokenFromUrl(url);
Router.replace(urlWithoutToken, undefined, { shallow: true });
};
export { removeTokenFromUrlFunction };
And then use it like this:
// App.tsx
<OidcJwtProvider
client={{ url: 'https://api-auth.ota.titan2.awssdu.nl' }}
shouldAttemptLogin={false}
shouldMonitorAccessTokens={false}
removeTokenFromUrlFunction={removeTokenFromUrlFunction}
>
// Contents of your app
</OidcJwtProvider>
Within the provider we make use of several hooks to use the functionality exposed within the context.
The accessToken is directly returned from the fetchAccessToken function when already present and valid. If not it will automatically fetch a new accessToken for you.
To get the accessToken you can do this:
const [token, setToken] = (useState < null) | (string > null);
const fetchAccessToken = useAuthAccessToken();
useEffect(() => {
fetchAccessToken().then((token) => {
setToken(token);
});
}, [fetchAccessToken, setToken]);
To login or logout a user manually you can make use of these two function exposed by the useAuthControls hook:
const { authorize, logout } = useAuthControls();
const onClickLogout = React.useCallback(() => {
logout();
}, [logout]);
const onClickLogin = React.useCallback(() => {
authorize();
}, [authorize]);
Checks when the loadInitialData function is done executing and will return true when finished. NB! This doesn't mean you're logged in, jsut that the authentication is done initializing.
const isInitialized = useAuthInitialized();
console.log('Auth is initialized: ', isInitialized);
To get the user info you can do this within the context of the provider:
const { value, loading } = useAuthUserInfo();
console.log('This is the userInfo: ', value);
To get the claims you can do this within the context of the provider:
const { value, loading } = useAuthAccessClaims();
console.log('These are the claims: ', value);
Checking if the user is logged in so that you can act on it.
const isLoggedIn = useAuthIsLoggedIn();
console.log('Is the user loggedin? ', isLoggedIn);
Checking if the users session has expired
const isSessionExpired = useAuthSessionExpired();
console.log('Is the users session expired? ', isSessionExpired);