2020-10-02 13:56:46 +00:00
|
|
|
import React, { useContext, useEffect, useState } from "react";
|
2020-09-22 12:43:51 +00:00
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import {
|
|
|
|
FormGroup,
|
|
|
|
TextInput,
|
|
|
|
Form,
|
|
|
|
Switch,
|
|
|
|
TextArea,
|
|
|
|
PageSection,
|
2020-09-25 17:42:32 +00:00
|
|
|
ActionGroup,
|
|
|
|
Button,
|
|
|
|
AlertVariant,
|
2020-10-02 13:56:46 +00:00
|
|
|
ButtonVariant,
|
2020-10-19 13:44:22 +00:00
|
|
|
DropdownItem,
|
2020-09-22 12:43:51 +00:00
|
|
|
} from "@patternfly/react-core";
|
2020-09-25 17:42:32 +00:00
|
|
|
import { useParams } from "react-router-dom";
|
|
|
|
import { Controller, useForm } from "react-hook-form";
|
2020-09-22 12:43:51 +00:00
|
|
|
|
|
|
|
import { ScrollForm } from "../components/scroll-form/ScrollForm";
|
|
|
|
import { ClientDescription } from "./ClientDescription";
|
|
|
|
import { CapabilityConfig } from "./add/CapabilityConfig";
|
2020-10-06 08:25:38 +00:00
|
|
|
import { RealmContext } from "../context/realm-context/RealmContext";
|
|
|
|
import { HttpClientContext } from "../context/http-service/HttpClientContext";
|
2020-09-25 17:42:32 +00:00
|
|
|
import { ClientRepresentation } from "../realm/models/Realm";
|
|
|
|
import {
|
|
|
|
convertToMultiline,
|
|
|
|
MultiLineInput,
|
|
|
|
toValue,
|
|
|
|
} from "../components/multi-line-input/MultiLineInput";
|
|
|
|
import { useAlerts } from "../components/alert/Alerts";
|
2020-10-02 13:56:46 +00:00
|
|
|
import { ViewHeader } from "../components/view-header/ViewHeader";
|
|
|
|
import { exportClient } from "../util";
|
|
|
|
import { useConfirmDialog } from "../components/confirm-dialog/ConfirmDialog";
|
2020-10-13 17:57:35 +00:00
|
|
|
import { useDownloadDialog } from "../components/download-dialog/DownloadDialog";
|
2020-10-28 18:17:15 +00:00
|
|
|
import { FormAccess } from "../components/form-access/FormAccess";
|
2020-09-22 12:43:51 +00:00
|
|
|
|
2020-09-25 17:42:32 +00:00
|
|
|
export const ClientSettings = () => {
|
2020-09-22 12:43:51 +00:00
|
|
|
const { t } = useTranslation("clients");
|
2020-09-25 17:42:32 +00:00
|
|
|
const httpClient = useContext(HttpClientContext)!;
|
|
|
|
const { realm } = useContext(RealmContext);
|
2020-10-06 19:25:05 +00:00
|
|
|
const { addAlert } = useAlerts();
|
2020-09-25 17:42:32 +00:00
|
|
|
|
|
|
|
const { id } = useParams<{ id: string }>();
|
2020-10-02 13:56:46 +00:00
|
|
|
const [name, setName] = useState("");
|
2020-09-22 12:43:51 +00:00
|
|
|
const form = useForm();
|
2020-09-25 17:42:32 +00:00
|
|
|
const url = `/admin/realms/${realm}/clients/${id}`;
|
2020-09-22 12:43:51 +00:00
|
|
|
|
2020-09-25 17:42:32 +00:00
|
|
|
useEffect(() => {
|
|
|
|
(async () => {
|
|
|
|
const fetchedClient = await httpClient.doGet<ClientRepresentation>(url);
|
|
|
|
if (fetchedClient.data) {
|
2020-10-02 13:56:46 +00:00
|
|
|
setName(fetchedClient.data.clientId);
|
2020-09-25 17:42:32 +00:00
|
|
|
Object.entries(fetchedClient.data).map((entry) => {
|
|
|
|
if (entry[0] !== "redirectUris") {
|
|
|
|
form.setValue(entry[0], entry[1]);
|
|
|
|
} else if (entry[1] && entry[1].length > 0) {
|
|
|
|
form.setValue(entry[0], convertToMultiline(entry[1]));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
}, []);
|
|
|
|
|
2020-10-02 13:56:46 +00:00
|
|
|
const [toggleDeleteDialog, DeleteConfirm] = useConfirmDialog({
|
|
|
|
titleKey: "clients:clientDeleteConfirmTitle",
|
|
|
|
messageKey: "clients:clientDeleteConfirm",
|
|
|
|
continueButtonLabel: "common:delete",
|
|
|
|
continueButtonVariant: ButtonVariant.danger,
|
|
|
|
onConfirm: () => {
|
|
|
|
try {
|
|
|
|
httpClient.doDelete(`/admin/realms/${realm}/clients/${id}`);
|
|
|
|
addAlert(t("clientDeletedSuccess"), AlertVariant.success);
|
|
|
|
} catch (error) {
|
|
|
|
addAlert(`${t("clientDeleteError")} ${error}`, AlertVariant.danger);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2020-10-13 17:57:35 +00:00
|
|
|
const [toggleDownloadDialog, DownloadDialog] = useDownloadDialog({
|
|
|
|
id,
|
|
|
|
protocol: form.getValues("protocol"),
|
|
|
|
});
|
|
|
|
|
2020-09-25 17:42:32 +00:00
|
|
|
const save = async () => {
|
|
|
|
if (await form.trigger()) {
|
|
|
|
const redirectUris = toValue(form.getValues()["redirectUris"]);
|
|
|
|
try {
|
|
|
|
httpClient.doPut(url, { ...form.getValues(), redirectUris });
|
|
|
|
addAlert(t("clientSaveSuccess"), AlertVariant.success);
|
|
|
|
} catch (error) {
|
|
|
|
addAlert(`${t("clientSaveError")} '${error}'`, AlertVariant.danger);
|
|
|
|
}
|
|
|
|
}
|
2020-09-22 12:43:51 +00:00
|
|
|
};
|
2020-09-25 17:42:32 +00:00
|
|
|
|
2020-09-22 12:43:51 +00:00
|
|
|
return (
|
2020-10-02 13:56:46 +00:00
|
|
|
<>
|
|
|
|
<DeleteConfirm />
|
2020-10-13 17:57:35 +00:00
|
|
|
<DownloadDialog />
|
2020-10-02 13:56:46 +00:00
|
|
|
<Controller
|
|
|
|
name="enabled"
|
|
|
|
control={form.control}
|
|
|
|
defaultValue={true}
|
|
|
|
render={({ onChange, value }) => {
|
|
|
|
const [toggleDisableDialog, DisableConfirm] = useConfirmDialog({
|
|
|
|
titleKey: "clients:disableConfirmTitle",
|
|
|
|
messageKey: "clients:disableConfirm",
|
|
|
|
continueButtonLabel: "common:disable",
|
|
|
|
onConfirm: () => {
|
|
|
|
onChange(!value);
|
|
|
|
save();
|
|
|
|
},
|
|
|
|
});
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<DisableConfirm />
|
|
|
|
<ViewHeader
|
|
|
|
titleKey={name}
|
|
|
|
subKey="clients:clientsExplain"
|
2020-10-19 13:44:22 +00:00
|
|
|
dropdownItems={[
|
|
|
|
<DropdownItem
|
|
|
|
key="download"
|
|
|
|
onClick={() => toggleDownloadDialog()}
|
|
|
|
>
|
2020-10-13 17:57:35 +00:00
|
|
|
{t("downloadAdapterConfig")}
|
2020-10-19 13:44:22 +00:00
|
|
|
</DropdownItem>,
|
|
|
|
<DropdownItem
|
|
|
|
key="export"
|
|
|
|
onClick={() => exportClient(form.getValues())}
|
|
|
|
>
|
2020-10-02 13:56:46 +00:00
|
|
|
{t("common:export")}
|
2020-10-19 13:44:22 +00:00
|
|
|
</DropdownItem>,
|
|
|
|
<DropdownItem
|
|
|
|
key="delete"
|
|
|
|
onClick={() => toggleDeleteDialog()}
|
|
|
|
>
|
2020-10-02 13:56:46 +00:00
|
|
|
{t("common:delete")}
|
2020-10-19 13:44:22 +00:00
|
|
|
</DropdownItem>,
|
2020-10-02 13:56:46 +00:00
|
|
|
]}
|
|
|
|
isEnabled={value}
|
|
|
|
onToggle={(value) => {
|
|
|
|
if (!value) {
|
|
|
|
toggleDisableDialog();
|
|
|
|
} else {
|
|
|
|
onChange(value);
|
|
|
|
save();
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<PageSection variant="light">
|
|
|
|
<ScrollForm
|
|
|
|
sections={[
|
|
|
|
t("capabilityConfig"),
|
|
|
|
t("generalSettings"),
|
|
|
|
t("accessSettings"),
|
|
|
|
t("loginSettings"),
|
|
|
|
]}
|
|
|
|
>
|
|
|
|
<CapabilityConfig form={form} />
|
|
|
|
<Form isHorizontal>
|
|
|
|
<ClientDescription form={form} />
|
|
|
|
</Form>
|
2020-10-28 18:17:15 +00:00
|
|
|
<FormAccess isHorizontal role="manage-clients">
|
2020-10-02 13:56:46 +00:00
|
|
|
<FormGroup label={t("rootUrl")} fieldId="kc-root-url">
|
|
|
|
<TextInput
|
|
|
|
type="text"
|
|
|
|
id="kc-root-url"
|
|
|
|
name="rootUrl"
|
|
|
|
ref={form.register}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
<FormGroup label={t("validRedirectUri")} fieldId="kc-redirect">
|
|
|
|
<MultiLineInput form={form} name="redirectUris" />
|
|
|
|
</FormGroup>
|
|
|
|
<FormGroup label={t("homeURL")} fieldId="kc-home-url">
|
|
|
|
<TextInput
|
|
|
|
type="text"
|
|
|
|
id="kc-home-url"
|
|
|
|
name="baseUrl"
|
|
|
|
ref={form.register}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
2020-10-28 18:17:15 +00:00
|
|
|
</FormAccess>
|
|
|
|
<FormAccess isHorizontal role="manage-clients">
|
2020-10-02 13:56:46 +00:00
|
|
|
<FormGroup
|
|
|
|
label={t("consentRequired")}
|
|
|
|
fieldId="kc-consent"
|
|
|
|
hasNoPaddingTop
|
|
|
|
>
|
|
|
|
<Controller
|
|
|
|
name="consentRequired"
|
|
|
|
defaultValue={false}
|
|
|
|
control={form.control}
|
|
|
|
render={({ onChange, value }) => (
|
|
|
|
<Switch
|
|
|
|
id="kc-consent"
|
|
|
|
label={t("common:on")}
|
|
|
|
labelOff={t("common:off")}
|
|
|
|
isChecked={value}
|
|
|
|
onChange={onChange}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
<FormGroup
|
|
|
|
label={t("displayOnClient")}
|
|
|
|
fieldId="kc-display-on-client"
|
|
|
|
hasNoPaddingTop
|
|
|
|
>
|
|
|
|
<Controller
|
|
|
|
name="alwaysDisplayInConsole"
|
|
|
|
defaultValue={false}
|
|
|
|
control={form.control}
|
|
|
|
render={({ onChange, value }) => (
|
|
|
|
<Switch
|
|
|
|
id="kc-display-on-client"
|
|
|
|
label={t("common:on")}
|
|
|
|
labelOff={t("common:off")}
|
|
|
|
isChecked={value}
|
|
|
|
onChange={onChange}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
<FormGroup
|
|
|
|
label={t("consentScreenText")}
|
|
|
|
fieldId="kc-consent-screen-text"
|
|
|
|
>
|
|
|
|
<TextArea
|
|
|
|
id="kc-consent-screen-text"
|
|
|
|
name="consentText"
|
|
|
|
ref={form.register}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
<ActionGroup>
|
|
|
|
<Button variant="primary" onClick={() => save()}>
|
|
|
|
{t("common:save")}
|
|
|
|
</Button>
|
|
|
|
<Button variant="link">{t("common:cancel")}</Button>
|
|
|
|
</ActionGroup>
|
2020-10-28 18:17:15 +00:00
|
|
|
</FormAccess>
|
2020-10-02 13:56:46 +00:00
|
|
|
</ScrollForm>
|
|
|
|
</PageSection>
|
|
|
|
</>
|
2020-09-22 12:43:51 +00:00
|
|
|
);
|
|
|
|
};
|