186 lines
6.1 KiB
TypeScript
186 lines
6.1 KiB
TypeScript
import React, { useEffect, useState } from "react";
|
|
import { useFormContext } from "react-hook-form";
|
|
import { FormGroup, Switch, TextInput, Title } from "@patternfly/react-core";
|
|
|
|
import { HelpItem } from "../../components/help-enabler/HelpItem";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useAdminClient } from "../../context/auth/AdminClient";
|
|
import type { OIDCConfigurationRepresentation } from "../OIDCConfigurationRepresentation";
|
|
import { JsonFileUpload } from "../../components/json-file-upload/JsonFileUpload";
|
|
import { useRealm } from "../../context/realm-context/RealmContext";
|
|
import { DiscoverySettings } from "./DiscoverySettings";
|
|
import { getBaseUrl } from "../../util";
|
|
|
|
type Result = OIDCConfigurationRepresentation & {
|
|
error: string;
|
|
};
|
|
|
|
export const OpenIdConnectSettings = () => {
|
|
const { t } = useTranslation("identity-providers");
|
|
const id = "oidc";
|
|
|
|
const adminClient = useAdminClient();
|
|
const { realm } = useRealm();
|
|
const { setValue } = useFormContext();
|
|
|
|
const [discovery, setDiscovery] = useState(true);
|
|
const [discoveryUrl, setDiscoveryUrl] = useState("");
|
|
const [discovering, setDiscovering] = useState(false);
|
|
const [discoveryResult, setDiscoveryResult] = useState<Result>();
|
|
|
|
const setupForm = (result: any) => {
|
|
Object.keys(result).map((k) => setValue(`config.${k}`, result[k]));
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (discovering) {
|
|
setDiscovering(!!discoveryUrl);
|
|
if (discoveryUrl)
|
|
(async () => {
|
|
let result;
|
|
try {
|
|
result = await adminClient.identityProviders.importFromUrl({
|
|
providerId: id,
|
|
fromUrl: discoveryUrl,
|
|
});
|
|
} catch (error) {
|
|
result = { error };
|
|
}
|
|
|
|
setDiscoveryResult(result as Result);
|
|
setupForm(result);
|
|
setDiscovering(false);
|
|
})();
|
|
}
|
|
}, [discovering]);
|
|
|
|
const fileUpload = async (value: string) => {
|
|
if (value !== "") {
|
|
const formData = new FormData();
|
|
formData.append("providerId", id);
|
|
formData.append("file", new Blob([value]));
|
|
|
|
try {
|
|
const response = await fetch(
|
|
`${getBaseUrl(
|
|
adminClient
|
|
)}/admin/realms/${realm}/identity-provider/import-config`,
|
|
{
|
|
method: "POST",
|
|
body: formData,
|
|
headers: {
|
|
Authorization: `bearer ${await adminClient.getAccessToken()}`,
|
|
},
|
|
}
|
|
);
|
|
const result = await response.json();
|
|
setupForm(result);
|
|
} catch (error) {
|
|
setDiscoveryResult({ error });
|
|
}
|
|
}
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Title headingLevel="h4" size="xl" className="kc-form-panel__title">
|
|
{t("OpenID Connect settings")}
|
|
</Title>
|
|
<FormGroup
|
|
label={t("useDiscoveryEndpoint")}
|
|
fieldId="kc-discovery-endpoint-switch"
|
|
labelIcon={
|
|
<HelpItem
|
|
helpText="identity-providers-help:useDiscoveryEndpoint"
|
|
forLabel={t("useDiscoveryEndpoint")}
|
|
forID="kc-discovery-endpoint-switch"
|
|
/>
|
|
}
|
|
>
|
|
<Switch
|
|
id="kc-discovery-endpoint-switch"
|
|
label={t("common:on")}
|
|
labelOff={t("common:off")}
|
|
isChecked={discovery}
|
|
onChange={setDiscovery}
|
|
/>
|
|
</FormGroup>
|
|
{discovery && (
|
|
<FormGroup
|
|
label={t("discoveryEndpoint")}
|
|
fieldId="kc-discovery-endpoint"
|
|
labelIcon={
|
|
<HelpItem
|
|
helpText="identity-providers-help:discoveryEndpoint"
|
|
forLabel={t("discoveryEndpoint")}
|
|
forID="kc-discovery-endpoint"
|
|
/>
|
|
}
|
|
validated={
|
|
discoveryResult && discoveryResult.error
|
|
? "error"
|
|
: !discoveryResult
|
|
? "default"
|
|
: "success"
|
|
}
|
|
helperTextInvalid={t("noValidMetaDataFound")}
|
|
isRequired
|
|
>
|
|
<TextInput
|
|
type="text"
|
|
data-testid="discoveryEndpoint"
|
|
id="kc-discovery-endpoint"
|
|
placeholder="https://hostname/.well-known/openid-configuration"
|
|
value={discoveryUrl}
|
|
onChange={setDiscoveryUrl}
|
|
onBlur={() => setDiscovering(!discovering)}
|
|
validated={
|
|
discoveryResult && discoveryResult.error
|
|
? "error"
|
|
: !discoveryResult
|
|
? "default"
|
|
: "success"
|
|
}
|
|
customIconUrl={
|
|
discovering
|
|
? 'data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid"%3E%3Ccircle cx="50" cy="50" fill="none" stroke="%230066cc" stroke-width="10" r="35" stroke-dasharray="164.93361431346415 56.97787143782138"%3E%3CanimateTransform attributeName="transform" type="rotate" repeatCount="indefinite" dur="1s" values="0 50 50;360 50 50" keyTimes="0;1"%3E%3C/animateTransform%3E%3C/circle%3E%3C/svg%3E'
|
|
: ""
|
|
}
|
|
/>
|
|
</FormGroup>
|
|
)}
|
|
{!discovery && (
|
|
<FormGroup
|
|
label={t("importConfig")}
|
|
fieldId="kc-import-config"
|
|
labelIcon={
|
|
<HelpItem
|
|
helpText="identity-providers-help:importConfig"
|
|
forLabel={t("importConfig")}
|
|
forID="kc-import-config"
|
|
/>
|
|
}
|
|
validated={
|
|
discoveryResult && discoveryResult.error ? "error" : "default"
|
|
}
|
|
helperTextInvalid={discoveryResult?.error?.toString()}
|
|
>
|
|
<JsonFileUpload
|
|
id="kc-import-config"
|
|
helpText="identity=providers-help:jsonFileUpload"
|
|
hideDefaultPreview
|
|
unWrap
|
|
validated={
|
|
discoveryResult && discoveryResult.error ? "error" : "default"
|
|
}
|
|
onChange={(value) => fileUpload(value as string)}
|
|
/>
|
|
</FormGroup>
|
|
)}
|
|
{discovery && discoveryResult && !discoveryResult.error && (
|
|
<DiscoverySettings readOnly={true} />
|
|
)}
|
|
{!discovery && <DiscoverySettings readOnly={false} />}
|
|
</>
|
|
);
|
|
};
|