253 lines
15 KiB
TypeScript
253 lines
15 KiB
TypeScript
import { CryptoApi, FlowDesignationEnum, FlowsApi, SAMLProvider, ProvidersApi, PropertymappingsApi, SAMLProviderSpBindingEnum, SAMLProviderDigestAlgorithmEnum, SAMLProviderSignatureAlgorithmEnum } from "authentik-api";
|
|
import { t } from "@lingui/macro";
|
|
import { customElement } from "lit-element";
|
|
import { html, TemplateResult } from "lit-html";
|
|
import { DEFAULT_CONFIG } from "../../../api/Config";
|
|
import { ModelForm } from "../../../elements/forms/ModelForm";
|
|
import { until } from "lit-html/directives/until";
|
|
import { ifDefined } from "lit-html/directives/if-defined";
|
|
import "../../../elements/forms/HorizontalFormElement";
|
|
import "../../../elements/forms/FormGroup";
|
|
|
|
@customElement("ak-provider-saml-form")
|
|
export class SAMLProviderFormPage extends ModelForm<SAMLProvider, number> {
|
|
|
|
loadInstance(pk: number): Promise<SAMLProvider> {
|
|
console.log("reading saml provider");
|
|
return new ProvidersApi(DEFAULT_CONFIG).providersSamlRead({
|
|
id: pk,
|
|
});
|
|
}
|
|
|
|
getSuccessMessage(): string {
|
|
if (this.instance) {
|
|
return t`Successfully updated provider.`;
|
|
} else {
|
|
return t`Successfully created provider.`;
|
|
}
|
|
}
|
|
|
|
send = (data: SAMLProvider): Promise<SAMLProvider> => {
|
|
if (this.instance) {
|
|
return new ProvidersApi(DEFAULT_CONFIG).providersSamlUpdate({
|
|
id: this.instance.pk || 0,
|
|
data: data
|
|
});
|
|
} else {
|
|
return new ProvidersApi(DEFAULT_CONFIG).providersSamlCreate({
|
|
data: data
|
|
});
|
|
}
|
|
};
|
|
|
|
renderForm(): TemplateResult {
|
|
return html`<form class="pf-c-form pf-m-horizontal">
|
|
<ak-form-element-horizontal
|
|
label=${t`Name`}
|
|
?required=${true}
|
|
name="name">
|
|
<input type="text" value="${ifDefined(this.instance?.name)}" class="pf-c-form-control" required>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${t`Authorization flow`}
|
|
?required=${true}
|
|
name="authorizationFlow">
|
|
<select class="pf-c-form-control">
|
|
${until(new FlowsApi(DEFAULT_CONFIG).flowsInstancesList({
|
|
ordering: "pk",
|
|
designation: FlowDesignationEnum.Authorization,
|
|
}).then(flows => {
|
|
return flows.results.map(flow => {
|
|
return html`<option value=${ifDefined(flow.pk)} ?selected=${this.instance?.authorizationFlow === flow.pk}>${flow.name} (${flow.slug})</option>`;
|
|
});
|
|
}), html`<option>${t`Loading...`}</option>`)}
|
|
</select>
|
|
<p class="pf-c-form__helper-text">${t`Flow used when authorizing this provider.`}</p>
|
|
</ak-form-element-horizontal>
|
|
|
|
<ak-form-group .expanded=${true}>
|
|
<span slot="header">
|
|
${t`Protocol settings`}
|
|
</span>
|
|
<div slot="body" class="pf-c-form">
|
|
<ak-form-element-horizontal
|
|
label=${t`ACS URL`}
|
|
?required=${true}
|
|
name="acsUrl">
|
|
<input type="text" value="${ifDefined(this.instance?.acsUrl)}" class="pf-c-form-control" required>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${t`Issuer`}
|
|
?required=${true}
|
|
name="issuer">
|
|
<input type="text" value="${this.instance?.issuer || "authentik"}" class="pf-c-form-control" required>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${t`Service Provider Binding`}
|
|
?required=${true}
|
|
name="spBinding">
|
|
<select class="pf-c-form-control">
|
|
<option value=${SAMLProviderSpBindingEnum.Redirect} ?selected=${this.instance?.spBinding === SAMLProviderSpBindingEnum.Redirect}>
|
|
${t`Redirect`}
|
|
</option>
|
|
<option value=${SAMLProviderSpBindingEnum.Post} ?selected=${this.instance?.spBinding === SAMLProviderSpBindingEnum.Post}>
|
|
${t`Post`}
|
|
</option>
|
|
</select>
|
|
<p class="pf-c-form__helper-text">${t`Determines how authentik sends the response back to the Service Provider.`}</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${t`Audience`}
|
|
name="audience">
|
|
<input type="text" value="${ifDefined(this.instance?.audience)}" class="pf-c-form-control">
|
|
</ak-form-element-horizontal>
|
|
</div>
|
|
</ak-form-group>
|
|
|
|
<ak-form-group>
|
|
<span slot="header">
|
|
${t`Advanced protocol settings`}
|
|
</span>
|
|
<div slot="body" class="pf-c-form">
|
|
<ak-form-element-horizontal
|
|
label=${t`Signing Certificate`}
|
|
name="signingKp">
|
|
<select class="pf-c-form-control">
|
|
<option value="" ?selected=${this.instance?.signingKp === undefined}>---------</option>
|
|
${until(new CryptoApi(DEFAULT_CONFIG).cryptoCertificatekeypairsList({
|
|
ordering: "pk",
|
|
hasKey: "true",
|
|
}).then(keys => {
|
|
return keys.results.map(key => {
|
|
return html`<option value=${ifDefined(key.pk)} ?selected=${this.instance?.signingKp === key.pk}>${key.name}</option>`;
|
|
});
|
|
}), html`<option>${t`Loading...`}</option>`)}
|
|
</select>
|
|
<p class="pf-c-form__helper-text">${t`Certificate used to sign outgoing Responses going to the Service Provider.`}</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${t`Verification Certificate`}
|
|
name="verificationKp">
|
|
<select class="pf-c-form-control">
|
|
<option value="" ?selected=${this.instance?.verificationKp === undefined}>---------</option>
|
|
${until(new CryptoApi(DEFAULT_CONFIG).cryptoCertificatekeypairsList({
|
|
ordering: "pk",
|
|
}).then(keys => {
|
|
return keys.results.map(key => {
|
|
return html`<option value=${ifDefined(key.pk)} ?selected=${this.instance?.verificationKp === key.pk}>${key.name}</option>`;
|
|
});
|
|
}), html`<option>${t`Loading...`}</option>`)}
|
|
</select>
|
|
<p class="pf-c-form__helper-text">${t`When selected, incoming assertion's Signatures will be validated against this certificate. To allow unsigned Requests, leave on default.`}</p>
|
|
</ak-form-element-horizontal>
|
|
|
|
<ak-form-element-horizontal
|
|
label=${t`Property mappings`}
|
|
?required=${true}
|
|
name="propertyMappings">
|
|
<select class="pf-c-form-control" multiple>
|
|
${until(new PropertymappingsApi(DEFAULT_CONFIG).propertymappingsSamlList({
|
|
ordering: "saml_name"
|
|
}).then(mappings => {
|
|
return mappings.results.map(mapping => {
|
|
let selected = false;
|
|
if (!this.instance?.propertyMappings) {
|
|
selected = mapping.managed?.startsWith("goauthentik.io/providers/saml") || false;
|
|
} else {
|
|
selected = Array.from(this.instance?.propertyMappings).some(su => {
|
|
return su == mapping.pk;
|
|
});
|
|
}
|
|
return html`<option value=${ifDefined(mapping.pk)} ?selected=${selected}>${mapping.name}</option>`;
|
|
});
|
|
}), html`<option>${t`Loading...`}</option>`)}
|
|
</select>
|
|
<p class="pf-c-form__helper-text">${t`Hold control/command to select multiple items.`}</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${t`NameID Property Mapping`}
|
|
name="nameIdMapping">
|
|
<select class="pf-c-form-control">
|
|
<option value="" ?selected=${this.instance?.nameIdMapping === undefined}>---------</option>
|
|
${until(new PropertymappingsApi(DEFAULT_CONFIG).propertymappingsSamlList({
|
|
ordering: "saml_name"
|
|
}).then(mappings => {
|
|
return mappings.results.map(mapping => {
|
|
return html`<option value=${ifDefined(mapping.pk)} ?selected=${this.instance?.nameIdMapping === mapping.pk}>${mapping.name}</option>`;
|
|
});
|
|
}), html`<option>${t`Loading...`}</option>`)}
|
|
</select>
|
|
<p class="pf-c-form__helper-text">${t`Configure how the NameID value will be created. When left empty, the NameIDPolicy of the incoming request will be respected.`}</p>
|
|
</ak-form-element-horizontal>
|
|
|
|
<ak-form-element-horizontal
|
|
label=${t`Assertion valid not before`}
|
|
?required=${true}
|
|
name="assertionValidNotBefore">
|
|
<input type="text" value="${this.instance?.assertionValidNotBefore || "minutes=-5"}" class="pf-c-form-control" required>
|
|
<p class="pf-c-form__helper-text">${t`Configure the maximum allowed time drift for an asseration.`}</p>
|
|
<p class="pf-c-form__helper-text">${t`(Format: hours=-1;minutes=-2;seconds=-3).`}</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${t`Assertion valid not on or after`}
|
|
?required=${true}
|
|
name="assertionValidNotOnOrAfter">
|
|
<input type="text" value="${this.instance?.assertionValidNotOnOrAfter || "minutes=5"}" class="pf-c-form-control" required>
|
|
<p class="pf-c-form__helper-text">${t`Assertion not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3).`}</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${t`Session valid not on or after`}
|
|
?required=${true}
|
|
name="sessionValidNotOnOrAfter">
|
|
<input type="text" value="${this.instance?.sessionValidNotOnOrAfter || "minutes=86400"}" class="pf-c-form-control" required>
|
|
<p class="pf-c-form__helper-text">${t`Session not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3).`}</p>
|
|
</ak-form-element-horizontal>
|
|
|
|
<ak-form-element-horizontal
|
|
label=${t`Digest algorithm`}
|
|
?required=${true}
|
|
name="digestAlgorithm">
|
|
<select class="pf-c-form-control">
|
|
<option value=${SAMLProviderDigestAlgorithmEnum._200009Xmldsigsha1} ?selected=${this.instance?.digestAlgorithm === SAMLProviderDigestAlgorithmEnum._200009Xmldsigsha1}>
|
|
${t`SHA1`}
|
|
</option>
|
|
<option value=${SAMLProviderDigestAlgorithmEnum._200104Xmlencsha256} ?selected=${this.instance?.digestAlgorithm === SAMLProviderDigestAlgorithmEnum._200104Xmlencsha256 || this.instance?.digestAlgorithm === undefined}>
|
|
${t`SHA256`}
|
|
</option>
|
|
<option value=${SAMLProviderDigestAlgorithmEnum._200104XmldsigMoresha384} ?selected=${this.instance?.digestAlgorithm === SAMLProviderDigestAlgorithmEnum._200104XmldsigMoresha384}>
|
|
${t`SHA384`}
|
|
</option>
|
|
<option value=${SAMLProviderDigestAlgorithmEnum._200104Xmlencsha512} ?selected=${this.instance?.digestAlgorithm === SAMLProviderDigestAlgorithmEnum._200104Xmlencsha512}>
|
|
${t`SHA512`}
|
|
</option>
|
|
</select>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${t`Signature algorithm`}
|
|
?required=${true}
|
|
name="signatureAlgorithm">
|
|
<select class="pf-c-form-control">
|
|
<option value=${SAMLProviderSignatureAlgorithmEnum._200009XmldsigrsaSha1} ?selected=${this.instance?.signatureAlgorithm === SAMLProviderSignatureAlgorithmEnum._200009XmldsigrsaSha1}>
|
|
${t`RSA-SHA1`}
|
|
</option>
|
|
<option value=${SAMLProviderSignatureAlgorithmEnum._200104XmldsigMorersaSha256} ?selected=${this.instance?.signatureAlgorithm === SAMLProviderSignatureAlgorithmEnum._200104XmldsigMorersaSha256 || this.instance?.signatureAlgorithm === undefined}>
|
|
${t`RSA-SHA256`}
|
|
</option>
|
|
<option value=${SAMLProviderSignatureAlgorithmEnum._200104XmldsigMorersaSha384} ?selected=${this.instance?.signatureAlgorithm === SAMLProviderSignatureAlgorithmEnum._200104XmldsigMorersaSha384}>
|
|
${t`RSA-SHA384`}
|
|
</option>
|
|
<option value=${SAMLProviderSignatureAlgorithmEnum._200104XmldsigMorersaSha512} ?selected=${this.instance?.signatureAlgorithm === SAMLProviderSignatureAlgorithmEnum._200104XmldsigMorersaSha512}>
|
|
${t`RSA-SHA512`}
|
|
</option>
|
|
<option value=${SAMLProviderSignatureAlgorithmEnum._200009XmldsigdsaSha1} ?selected=${this.instance?.signatureAlgorithm === SAMLProviderSignatureAlgorithmEnum._200009XmldsigdsaSha1}>
|
|
${t`DSA-SHA1`}
|
|
</option>
|
|
</select>
|
|
</ak-form-element-horizontal>
|
|
</div>
|
|
</ak-form-group>
|
|
</form>`;
|
|
}
|
|
|
|
}
|