import { useFormContext } from "react-hook-form";
import { useTranslation } from "react-i18next";
import { SelectControl } from "@keycloakify/keycloak-admin-ui/ui-shared";
import { FormAccess } from "@keycloakify/keycloak-admin-ui/components/form/FormAccess";
import { convertAttributeNameToForm } from "@keycloakify/keycloak-admin-ui/util";
import { FormFields } from "@keycloakify/keycloak-admin-ui/clients/ClientDetails";
import { Toggle } from "@keycloakify/keycloak-admin-ui/clients/add/SamlConfig";

const SIGNATURE_ALGORITHMS = [
  "RSA_SHA1",
  "RSA_SHA256",
  "RSA_SHA256_MGF1",
  "RSA_SHA512",
  "RSA_SHA512_MGF1",
  "DSA_SHA1",
] as const;

const KEYNAME_TRANSFORMER = ["NONE", "KEY_ID", "CERT_SUBJECT"] as const;

const CANONICALIZATION = [
  { name: "EXCLUSIVE", value: "http://www.w3.org/2001/10/xml-exc-c14n#" },
  {
    name: "EXCLUSIVE_WITH_COMMENTS",
    value: "http://www.w3.org/2001/10/xml-exc-c14n#WithComments",
  },
  {
    name: "INCLUSIVE",
    value: "http://www.w3.org/TR/2001/REC-xml-c14n-20010315",
  },
  {
    name: "INCLUSIVE_WITH_COMMENTS",
    value: "http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments",
  },
] as const;

export const SamlSignature = () => {
  const { t } = useTranslation();
  const { watch } = useFormContext<FormFields>();

  const signDocs = watch(
    convertAttributeNameToForm<FormFields>("attributes.saml.server.signature"),
  );
  const signAssertion = watch(
    convertAttributeNameToForm<FormFields>(
      "attributes.saml.assertion.signature",
    ),
  );

  return (
    <FormAccess
      isHorizontal
      role="manage-clients"
      className="keycloak__capability-config__form"
    >
      <Toggle
        name={convertAttributeNameToForm("attributes.saml.server.signature")}
        label="signDocuments"
      />
      <Toggle
        name={convertAttributeNameToForm("attributes.saml.assertion.signature")}
        label="signAssertions"
      />
      {(signDocs === "true" || signAssertion === "true") && (
        <>
          <SelectControl
            name={convertAttributeNameToForm<FormFields>(
              "attributes.saml.signature.algorithm",
            )}
            label={t("signatureAlgorithm")}
            labelIcon={t("signatureAlgorithmHelp")}
            controller={{
              defaultValue: SIGNATURE_ALGORITHMS[0],
            }}
            options={[...SIGNATURE_ALGORITHMS]}
          />
          <SelectControl
            name={convertAttributeNameToForm<FormFields>(
              "attributes.saml.server.signature.keyinfo.xmlSigKeyInfoKeyNameTransformer",
            )}
            label={t("signatureKeyName")}
            labelIcon={t("signatureKeyNameHelp")}
            controller={{
              defaultValue: KEYNAME_TRANSFORMER[0],
            }}
            options={[...KEYNAME_TRANSFORMER]}
          />
          <SelectControl
            name="attributes.saml_signature_canonicalization_method"
            label={t("canonicalization")}
            labelIcon={t("canonicalizationHelp")}
            controller={{
              defaultValue: CANONICALIZATION[0].value,
            }}
            options={CANONICALIZATION.map(({ name, value }) => ({
              key: value,
              value: name,
            }))}
          />
        </>
      )}
    </FormAccess>
  );
};
