2021-02-28 20:02:31 +00:00
|
|
|
import React, { useEffect, useState } from "react";
|
|
|
|
import { Link } from "react-router-dom";
|
|
|
|
import { Trans, useTranslation } from "react-i18next";
|
|
|
|
import { Controller, useFormContext } from "react-hook-form";
|
|
|
|
import moment from "moment";
|
|
|
|
import {
|
|
|
|
ActionGroup,
|
|
|
|
AlertVariant,
|
|
|
|
Button,
|
|
|
|
ButtonVariant,
|
|
|
|
ExpandableSection,
|
|
|
|
FormGroup,
|
2021-04-01 14:14:19 +00:00
|
|
|
PageSection,
|
2021-02-28 20:02:31 +00:00
|
|
|
Split,
|
|
|
|
SplitItem,
|
|
|
|
Text,
|
|
|
|
TextInput,
|
|
|
|
ToolbarItem,
|
|
|
|
} from "@patternfly/react-core";
|
|
|
|
|
|
|
|
import GlobalRequestResult from "keycloak-admin/lib/defs/globalRequestResult";
|
|
|
|
import ClientRepresentation from "keycloak-admin/lib/defs/clientRepresentation";
|
|
|
|
import { convertToFormValues, toUpperCase } from "../util";
|
|
|
|
import { FormAccess } from "../components/form-access/FormAccess";
|
|
|
|
import { ScrollForm } from "../components/scroll-form/ScrollForm";
|
|
|
|
import { HelpItem } from "../components/help-enabler/HelpItem";
|
|
|
|
import { KeycloakDataTable } from "../components/table-toolbar/KeycloakDataTable";
|
|
|
|
import { FineGrainOpenIdConnect } from "./advanced/FineGrainOpenIdConnect";
|
|
|
|
import { OpenIdConnectCompatibilityModes } from "./advanced/OpenIdConnectCompatibilityModes";
|
|
|
|
import { AdvancedSettings } from "./advanced/AdvancedSettings";
|
|
|
|
import { TimeSelector } from "../components/time-selector/TimeSelector";
|
|
|
|
import { useAdminClient } from "../context/auth/AdminClient";
|
|
|
|
import { useAlerts } from "../components/alert/Alerts";
|
|
|
|
import { useConfirmDialog } from "../components/confirm-dialog/ConfirmDialog";
|
|
|
|
import { AddHostDialog } from "./advanced/AddHostDialog";
|
|
|
|
import { FineGrainSamlEndpointConfig } from "./advanced/FineGrainSamlEndpointConfig";
|
|
|
|
import { AuthenticationOverrides } from "./advanced/AuthenticationOverrides";
|
|
|
|
import { useRealm } from "../context/realm-context/RealmContext";
|
2021-03-17 13:40:19 +00:00
|
|
|
import { SaveOptions } from "./ClientDetails";
|
2021-02-28 20:02:31 +00:00
|
|
|
|
|
|
|
type AdvancedProps = {
|
2021-03-17 13:40:19 +00:00
|
|
|
save: (options?: SaveOptions) => void;
|
2021-02-28 20:02:31 +00:00
|
|
|
client: ClientRepresentation;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const AdvancedTab = ({
|
|
|
|
save,
|
|
|
|
client: {
|
|
|
|
id,
|
|
|
|
registeredNodes,
|
|
|
|
attributes,
|
|
|
|
protocol,
|
|
|
|
authenticationFlowBindingOverrides,
|
|
|
|
},
|
|
|
|
}: AdvancedProps) => {
|
|
|
|
const { t } = useTranslation("clients");
|
|
|
|
const adminClient = useAdminClient();
|
|
|
|
const { realm } = useRealm();
|
|
|
|
const { addAlert } = useAlerts();
|
|
|
|
const revocationFieldName = "notBefore";
|
|
|
|
const openIdConnect = "openid-connect";
|
|
|
|
|
|
|
|
const { getValues, setValue, register, control, reset } = useFormContext();
|
|
|
|
const [expanded, setExpanded] = useState(false);
|
|
|
|
const [selectedNode, setSelectedNode] = useState("");
|
|
|
|
const [addNodeOpen, setAddNodeOpen] = useState(false);
|
|
|
|
const [key, setKey] = useState(0);
|
|
|
|
const refresh = () => setKey(new Date().getTime());
|
|
|
|
const [nodes, setNodes] = useState(registeredNodes || {});
|
|
|
|
|
2021-03-17 13:40:19 +00:00
|
|
|
const setNotBefore = (time: number, messageKey: string) => {
|
2021-02-28 20:02:31 +00:00
|
|
|
setValue(revocationFieldName, time);
|
2021-03-17 13:40:19 +00:00
|
|
|
save({ messageKey });
|
2021-02-28 20:02:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const parseResult = (result: GlobalRequestResult, prefixKey: string) => {
|
|
|
|
const successCount = result.successRequests?.length || 0;
|
|
|
|
const failedCount = result.failedRequests?.length || 0;
|
|
|
|
|
|
|
|
if (successCount === 0 && failedCount === 0) {
|
|
|
|
addAlert(t("noAdminUrlSet"), AlertVariant.warning);
|
|
|
|
} else if (failedCount > 0) {
|
|
|
|
addAlert(
|
|
|
|
t(prefixKey + "Success", { successNodes: result.successRequests }),
|
|
|
|
AlertVariant.success
|
|
|
|
);
|
|
|
|
addAlert(
|
|
|
|
t(prefixKey + "Fail", { failedNodes: result.failedRequests }),
|
|
|
|
AlertVariant.danger
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
addAlert(
|
|
|
|
t(prefixKey + "Success", { successNodes: result.successRequests }),
|
|
|
|
AlertVariant.success
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const resetFields = (names: string[]) => {
|
|
|
|
const values: { [name: string]: string } = {};
|
|
|
|
for (const name of names) {
|
|
|
|
values[`attributes.${name}`] = attributes
|
|
|
|
? attributes[name.replace(/-/g, ".")] || ""
|
|
|
|
: "";
|
|
|
|
}
|
|
|
|
reset(values);
|
|
|
|
};
|
|
|
|
|
|
|
|
const push = async () => {
|
|
|
|
const result = ((await adminClient.clients.pushRevocation({
|
|
|
|
id: id!,
|
|
|
|
})) as unknown) as GlobalRequestResult;
|
|
|
|
parseResult(result, "notBeforePush");
|
|
|
|
};
|
|
|
|
|
|
|
|
const testCluster = async () => {
|
|
|
|
const result = await adminClient.clients.testNodesAvailable({ id: id! });
|
|
|
|
parseResult(result, "testCluster");
|
|
|
|
};
|
|
|
|
|
|
|
|
const [toggleDeleteNodeConfirm, DeleteNodeConfirm] = useConfirmDialog({
|
|
|
|
titleKey: "clients:deleteNode",
|
|
|
|
messageKey: t("deleteNodeBody", {
|
|
|
|
node: selectedNode,
|
|
|
|
}),
|
|
|
|
continueButtonLabel: "common:delete",
|
|
|
|
continueButtonVariant: ButtonVariant.danger,
|
|
|
|
onConfirm: async () => {
|
|
|
|
try {
|
|
|
|
await adminClient.clients.deleteClusterNode({
|
|
|
|
id: id!,
|
|
|
|
node: selectedNode,
|
|
|
|
});
|
|
|
|
setNodes({
|
|
|
|
...Object.keys(nodes).reduce((object: any, key) => {
|
|
|
|
if (key !== selectedNode) {
|
|
|
|
object[key] = nodes[key];
|
|
|
|
}
|
|
|
|
return object;
|
|
|
|
}, {}),
|
|
|
|
});
|
|
|
|
refresh();
|
|
|
|
addAlert(t("deleteNodeSuccess"), AlertVariant.success);
|
|
|
|
} catch (error) {
|
|
|
|
addAlert(
|
|
|
|
t("deleteNodeFail", { error: error.response?.data?.error || error }),
|
|
|
|
AlertVariant.danger
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
register(revocationFieldName);
|
|
|
|
}, [register]);
|
|
|
|
|
|
|
|
const formatDate = () => {
|
|
|
|
const date = getValues(revocationFieldName);
|
|
|
|
if (date > 0) {
|
|
|
|
return moment(date * 1000).format("LLL");
|
|
|
|
} else {
|
|
|
|
return t("none");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const sections = [
|
|
|
|
t("revocation"),
|
|
|
|
t("clustering"),
|
|
|
|
protocol === openIdConnect
|
|
|
|
? t("fineGrainOpenIdConnectConfiguration")
|
|
|
|
: t("fineGrainSamlEndpointConfig"),
|
|
|
|
t("advancedSettings"),
|
|
|
|
t("authenticationOverrides"),
|
|
|
|
];
|
|
|
|
if (protocol === openIdConnect) {
|
|
|
|
sections.splice(3, 0, t("openIdConnectCompatibilityModes"));
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2021-04-01 14:14:19 +00:00
|
|
|
<PageSection variant="light">
|
|
|
|
<ScrollForm sections={sections}>
|
|
|
|
<>
|
2021-04-15 08:54:06 +00:00
|
|
|
<Text className="pf-u-pb-lg">
|
2021-04-01 14:14:19 +00:00
|
|
|
<Trans i18nKey="clients-help:notBeforeIntro">
|
|
|
|
In order to successfully push setup url on
|
|
|
|
<Link to={`/${realm}/clients/${id}/settings`}>
|
|
|
|
{t("settings")}
|
|
|
|
</Link>
|
|
|
|
tab
|
|
|
|
</Trans>
|
|
|
|
</Text>
|
|
|
|
<FormAccess role="manage-clients" isHorizontal>
|
|
|
|
<FormGroup
|
|
|
|
label={t("notBefore")}
|
|
|
|
fieldId="kc-not-before"
|
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText="clients-help:notBefore"
|
|
|
|
forLabel={t("notBefore")}
|
|
|
|
forID="kc-not-before"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<TextInput
|
|
|
|
type="text"
|
|
|
|
id="kc-not-before"
|
|
|
|
name="notBefore"
|
|
|
|
isReadOnly
|
|
|
|
value={formatDate()}
|
2021-03-17 13:40:19 +00:00
|
|
|
/>
|
2021-04-01 14:14:19 +00:00
|
|
|
</FormGroup>
|
|
|
|
<ActionGroup>
|
|
|
|
<Button
|
|
|
|
id="setToNow"
|
|
|
|
variant="tertiary"
|
|
|
|
onClick={() => {
|
|
|
|
setNotBefore(moment.now() / 1000, "notBeforeSetToNow");
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{t("setToNow")}
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
id="clear"
|
|
|
|
variant="tertiary"
|
|
|
|
onClick={() => {
|
|
|
|
setNotBefore(0, "notBeforeNowClear");
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{t("clear")}
|
|
|
|
</Button>
|
|
|
|
<Button id="push" variant="secondary" onClick={push}>
|
|
|
|
{t("push")}
|
|
|
|
</Button>
|
|
|
|
</ActionGroup>
|
|
|
|
</FormAccess>
|
|
|
|
</>
|
|
|
|
<>
|
|
|
|
<FormAccess role="manage-clients" isHorizontal>
|
|
|
|
<FormGroup
|
|
|
|
label={t("nodeReRegistrationTimeout")}
|
|
|
|
fieldId="kc-node-reregistration-timeout"
|
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText="clients-help:nodeReRegistrationTimeout"
|
|
|
|
forLabel={t("nodeReRegistrationTimeout")}
|
|
|
|
forID="nodeReRegistrationTimeout"
|
|
|
|
/>
|
|
|
|
}
|
2021-03-17 13:40:19 +00:00
|
|
|
>
|
2021-04-01 14:14:19 +00:00
|
|
|
<Split hasGutter>
|
|
|
|
<SplitItem>
|
|
|
|
<Controller
|
|
|
|
name="nodeReRegistrationTimeout"
|
|
|
|
defaultValue=""
|
|
|
|
control={control}
|
|
|
|
render={({ onChange, value }) => (
|
|
|
|
<TimeSelector value={value} onChange={onChange} />
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
</SplitItem>
|
|
|
|
<SplitItem>
|
|
|
|
<Button
|
|
|
|
variant={ButtonVariant.secondary}
|
|
|
|
onClick={() => save()}
|
|
|
|
>
|
|
|
|
{t("common:save")}
|
|
|
|
</Button>
|
|
|
|
</SplitItem>
|
|
|
|
</Split>
|
|
|
|
</FormGroup>
|
|
|
|
</FormAccess>
|
|
|
|
<>
|
|
|
|
<DeleteNodeConfirm />
|
|
|
|
<AddHostDialog
|
|
|
|
clientId={id!}
|
|
|
|
isOpen={addNodeOpen}
|
|
|
|
onAdded={(node) => {
|
|
|
|
nodes[node] = moment.now() / 1000;
|
|
|
|
refresh();
|
2021-03-17 13:40:19 +00:00
|
|
|
}}
|
2021-04-01 14:14:19 +00:00
|
|
|
onClose={() => setAddNodeOpen(false)}
|
|
|
|
/>
|
|
|
|
<ExpandableSection
|
|
|
|
toggleText={t("registeredClusterNodes")}
|
|
|
|
onToggle={() => setExpanded(!expanded)}
|
|
|
|
isExpanded={expanded}
|
2021-02-28 20:02:31 +00:00
|
|
|
>
|
2021-04-01 14:14:19 +00:00
|
|
|
<KeycloakDataTable
|
|
|
|
key={key}
|
|
|
|
ariaLabelKey="registeredClusterNodes"
|
|
|
|
loader={() =>
|
|
|
|
Promise.resolve(
|
|
|
|
Object.entries(nodes || {}).map((entry) => {
|
|
|
|
return { host: entry[0], registration: entry[1] };
|
|
|
|
})
|
|
|
|
)
|
|
|
|
}
|
|
|
|
toolbarItem={
|
|
|
|
<>
|
|
|
|
<ToolbarItem>
|
|
|
|
<Button
|
|
|
|
id="testClusterAvailability"
|
|
|
|
onClick={testCluster}
|
|
|
|
variant={ButtonVariant.secondary}
|
|
|
|
isDisabled={Object.keys(nodes).length === 0}
|
|
|
|
>
|
|
|
|
{t("testClusterAvailability")}
|
|
|
|
</Button>
|
|
|
|
</ToolbarItem>
|
|
|
|
<ToolbarItem>
|
|
|
|
<Button
|
|
|
|
id="registerNodeManually"
|
|
|
|
onClick={() => setAddNodeOpen(true)}
|
|
|
|
variant={ButtonVariant.tertiary}
|
|
|
|
>
|
|
|
|
{t("registerNodeManually")}
|
|
|
|
</Button>
|
|
|
|
</ToolbarItem>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
actions={[
|
|
|
|
{
|
|
|
|
title: t("common:delete"),
|
|
|
|
onRowClick: (node) => {
|
|
|
|
setSelectedNode(node.host);
|
|
|
|
toggleDeleteNodeConfirm();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
columns={[
|
|
|
|
{
|
|
|
|
name: "host",
|
|
|
|
displayKey: "clients:nodeHost",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "registration",
|
|
|
|
displayKey: "clients:lastRegistration",
|
|
|
|
cellFormatters: [
|
|
|
|
(value) =>
|
|
|
|
value
|
|
|
|
? moment(parseInt(value.toString()) * 1000).format(
|
|
|
|
"LLL"
|
|
|
|
)
|
|
|
|
: "",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
]}
|
2021-02-28 20:02:31 +00:00
|
|
|
/>
|
2021-04-01 14:14:19 +00:00
|
|
|
</ExpandableSection>
|
|
|
|
</>
|
|
|
|
</>
|
2021-03-17 13:40:19 +00:00
|
|
|
<>
|
2021-04-01 14:14:19 +00:00
|
|
|
{protocol === openIdConnect && (
|
|
|
|
<>
|
2021-04-15 08:54:06 +00:00
|
|
|
<Text className="pf-u-pb-lg">
|
2021-04-01 14:14:19 +00:00
|
|
|
{t("clients-help:fineGrainOpenIdConnectConfiguration")}
|
|
|
|
</Text>
|
|
|
|
<FineGrainOpenIdConnect
|
|
|
|
control={control}
|
|
|
|
save={() => save()}
|
|
|
|
reset={() =>
|
|
|
|
convertToFormValues(attributes, "attributes", setValue)
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
{protocol !== openIdConnect && (
|
|
|
|
<>
|
2021-04-15 08:54:06 +00:00
|
|
|
<Text className="pf-u-pb-lg">
|
2021-04-01 14:14:19 +00:00
|
|
|
{t("clients-help:fineGrainSamlEndpointConfig")}
|
|
|
|
</Text>
|
|
|
|
<FineGrainSamlEndpointConfig
|
|
|
|
control={control}
|
|
|
|
save={() => save()}
|
|
|
|
reset={() =>
|
|
|
|
convertToFormValues(attributes, "attributes", setValue)
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
)}
|
2021-03-17 13:40:19 +00:00
|
|
|
</>
|
2021-02-28 20:02:31 +00:00
|
|
|
{protocol === openIdConnect && (
|
|
|
|
<>
|
2021-04-15 08:54:06 +00:00
|
|
|
<Text className="pf-u-pb-lg">
|
2021-04-01 14:14:19 +00:00
|
|
|
{t("clients-help:openIdConnectCompatibilityModes")}
|
2021-03-17 13:40:19 +00:00
|
|
|
</Text>
|
2021-04-01 14:14:19 +00:00
|
|
|
<OpenIdConnectCompatibilityModes
|
2021-03-17 13:40:19 +00:00
|
|
|
control={control}
|
|
|
|
save={() => save()}
|
|
|
|
reset={() =>
|
2021-04-01 14:14:19 +00:00
|
|
|
resetFields(["exclude-session-state-from-auth-response"])
|
2021-03-17 13:40:19 +00:00
|
|
|
}
|
|
|
|
/>
|
2021-02-28 20:02:31 +00:00
|
|
|
</>
|
|
|
|
)}
|
2021-03-17 13:40:19 +00:00
|
|
|
<>
|
2021-04-15 08:54:06 +00:00
|
|
|
<Text className="pf-u-pb-lg">
|
2021-04-13 08:01:21 +00:00
|
|
|
{t("clients-help:advancedSettings" + toUpperCase(protocol || ""))}
|
2021-02-28 20:02:31 +00:00
|
|
|
</Text>
|
2021-04-01 14:14:19 +00:00
|
|
|
<AdvancedSettings
|
|
|
|
protocol={protocol}
|
2021-02-28 20:02:31 +00:00
|
|
|
control={control}
|
2021-03-17 13:40:19 +00:00
|
|
|
save={() => save()}
|
2021-04-01 14:14:19 +00:00
|
|
|
reset={() => {
|
|
|
|
resetFields([
|
|
|
|
"saml-assertion-lifespan",
|
|
|
|
"access-token-lifespan",
|
|
|
|
"tls-client-certificate-bound-access-tokens",
|
|
|
|
"pkce-code-challenge-method",
|
|
|
|
]);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
<>
|
2021-04-15 08:54:06 +00:00
|
|
|
<Text className="pf-u-pb-lg">
|
2021-04-01 14:14:19 +00:00
|
|
|
{t("clients-help:authenticationOverrides")}
|
|
|
|
</Text>
|
|
|
|
<AuthenticationOverrides
|
|
|
|
protocol={protocol}
|
|
|
|
control={control}
|
|
|
|
save={() => save()}
|
|
|
|
reset={() => {
|
|
|
|
setValue(
|
|
|
|
"authenticationFlowBindingOverrides.browser",
|
|
|
|
authenticationFlowBindingOverrides?.browser
|
|
|
|
);
|
|
|
|
setValue(
|
|
|
|
"authenticationFlowBindingOverrides.direct_grant",
|
|
|
|
authenticationFlowBindingOverrides?.direct_grant
|
|
|
|
);
|
|
|
|
}}
|
2021-02-28 20:02:31 +00:00
|
|
|
/>
|
2021-03-17 13:40:19 +00:00
|
|
|
</>
|
2021-04-01 14:14:19 +00:00
|
|
|
</ScrollForm>
|
|
|
|
</PageSection>
|
2021-02-28 20:02:31 +00:00
|
|
|
);
|
|
|
|
};
|