2022-09-06 19:22:23 +02:00
|
|
|
import "./App.css";
|
|
|
|
|
import logo from "./logo.svg";
|
|
|
|
|
import myimg from "./myimg.png";
|
2023-10-22 12:39:00 +02:00
|
|
|
import { useMemo } from "react";
|
|
|
|
|
import { createOidcProvider, useOidc } from "oidc-spa/react";
|
|
|
|
|
import { decodeJwt } from "oidc-spa";
|
|
|
|
|
import { assert } from "tsafe/assert";
|
2023-03-04 17:58:09 +01:00
|
|
|
|
2023-03-22 00:59:31 +01:00
|
|
|
//On older Keycloak version you need the /auth (e.g: http://localhost:8080/auth)
|
|
|
|
|
//On newer version you must remove it (e.g: http://localhost:8080 )
|
|
|
|
|
const keycloakUrl = "https://auth.code.gouv.fr/auth";
|
2023-03-21 17:19:01 +01:00
|
|
|
const keycloakRealm = "keycloakify";
|
2023-10-22 12:39:00 +02:00
|
|
|
const keycloakClientId= "starter";
|
|
|
|
|
|
|
|
|
|
const { OidcProvider } = createOidcProvider({
|
|
|
|
|
issuerUri: `${keycloakUrl}/realms/${keycloakRealm}`,
|
|
|
|
|
clientId: keycloakClientId,
|
2023-10-24 13:42:23 +02:00
|
|
|
// NOTE: You can also pass queries params when calling oidc.login()
|
|
|
|
|
getExtraQueryParams: () => ({
|
2023-10-22 12:39:00 +02:00
|
|
|
// This adding ui_locales to the url will ensure the consistency of the language between the app and the login pages
|
|
|
|
|
// If your app implements a i18n system (like i18nifty.dev for example) you should use this and replace "en" by the
|
|
|
|
|
// current language of the app.
|
|
|
|
|
// On the other side you will find kcContext.locale.currentLanguageTag to be whatever you set here.
|
2023-10-24 13:42:23 +02:00
|
|
|
"ui_locales": "en",
|
|
|
|
|
"my_custom_param": "value of foo transferred to login page"
|
|
|
|
|
}),
|
|
|
|
|
/*
|
|
|
|
|
* This parameter have to be provided provide if your App is not hosted at the origin of the subdomain.
|
|
|
|
|
* For example if your site is hosted by navigating to `https://www.example.com`
|
|
|
|
|
* you don't have to provide this parameter.
|
|
|
|
|
* On the other end if your site is hosted by navigating to `https://www.example.com/my-app`
|
|
|
|
|
* Then you want to set publicUrl to `/my-app`
|
|
|
|
|
*
|
|
|
|
|
* Be mindful that `${window.location.origin}${publicUrl}/silent-sso.html` must return the `silent-sso.html` that
|
|
|
|
|
* you are supposed to have created in your `public/` directory.
|
|
|
|
|
*
|
|
|
|
|
* If your are still using `create-react-app` (like we are for now) you can just set
|
|
|
|
|
* publicUrl to `process.env.PUBLIC_URL` and don't have to think about it further.
|
|
|
|
|
*/
|
|
|
|
|
publicUrl: process.env.PUBLIC_URL
|
2023-03-04 17:58:09 +01:00
|
|
|
});
|
2022-09-06 19:22:23 +02:00
|
|
|
|
|
|
|
|
export default function App() {
|
2023-03-04 17:58:09 +01:00
|
|
|
return (
|
2023-10-22 12:39:00 +02:00
|
|
|
<OidcProvider>
|
2023-03-04 17:58:09 +01:00
|
|
|
<ContextualizedApp />
|
2023-10-22 12:39:00 +02:00
|
|
|
</OidcProvider>
|
2023-03-04 17:58:09 +01:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-22 12:39:00 +02:00
|
|
|
|
2023-03-04 17:58:09 +01:00
|
|
|
function ContextualizedApp() {
|
|
|
|
|
|
2023-10-22 12:39:00 +02:00
|
|
|
const { oidc } = useOidc();
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="App">
|
|
|
|
|
<header className="App-header">
|
|
|
|
|
{
|
|
|
|
|
oidc.isUserLoggedIn ?
|
|
|
|
|
<AuthenticatedRoute logout={() => oidc.logout({ redirectTo: "home" })} />
|
|
|
|
|
:
|
2023-10-24 13:42:23 +02:00
|
|
|
<button
|
|
|
|
|
onClick={() => oidc.login({
|
|
|
|
|
doesCurrentHrefRequiresAuth: false,
|
|
|
|
|
//extraQueryParams: { kc_idp_hint: "google" }
|
|
|
|
|
})}>
|
|
|
|
|
Login
|
|
|
|
|
</button>
|
2023-10-22 12:39:00 +02:00
|
|
|
}
|
|
|
|
|
<img src={logo} className="App-logo" alt="logo" />
|
|
|
|
|
<img src={myimg} alt="test_image" />
|
|
|
|
|
<p style={{ "fontFamily": '"Work Sans"' }}>Hello world</p>
|
2023-11-23 03:52:40 +01:00
|
|
|
<p>Check out all keycloak pages in the <a href="https://storybook.keycloakify.dev">Storybook</a>!</p>
|
2023-10-22 12:39:00 +02:00
|
|
|
<p>Once you've identified the ones you want to customize run <code>npx eject-keycloak-page</code></p>
|
|
|
|
|
</header>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function AuthenticatedRoute(props: { logout: () => void; }) {
|
|
|
|
|
|
|
|
|
|
const { logout } = props;
|
|
|
|
|
|
|
|
|
|
const { user } = useUser();
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<h1>Hello {user.name} !</h1>
|
|
|
|
|
<a href={buildAccountUrl({ locale: "en" })}>Link to your Keycloak account</a>
|
|
|
|
|
<button onClick={logout}>Logout</button>
|
|
|
|
|
<pre style={{ textAlign: "left" }}>{JSON.stringify(user, null, 2)}</pre>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function useUser() {
|
|
|
|
|
const { oidc } = useOidc();
|
|
|
|
|
|
|
|
|
|
assert(oidc.isUserLoggedIn, "This hook can only be used when the user is logged in");
|
|
|
|
|
|
|
|
|
|
const { idToken } = oidc.getTokens();
|
|
|
|
|
|
|
|
|
|
const user = useMemo(
|
|
|
|
|
() =>
|
|
|
|
|
decodeJwt<{
|
|
|
|
|
// Use https://jwt.io/ to tell what's in your idToken
|
|
|
|
|
// It will depend of your Keycloak configuration.
|
|
|
|
|
// Here I declare only two field on the type but actually there are
|
|
|
|
|
// Many more things available.
|
|
|
|
|
sub: string;
|
|
|
|
|
name: string;
|
|
|
|
|
preferred_username: string;
|
|
|
|
|
// This is a custom attribute set up in our Keycloak configuration
|
|
|
|
|
// it's not present by default.
|
|
|
|
|
// See https://docs.keycloakify.dev/realtime-input-validation#getting-your-custom-user-attribute-to-be-included-in-the-jwt
|
|
|
|
|
favorite_pet: "cat" | "dog" | "bird";
|
|
|
|
|
}>(idToken),
|
|
|
|
|
[idToken]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return { user };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function buildAccountUrl(
|
|
|
|
|
params: {
|
|
|
|
|
locale: string;
|
|
|
|
|
}
|
|
|
|
|
){
|
|
|
|
|
const { locale } = params;
|
2023-03-04 17:58:09 +01:00
|
|
|
|
2023-10-24 13:42:23 +02:00
|
|
|
const accountUrl = new URL(`${keycloakUrl}/realms/${keycloakRealm}/account`);
|
2023-04-20 04:41:29 +02:00
|
|
|
|
2023-10-24 13:42:23 +02:00
|
|
|
const searchParams = new URLSearchParams();
|
2023-04-20 04:41:29 +02:00
|
|
|
|
2023-10-24 13:42:23 +02:00
|
|
|
searchParams.append("kc_locale", locale);
|
|
|
|
|
searchParams.append("referrer", keycloakClientId);
|
|
|
|
|
searchParams.append("referrer_uri", window.location.href);
|
2023-04-20 04:41:29 +02:00
|
|
|
|
2023-10-24 13:42:23 +02:00
|
|
|
accountUrl.search = searchParams.toString();
|
2023-04-20 13:22:17 +02:00
|
|
|
|
2023-10-24 13:42:23 +02:00
|
|
|
return accountUrl.toString();
|
|
|
|
|
}
|