mirror of
https://github.com/goauthentik/authentik
synced 2026-04-26 09:35:07 +02:00
WIP; WIP 2 web: Flesh out fixtures, test IDs. web: Flesh out provider tests. web: Flesh out LDAP test. web: Fix typo. web: Allow base URL to be updated. web: Clean up. web: Tidy types. web: Update ARIA attributes for better test targeting. web: Clean up message labeling. web: Clean up ARIA labels. web: Flesh out table ARIA labels. web: Flesh out series. web: Fix linter. web: Clean up test reporting, timing issues. Add RADIUS test.
131 lines
5.4 KiB
TypeScript
131 lines
5.4 KiB
TypeScript
import "#components/ak-slug-input";
|
|
import "#elements/ak-dual-select/ak-dual-select-dynamic-selected-provider";
|
|
import "#elements/forms/FormGroup";
|
|
import "#elements/forms/HorizontalFormElement";
|
|
|
|
import { propertyMappingsProvider, propertyMappingsSelector } from "./SCIMSourceFormHelpers.js";
|
|
|
|
import { DEFAULT_CONFIG } from "#common/api/config";
|
|
|
|
import { placeholderHelperText } from "#admin/helperText";
|
|
import { BaseSourceForm } from "#admin/sources/BaseSourceForm";
|
|
|
|
import { SCIMSource, SCIMSourceRequest, SourcesApi } from "@goauthentik/api";
|
|
|
|
import { msg } from "@lit/localize";
|
|
import { html, TemplateResult } from "lit";
|
|
import { customElement } from "lit/decorators.js";
|
|
import { ifDefined } from "lit/directives/if-defined.js";
|
|
|
|
@customElement("ak-source-scim-form")
|
|
export class SCIMSourceForm extends BaseSourceForm<SCIMSource> {
|
|
async loadInstance(pk: string): Promise<SCIMSource> {
|
|
return new SourcesApi(DEFAULT_CONFIG)
|
|
.sourcesScimRetrieve({
|
|
slug: pk,
|
|
})
|
|
.then((source) => {
|
|
return source;
|
|
});
|
|
}
|
|
|
|
async send(data: SCIMSource): Promise<SCIMSource> {
|
|
if (this.instance?.slug) {
|
|
return new SourcesApi(DEFAULT_CONFIG).sourcesScimPartialUpdate({
|
|
slug: this.instance.slug,
|
|
patchedSCIMSourceRequest: data,
|
|
});
|
|
}
|
|
return new SourcesApi(DEFAULT_CONFIG).sourcesScimCreate({
|
|
sCIMSourceRequest: data as unknown as SCIMSourceRequest,
|
|
});
|
|
}
|
|
|
|
renderForm(): TemplateResult {
|
|
return html`<form class="pf-c-form pf-m-horizontal">
|
|
<ak-form-element-horizontal label=${msg("Name")} required name="name">
|
|
<input
|
|
type="text"
|
|
value="${ifDefined(this.instance?.name)}"
|
|
class="pf-c-form-control"
|
|
required
|
|
/>
|
|
</ak-form-element-horizontal>
|
|
|
|
<ak-slug-input
|
|
name="slug"
|
|
value=${ifDefined(this.instance?.slug)}
|
|
label=${msg("Slug")}
|
|
required
|
|
input-hint="code"
|
|
></ak-slug-input>
|
|
|
|
<ak-form-element-horizontal name="enabled">
|
|
<div class="pf-c-check">
|
|
<input
|
|
type="checkbox"
|
|
class="pf-c-check__input"
|
|
?checked=${this.instance?.enabled ?? true}
|
|
/>
|
|
<label class="pf-c-check__label"> ${msg("Enabled")} </label>
|
|
</div>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-group open label="${msg("SCIM Attribute mapping")}">
|
|
<div class="pf-c-form">
|
|
<ak-form-element-horizontal
|
|
label=${msg("User Property Mappings")}
|
|
name="userPropertyMappings"
|
|
>
|
|
<ak-dual-select-dynamic-selected
|
|
.provider=${propertyMappingsProvider}
|
|
.selector=${propertyMappingsSelector(
|
|
this.instance?.userPropertyMappings,
|
|
)}
|
|
available-label="${msg("Available User Property Mappings")}"
|
|
selected-label="${msg("Selected User Property Mappings")}"
|
|
></ak-dual-select-dynamic-selected>
|
|
<p class="pf-c-form__helper-text">
|
|
${msg("Property mappings for user creation.")}
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${msg("Group Property Mappings")}
|
|
name="groupPropertyMappings"
|
|
>
|
|
<ak-dual-select-dynamic-selected
|
|
.provider=${propertyMappingsProvider}
|
|
.selector=${propertyMappingsSelector(
|
|
this.instance?.groupPropertyMappings,
|
|
)}
|
|
available-label="${msg("Available Group Property Mappings")}"
|
|
selected-label="${msg("Selected Group Property Mappings")}"
|
|
></ak-dual-select-dynamic-selected>
|
|
<p class="pf-c-form__helper-text">
|
|
${msg("Property mappings for group creation.")}
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
</div>
|
|
</ak-form-group>
|
|
<ak-form-group label="${msg("Advanced protocol settings")}">
|
|
<div class="pf-c-form">
|
|
<ak-form-element-horizontal label=${msg("User path")} name="userPathTemplate">
|
|
<input
|
|
type="text"
|
|
value="${this.instance?.userPathTemplate ??
|
|
"goauthentik.io/sources/%(slug)s"}"
|
|
class="pf-c-form-control"
|
|
/>
|
|
<p class="pf-c-form__helper-text">${placeholderHelperText}</p>
|
|
</ak-form-element-horizontal>
|
|
</div>
|
|
</ak-form-group>
|
|
</form>`;
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
"ak-source-scim-form": SCIMSourceForm;
|
|
}
|
|
}
|