ddbd8153e2
* start migrating to switch Signed-off-by: Jens Langhammer <jens@goauthentik.io> * general cleanup Signed-off-by: Jens Langhammer <jens@goauthentik.io> * remove broken Create provider Signed-off-by: Jens Langhammer <jens@goauthentik.io> * migrate all Signed-off-by: Jens Langhammer <jens@goauthentik.io> * migrate table selectors, fix dark theme Signed-off-by: Jens Langhammer <jens@goauthentik.io> Signed-off-by: Jens Langhammer <jens@goauthentik.io>
331 lines
13 KiB
TypeScript
331 lines
13 KiB
TypeScript
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
|
|
import { first, groupBy } from "@goauthentik/common/utils";
|
|
import "@goauthentik/elements/forms/HorizontalFormElement";
|
|
import { ModelForm } from "@goauthentik/elements/forms/ModelForm";
|
|
import "@goauthentik/elements/forms/SearchSelect";
|
|
|
|
import { t } from "@lingui/macro";
|
|
|
|
import { CSSResult, css } from "lit";
|
|
import { TemplateResult, html } from "lit";
|
|
import { customElement, property, state } from "lit/decorators.js";
|
|
import { ifDefined } from "lit/directives/if-defined.js";
|
|
|
|
import PFContent from "@patternfly/patternfly/components/Content/content.css";
|
|
import PFToggleGroup from "@patternfly/patternfly/components/ToggleGroup/toggle-group.css";
|
|
|
|
import {
|
|
CoreApi,
|
|
CoreGroupsListRequest,
|
|
CoreUsersListRequest,
|
|
Group,
|
|
PoliciesAllListRequest,
|
|
PoliciesApi,
|
|
Policy,
|
|
PolicyBinding,
|
|
User,
|
|
} from "@goauthentik/api";
|
|
|
|
enum target {
|
|
policy,
|
|
group,
|
|
user,
|
|
}
|
|
|
|
@customElement("ak-policy-binding-form")
|
|
export class PolicyBindingForm extends ModelForm<PolicyBinding, string> {
|
|
async loadInstance(pk: string): Promise<PolicyBinding> {
|
|
const binding = await new PoliciesApi(DEFAULT_CONFIG).policiesBindingsRetrieve({
|
|
policyBindingUuid: pk,
|
|
});
|
|
if (binding?.policyObj) {
|
|
this.policyGroupUser = target.policy;
|
|
}
|
|
if (binding?.groupObj) {
|
|
this.policyGroupUser = target.group;
|
|
}
|
|
if (binding?.userObj) {
|
|
this.policyGroupUser = target.user;
|
|
}
|
|
this.defaultOrder = await this.getOrder();
|
|
return binding;
|
|
}
|
|
|
|
@property()
|
|
targetPk?: string;
|
|
|
|
@property({ type: Number })
|
|
policyGroupUser: target = target.policy;
|
|
|
|
@property({ type: Boolean })
|
|
policyOnly = false;
|
|
|
|
@state()
|
|
defaultOrder = 0;
|
|
|
|
getSuccessMessage(): string {
|
|
if (this.instance?.pk) {
|
|
return t`Successfully updated binding.`;
|
|
} else {
|
|
return t`Successfully created binding.`;
|
|
}
|
|
}
|
|
|
|
static get styles(): CSSResult[] {
|
|
return super.styles.concat(
|
|
PFToggleGroup,
|
|
PFContent,
|
|
css`
|
|
.pf-c-toggle-group {
|
|
justify-content: center;
|
|
}
|
|
`,
|
|
);
|
|
}
|
|
|
|
send = (data: PolicyBinding): Promise<PolicyBinding> => {
|
|
if (this.instance?.pk) {
|
|
return new PoliciesApi(DEFAULT_CONFIG).policiesBindingsUpdate({
|
|
policyBindingUuid: this.instance.pk,
|
|
policyBindingRequest: data,
|
|
});
|
|
} else {
|
|
return new PoliciesApi(DEFAULT_CONFIG).policiesBindingsCreate({
|
|
policyBindingRequest: data,
|
|
});
|
|
}
|
|
};
|
|
|
|
async getOrder(): Promise<number> {
|
|
if (this.instance?.pk) {
|
|
return this.instance.order;
|
|
}
|
|
const bindings = await new PoliciesApi(DEFAULT_CONFIG).policiesBindingsList({
|
|
target: this.targetPk || "",
|
|
});
|
|
const orders = bindings.results.map((binding) => binding.order);
|
|
if (orders.length < 1) {
|
|
return 0;
|
|
}
|
|
return Math.max(...orders) + 1;
|
|
}
|
|
|
|
renderModeSelector(): TemplateResult {
|
|
return html` <div class="pf-c-toggle-group__item">
|
|
<button
|
|
class="pf-c-toggle-group__button ${this.policyGroupUser === target.policy
|
|
? "pf-m-selected"
|
|
: ""}"
|
|
type="button"
|
|
@click=${() => {
|
|
this.policyGroupUser = target.policy;
|
|
}}
|
|
>
|
|
<span class="pf-c-toggle-group__text">${t`Policy`}</span>
|
|
</button>
|
|
</div>
|
|
<div class="pf-c-divider pf-m-vertical" role="separator"></div>
|
|
<div class="pf-c-toggle-group__item">
|
|
<button
|
|
class="pf-c-toggle-group__button ${this.policyGroupUser === target.group
|
|
? "pf-m-selected"
|
|
: ""}"
|
|
type="button"
|
|
@click=${() => {
|
|
this.policyGroupUser = target.group;
|
|
}}
|
|
>
|
|
<span class="pf-c-toggle-group__text">${t`Group`}</span>
|
|
</button>
|
|
</div>
|
|
<div class="pf-c-divider pf-m-vertical" role="separator"></div>
|
|
<div class="pf-c-toggle-group__item">
|
|
<button
|
|
class="pf-c-toggle-group__button ${this.policyGroupUser === target.user
|
|
? "pf-m-selected"
|
|
: ""}"
|
|
type="button"
|
|
@click=${() => {
|
|
this.policyGroupUser = target.user;
|
|
}}
|
|
>
|
|
<span class="pf-c-toggle-group__text">${t`User`}</span>
|
|
</button>
|
|
</div>`;
|
|
}
|
|
|
|
renderForm(): TemplateResult {
|
|
return html`<form class="pf-c-form pf-m-horizontal">
|
|
<div class="pf-c-card pf-m-selectable pf-m-selected">
|
|
<div class="pf-c-card__body">
|
|
<div class="pf-c-toggle-group">${this.renderModeSelector()}</div>
|
|
</div>
|
|
<div class="pf-c-card__footer">
|
|
<ak-form-element-horizontal
|
|
label=${t`Policy`}
|
|
name="policy"
|
|
?hidden=${this.policyGroupUser !== target.policy}
|
|
>
|
|
<ak-search-select
|
|
.groupBy=${(items: Policy[]) => {
|
|
return groupBy(items, (policy) => policy.verboseNamePlural);
|
|
}}
|
|
.fetchObjects=${async (query?: string): Promise<Policy[]> => {
|
|
const args: PoliciesAllListRequest = {
|
|
ordering: "name",
|
|
};
|
|
if (query !== undefined) {
|
|
args.search = query;
|
|
}
|
|
const policies = await new PoliciesApi(
|
|
DEFAULT_CONFIG,
|
|
).policiesAllList(args);
|
|
return policies.results;
|
|
}}
|
|
.renderElement=${(policy: Policy): string => {
|
|
return policy.name;
|
|
}}
|
|
.value=${(policy: Policy | undefined): string | undefined => {
|
|
return policy?.pk;
|
|
}}
|
|
.selected=${(policy: Policy): boolean => {
|
|
return policy.pk === this.instance?.policy;
|
|
}}
|
|
?blankable=${true}
|
|
>
|
|
</ak-search-select>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${t`Group`}
|
|
name="group"
|
|
?hidden=${this.policyGroupUser !== target.group}
|
|
>
|
|
<ak-search-select
|
|
.fetchObjects=${async (query?: string): Promise<Group[]> => {
|
|
const args: CoreGroupsListRequest = {
|
|
ordering: "name",
|
|
};
|
|
if (query !== undefined) {
|
|
args.search = query;
|
|
}
|
|
const groups = await new CoreApi(DEFAULT_CONFIG).coreGroupsList(
|
|
args,
|
|
);
|
|
return groups.results;
|
|
}}
|
|
.renderElement=${(group: Group): string => {
|
|
return group.name;
|
|
}}
|
|
.value=${(group: Group | undefined): string | undefined => {
|
|
return group?.pk;
|
|
}}
|
|
.selected=${(group: Group): boolean => {
|
|
return group.pk === this.instance?.group;
|
|
}}
|
|
?blankable=${true}
|
|
>
|
|
</ak-search-select>
|
|
${this.policyOnly
|
|
? html`<p class="pf-c-form__helper-text">
|
|
${t`Group mappings can only be checked if a user is already logged in when trying to access this source.`}
|
|
</p>`
|
|
: html``}
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${t`User`}
|
|
name="user"
|
|
?hidden=${this.policyGroupUser !== target.user}
|
|
>
|
|
<ak-search-select
|
|
.fetchObjects=${async (query?: string): Promise<User[]> => {
|
|
const args: CoreUsersListRequest = {
|
|
ordering: "username",
|
|
};
|
|
if (query !== undefined) {
|
|
args.search = query;
|
|
}
|
|
const users = await new CoreApi(DEFAULT_CONFIG).coreUsersList(args);
|
|
return users.results;
|
|
}}
|
|
.renderElement=${(user: User): string => {
|
|
return user.username;
|
|
}}
|
|
.renderDescription=${(user: User): TemplateResult => {
|
|
return html`${user.name}`;
|
|
}}
|
|
.value=${(user: User | undefined): number | undefined => {
|
|
return user?.pk;
|
|
}}
|
|
.selected=${(user: User): boolean => {
|
|
return user.pk === this.instance?.user;
|
|
}}
|
|
?blankable=${true}
|
|
>
|
|
</ak-search-select>
|
|
${this.policyOnly
|
|
? html`<p class="pf-c-form__helper-text">
|
|
${t`User mappings can only be checked if a user is already logged in when trying to access this source.`}
|
|
</p>`
|
|
: html``}
|
|
</ak-form-element-horizontal>
|
|
</div>
|
|
</div>
|
|
<input
|
|
required
|
|
name="target"
|
|
type="hidden"
|
|
value=${ifDefined(this.instance?.target || this.targetPk)}
|
|
/>
|
|
<ak-form-element-horizontal name="enabled">
|
|
<label class="pf-c-switch">
|
|
<input
|
|
class="pf-c-switch__input"
|
|
type="checkbox"
|
|
?checked=${first(this.instance?.enabled, true)}
|
|
/>
|
|
<span class="pf-c-switch__toggle">
|
|
<span class="pf-c-switch__toggle-icon">
|
|
<i class="fas fa-check" aria-hidden="true"></i>
|
|
</span>
|
|
</span>
|
|
<span class="pf-c-switch__label">${t`Enabled`}</span>
|
|
</label>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal name="negate">
|
|
<label class="pf-c-switch">
|
|
<input
|
|
class="pf-c-switch__input"
|
|
type="checkbox"
|
|
?checked=${first(this.instance?.negate, false)}
|
|
/>
|
|
<span class="pf-c-switch__toggle">
|
|
<span class="pf-c-switch__toggle-icon">
|
|
<i class="fas fa-check" aria-hidden="true"></i>
|
|
</span>
|
|
</span>
|
|
<span class="pf-c-switch__label">${t`Negate result`}</span>
|
|
</label>
|
|
<p class="pf-c-form__helper-text">
|
|
${t`Negates the outcome of the binding. Messages are unaffected.`}
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal label=${t`Order`} ?required=${true} name="order">
|
|
<input
|
|
type="number"
|
|
value="${first(this.instance?.order, this.defaultOrder)}"
|
|
class="pf-c-form-control"
|
|
required
|
|
/>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal label=${t`Timeout`} ?required=${true} name="timeout">
|
|
<input
|
|
type="number"
|
|
value="${first(this.instance?.timeout, 30)}"
|
|
class="pf-c-form-control"
|
|
required
|
|
/>
|
|
</ak-form-element-horizontal>
|
|
</form>`;
|
|
}
|
|
}
|