mirror of
https://github.com/goauthentik/authentik
synced 2026-04-25 17:15:26 +02:00
* first pass
* dependency shenanigans
* move blueprints
* few broken links
* change config the throw errors
* internal file edits
* fighting links
* remove sidebarDev
* fix subdomain
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* fix relative URL
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* fix mismatched package versions
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* fix api reference build
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* test tweak
* links hell
* more links hell
* links hell2
* yep last of the links
* last broken link fixed
* re-add cves
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* add devdocs redirects
* add dir
* tweak netlify.toml
* move latest 2 CVES into dir
* fix links to moved cves
* typoed title fix
* fix link
* remove banner
* remove committed api docs
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
* integrations: remove version dropdown
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
* Update Makefile
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
* change doc links in web as well
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
* fix some more docs paths
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
* fix more docs paths
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
* ci: require ci-web.build for merging
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
* Revert "ci: require ci-web.build for merging"
This reverts commit b99a4842a9.
* remove sluf for Application
* put slug back in
* minor fix to trigger deploy
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
Co-authored-by: Tana M Berry <tana@goauthentik.com>
Co-authored-by: Jens Langhammer <jens@goauthentik.io>
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
175 lines
7.2 KiB
TypeScript
175 lines
7.2 KiB
TypeScript
import { BasePropertyMappingForm } from "@goauthentik/admin/property-mappings/BasePropertyMappingForm";
|
|
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
|
|
import { docLink } from "@goauthentik/common/global";
|
|
import "@goauthentik/elements/CodeMirror";
|
|
import { CodeMirrorMode } from "@goauthentik/elements/CodeMirror";
|
|
import "@goauthentik/elements/forms/FormGroup";
|
|
import "@goauthentik/elements/forms/HorizontalFormElement";
|
|
import "@goauthentik/elements/forms/Radio";
|
|
import type { RadioOption } from "@goauthentik/elements/forms/Radio";
|
|
|
|
import { msg } from "@lit/localize";
|
|
import { TemplateResult, html } from "lit";
|
|
import { customElement } from "lit/decorators.js";
|
|
import { ifDefined } from "lit/directives/if-defined.js";
|
|
|
|
import { PropertymappingsApi, RACPropertyMapping } from "@goauthentik/api";
|
|
|
|
export const staticSettingOptions: RadioOption<string | undefined>[] = [
|
|
{
|
|
label: msg("Unconfigured"),
|
|
value: undefined,
|
|
default: true,
|
|
description: html`${msg("This option will not be changed by this mapping.")}`,
|
|
},
|
|
{
|
|
label: msg("Enabled"),
|
|
value: "true",
|
|
},
|
|
{
|
|
label: msg("Disabled"),
|
|
value: "false",
|
|
},
|
|
];
|
|
|
|
@customElement("ak-property-mapping-provider-rac-form")
|
|
export class PropertyMappingProviderRACForm extends BasePropertyMappingForm<RACPropertyMapping> {
|
|
loadInstance(pk: string): Promise<RACPropertyMapping> {
|
|
return new PropertymappingsApi(DEFAULT_CONFIG).propertymappingsProviderRacRetrieve({
|
|
pmUuid: pk,
|
|
});
|
|
}
|
|
|
|
async send(data: RACPropertyMapping): Promise<RACPropertyMapping> {
|
|
if (this.instance) {
|
|
return new PropertymappingsApi(DEFAULT_CONFIG).propertymappingsProviderRacUpdate({
|
|
pmUuid: this.instance.pk,
|
|
rACPropertyMappingRequest: data,
|
|
});
|
|
} else {
|
|
return new PropertymappingsApi(DEFAULT_CONFIG).propertymappingsProviderRacCreate({
|
|
rACPropertyMappingRequest: data,
|
|
});
|
|
}
|
|
}
|
|
|
|
renderForm(): TemplateResult {
|
|
return html`
|
|
<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-form-group .expanded=${true}>
|
|
<span slot="header"> ${msg("General settings")} </span>
|
|
<div slot="body" class="pf-c-form">
|
|
<ak-form-element-horizontal
|
|
label=${msg("Username")}
|
|
name="staticSettings.username"
|
|
>
|
|
<input
|
|
type="text"
|
|
value="${ifDefined(this.instance?.staticSettings.username)}"
|
|
class="pf-c-form-control"
|
|
required
|
|
/>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${msg("Password")}
|
|
name="staticSettings.password"
|
|
>
|
|
<input
|
|
type="password"
|
|
value="${ifDefined(this.instance?.staticSettings.password)}"
|
|
class="pf-c-form-control"
|
|
required
|
|
/>
|
|
</ak-form-element-horizontal>
|
|
</div>
|
|
</ak-form-group>
|
|
<ak-form-group>
|
|
<span slot="header"> ${msg("RDP settings")} </span>
|
|
<div slot="body" class="pf-c-form">
|
|
<ak-form-element-horizontal
|
|
label=${msg("Ignore server certificate")}
|
|
name="staticSettings.ignore-cert"
|
|
>
|
|
<ak-radio
|
|
.options=${staticSettingOptions}
|
|
.value=${this.instance?.staticSettings["ignore-cert"]}
|
|
>
|
|
</ak-radio>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${msg("Enable wallpaper")}
|
|
name="staticSettings.enable-wallpaper"
|
|
>
|
|
<ak-radio
|
|
.options=${staticSettingOptions}
|
|
.value=${this.instance?.staticSettings["enable-wallpaper"]}
|
|
>
|
|
</ak-radio>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${msg("Enable font-smoothing")}
|
|
name="staticSettings.enable-font-smoothing"
|
|
>
|
|
<ak-radio
|
|
.options=${staticSettingOptions}
|
|
.value=${this.instance?.staticSettings["enable-font-smoothing"]}
|
|
>
|
|
</ak-radio>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${msg("Enable full window dragging")}
|
|
name="staticSettings.enable-full-window-drag"
|
|
>
|
|
<ak-radio
|
|
.options=${staticSettingOptions}
|
|
.value=${this.instance?.staticSettings["enable-full-window-drag"]}
|
|
>
|
|
</ak-radio>
|
|
</ak-form-element-horizontal>
|
|
</div>
|
|
</ak-form-group>
|
|
<ak-form-group>
|
|
<span slot="header"> ${msg("Advanced settings")} </span>
|
|
<div slot="body" class="pf-c-form">
|
|
<ak-form-element-horizontal
|
|
label=${msg("Expression")}
|
|
required
|
|
name="expression"
|
|
>
|
|
<ak-codemirror
|
|
mode=${CodeMirrorMode.Python}
|
|
value="${ifDefined(this.instance?.expression)}"
|
|
>
|
|
</ak-codemirror>
|
|
<p class="pf-c-form__helper-text">
|
|
${msg("Expression using Python.")}
|
|
<a
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href="${docLink(
|
|
"/docs/add-secure-apps/providers/property-mappings/expression?utm_source=authentik",
|
|
)}"
|
|
>
|
|
${msg("See documentation for a list of all variables.")}
|
|
</a>
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
</div>
|
|
</ak-form-group>
|
|
`;
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
"ak-property-mapping-provider-rac-form": PropertyMappingProviderRACForm;
|
|
}
|
|
}
|