2022-02-02 10:33:57 +00:00
|
|
|
import { cloneDeep } from "lodash-es";
|
2020-10-02 13:56:46 +00:00
|
|
|
import FileSaver from "file-saver";
|
2021-12-08 15:08:42 +00:00
|
|
|
import type { IFormatter, IFormatterValueType } from "@patternfly/react-table";
|
|
|
|
import { unflatten, flatten } from "flat";
|
|
|
|
|
2021-08-26 08:39:35 +00:00
|
|
|
import type ClientRepresentation from "@keycloak/keycloak-admin-client/lib/defs/clientRepresentation";
|
|
|
|
import type { ProviderRepresentation } from "@keycloak/keycloak-admin-client/lib/defs/serverInfoRepesentation";
|
|
|
|
import type KeycloakAdminClient from "@keycloak/keycloak-admin-client";
|
2021-12-08 15:08:42 +00:00
|
|
|
|
|
|
|
import {
|
|
|
|
arrayToAttributes,
|
|
|
|
attributesToArray,
|
|
|
|
KeyValueType,
|
|
|
|
} from "./components/attribute-form/attribute-convert";
|
|
|
|
import {
|
|
|
|
convertToMultiline,
|
|
|
|
toValue,
|
|
|
|
} from "./components/multi-line-input/multi-line-convert";
|
2020-08-31 18:26:25 +00:00
|
|
|
|
2020-11-02 20:15:09 +00:00
|
|
|
export const sortProviders = (providers: {
|
|
|
|
[index: string]: ProviderRepresentation;
|
|
|
|
}) => {
|
|
|
|
return [...new Map(Object.entries(providers).sort(sortProvider)).keys()];
|
|
|
|
};
|
|
|
|
|
|
|
|
const sortProvider = (
|
2020-09-01 14:51:59 +00:00
|
|
|
a: [string, ProviderRepresentation],
|
|
|
|
b: [string, ProviderRepresentation]
|
|
|
|
) => {
|
2020-08-31 18:26:25 +00:00
|
|
|
let s1, s2;
|
2020-10-27 11:25:54 +00:00
|
|
|
if (a[1].order !== b[1].order) {
|
2020-08-31 18:26:25 +00:00
|
|
|
s1 = b[1].order;
|
|
|
|
s2 = a[1].order;
|
2020-09-01 14:51:59 +00:00
|
|
|
} else {
|
2020-08-31 18:26:25 +00:00
|
|
|
s1 = a[0];
|
|
|
|
s2 = b[0];
|
2020-09-01 14:51:59 +00:00
|
|
|
}
|
2020-08-31 18:26:25 +00:00
|
|
|
if (s1 < s2) {
|
|
|
|
return -1;
|
|
|
|
} else if (s1 > s2) {
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
};
|
2020-10-02 13:56:46 +00:00
|
|
|
|
|
|
|
export const exportClient = (client: ClientRepresentation): void => {
|
2021-12-08 15:08:42 +00:00
|
|
|
const clientCopy = cloneDeep(client);
|
2020-10-02 13:56:46 +00:00
|
|
|
delete clientCopy.id;
|
|
|
|
|
|
|
|
if (clientCopy.protocolMappers) {
|
|
|
|
for (let i = 0; i < clientCopy.protocolMappers.length; i++) {
|
|
|
|
delete clientCopy.protocolMappers[i].id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FileSaver.saveAs(
|
2021-10-08 18:21:09 +00:00
|
|
|
new Blob([prettyPrintJSON(clientCopy)], {
|
2020-10-02 13:56:46 +00:00
|
|
|
type: "application/json",
|
|
|
|
}),
|
|
|
|
clientCopy.clientId + ".json"
|
|
|
|
);
|
|
|
|
};
|
2020-10-20 20:47:23 +00:00
|
|
|
|
2021-09-14 15:48:48 +00:00
|
|
|
export const toUpperCase = <T extends string>(name: T) =>
|
|
|
|
(name.charAt(0).toUpperCase() + name.slice(1)) as Capitalize<T>;
|
2021-01-13 19:59:45 +00:00
|
|
|
|
2021-12-08 15:08:42 +00:00
|
|
|
const isAttributesObject = (value: any) => {
|
|
|
|
return (
|
|
|
|
Object.values(value).filter(
|
|
|
|
(value) => Array.isArray(value) && value.length === 1
|
|
|
|
).length !== 0
|
|
|
|
);
|
2021-11-08 09:46:03 +00:00
|
|
|
};
|
|
|
|
|
2021-12-08 15:08:42 +00:00
|
|
|
const isAttributeArray = (value: any) => {
|
|
|
|
if (!Array.isArray(value)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return value.filter((e) => e.key && e.value).length !== 0;
|
2020-10-20 20:47:23 +00:00
|
|
|
};
|
|
|
|
|
2021-12-08 15:08:42 +00:00
|
|
|
const isEmpty = (obj: any) => Object.keys(obj).length === 0;
|
2021-08-09 19:28:24 +00:00
|
|
|
|
2021-12-08 15:08:42 +00:00
|
|
|
export const convertToFormValues = (
|
2021-08-09 19:28:24 +00:00
|
|
|
obj: any,
|
2021-12-08 15:08:42 +00:00
|
|
|
setValue: (name: string, value: any) => void,
|
|
|
|
multiline?: string[]
|
2021-08-09 19:28:24 +00:00
|
|
|
) => {
|
2021-12-08 15:08:42 +00:00
|
|
|
Object.entries(obj).map(([key, value]) => {
|
|
|
|
if (key === "attributes" && isAttributesObject(value)) {
|
|
|
|
setValue(key, attributesToArray(value as Record<string, string[]>));
|
|
|
|
} else if (key === "config" || key === "attributes") {
|
|
|
|
setValue(key, !isEmpty(value) ? unflatten(value) : undefined);
|
|
|
|
} else if (multiline?.includes(key)) {
|
|
|
|
setValue(key, convertToMultiline(value as string[]));
|
|
|
|
} else {
|
|
|
|
setValue(key, value);
|
|
|
|
}
|
2020-10-20 20:47:23 +00:00
|
|
|
});
|
2022-02-21 15:43:23 +00:00
|
|
|
multiline?.map((line) => {
|
|
|
|
if (!Object.keys(obj).includes(line)) {
|
|
|
|
setValue(line, convertToMultiline([""]));
|
|
|
|
}
|
|
|
|
});
|
2020-10-20 20:47:23 +00:00
|
|
|
};
|
2020-12-07 18:37:36 +00:00
|
|
|
|
2022-02-21 15:43:23 +00:00
|
|
|
export function convertFormValuesToObject<T, G = T>(
|
2021-12-08 15:08:42 +00:00
|
|
|
obj: T,
|
|
|
|
multiline: string[] | undefined = []
|
2022-02-21 15:43:23 +00:00
|
|
|
): G {
|
2021-12-08 15:08:42 +00:00
|
|
|
const result: any = {};
|
|
|
|
Object.entries(obj).map(([key, value]) => {
|
|
|
|
if (isAttributeArray(value)) {
|
|
|
|
result[key] = arrayToAttributes(value as KeyValueType[]);
|
|
|
|
} else if (multiline.includes(key)) {
|
|
|
|
result[key] = toValue(value);
|
|
|
|
} else if (key === "config" || key === "attributes") {
|
|
|
|
result[key] = flatten(value as Record<string, any>, { safe: true });
|
|
|
|
} else {
|
|
|
|
result[key] = value;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-07-05 11:24:10 +00:00
|
|
|
export const emptyFormatter =
|
|
|
|
(): IFormatter => (data?: IFormatterValueType) => {
|
|
|
|
return data ? data : "—";
|
|
|
|
};
|
2021-01-13 19:59:45 +00:00
|
|
|
|
2021-07-05 11:24:10 +00:00
|
|
|
export const upperCaseFormatter =
|
|
|
|
(): IFormatter => (data?: IFormatterValueType) => {
|
|
|
|
const value = data?.toString();
|
2021-01-20 21:10:25 +00:00
|
|
|
|
2021-07-05 11:24:10 +00:00
|
|
|
return (value ? toUpperCase(value) : undefined) as string;
|
|
|
|
};
|
2021-01-20 21:10:25 +00:00
|
|
|
|
2021-01-13 19:59:45 +00:00
|
|
|
export const getBaseUrl = (adminClient: KeycloakAdminClient) => {
|
2021-05-19 07:56:59 +00:00
|
|
|
return (
|
|
|
|
(adminClient.keycloak
|
|
|
|
? adminClient.keycloak.authServerUrl!
|
|
|
|
: adminClient.baseUrl) + "/"
|
|
|
|
);
|
2021-01-13 19:59:45 +00:00
|
|
|
};
|
2021-05-03 20:00:12 +00:00
|
|
|
|
2022-01-17 19:26:42 +00:00
|
|
|
export const alphaRegexPattern = /[^A-Za-z]/g;
|
|
|
|
|
2021-07-05 11:24:10 +00:00
|
|
|
export const emailRegexPattern =
|
|
|
|
/^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
|
2021-08-09 19:28:24 +00:00
|
|
|
|
2021-08-20 16:15:12 +00:00
|
|
|
export const KEY_PROVIDER_TYPE = "org.keycloak.keys.KeyProvider";
|
2021-10-08 18:21:09 +00:00
|
|
|
|
|
|
|
export const prettyPrintJSON = (value: any) => JSON.stringify(value, null, 2);
|