
When submitting some forms with the Enter key instead of clicking "Confirm"/etc, the form would not get submitted correctly This would in the worst case is when setting a user's password, where the new password can end up in the URL, but the password was not actually saved to the user. Signed-off-by: Jens Langhammer <jens@goauthentik.io> # Conflicts: # web/src/admin/applications/ApplicationCheckAccessForm.ts # web/src/admin/crypto/CertificateGenerateForm.ts # web/src/admin/flows/FlowImportForm.ts # web/src/admin/groups/RelatedGroupList.ts # web/src/admin/policies/PolicyTestForm.ts # web/src/admin/property-mappings/PropertyMappingTestForm.ts # web/src/admin/providers/saml/SAMLProviderImportForm.ts # web/src/admin/users/RelatedUserList.ts # web/src/admin/users/ServiceAccountForm.ts # web/src/admin/users/UserPasswordForm.ts # web/src/admin/users/UserResetEmailForm.ts
117 lines
5.0 KiB
TypeScript
117 lines
5.0 KiB
TypeScript
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
|
|
import { dateTimeLocal } from "@goauthentik/common/utils";
|
|
import { Form } from "@goauthentik/elements/forms/Form";
|
|
import "@goauthentik/elements/forms/HorizontalFormElement";
|
|
import { ModalForm } from "@goauthentik/elements/forms/ModalForm";
|
|
|
|
import { t } from "@lingui/macro";
|
|
|
|
import { TemplateResult, html } from "lit";
|
|
import { customElement, property } from "lit/decorators.js";
|
|
import { ifDefined } from "lit/directives/if-defined.js";
|
|
|
|
import { CoreApi, UserServiceAccountRequest, UserServiceAccountResponse } from "@goauthentik/api";
|
|
|
|
@customElement("ak-user-service-account")
|
|
export class ServiceAccountForm extends Form<UserServiceAccountRequest> {
|
|
@property({ attribute: false })
|
|
result?: UserServiceAccountResponse;
|
|
|
|
getSuccessMessage(): string {
|
|
return t`Successfully created user.`;
|
|
}
|
|
|
|
send = async (data: UserServiceAccountRequest): Promise<UserServiceAccountResponse> => {
|
|
const result = await new CoreApi(DEFAULT_CONFIG).coreUsersServiceAccountCreate({
|
|
userServiceAccountRequest: data,
|
|
});
|
|
this.result = result;
|
|
(this.parentElement as ModalForm).showSubmitButton = false;
|
|
return result;
|
|
};
|
|
|
|
resetForm(): void {
|
|
super.resetForm();
|
|
this.result = undefined;
|
|
}
|
|
|
|
renderInlineForm(): TemplateResult {
|
|
return html`<ak-form-element-horizontal label=${t`Username`} ?required=${true} name="name">
|
|
<input type="text" value="" class="pf-c-form-control" required />
|
|
<p class="pf-c-form__helper-text">
|
|
${t`User's primary identifier. 150 characters or fewer.`}
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal name="createGroup">
|
|
<label class="pf-c-switch">
|
|
<input class="pf-c-switch__input" type="checkbox" ?checked=${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`Create group`}</span>
|
|
</label>
|
|
<p class="pf-c-form__helper-text">
|
|
${t`Enabling this toggle will create a group named after the user, with the user as member.`}
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal name="expiring">
|
|
<label class="pf-c-switch">
|
|
<input class="pf-c-switch__input" type="checkbox" ?checked=${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`Expiring`}</span>
|
|
</label>
|
|
<p class="pf-c-form__helper-text">
|
|
${t`If this is selected, the token will expire. Upon expiration, the token will be rotated.`}
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal label=${t`Expires on`} name="expires">
|
|
<input
|
|
type="datetime-local"
|
|
data-type="datetime-local"
|
|
value="${dateTimeLocal(new Date(Date.now() + 1000 * 60 ** 2 * 24 * 360))}"
|
|
class="pf-c-form-control"
|
|
/>
|
|
</ak-form-element-horizontal>`;
|
|
}
|
|
|
|
renderResponseForm(): TemplateResult {
|
|
return html`<p>
|
|
${t`Use the username and password below to authenticate. The password can be retrieved later on the Tokens page.`}
|
|
</p>
|
|
<form class="pf-c-form pf-m-horizontal">
|
|
<ak-form-element-horizontal label=${t`Username`}>
|
|
<input
|
|
type="text"
|
|
readonly
|
|
value=${ifDefined(this.result?.username)}
|
|
class="pf-c-form-control"
|
|
/>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal label=${t`Password`}>
|
|
<input
|
|
type="text"
|
|
readonly
|
|
value=${ifDefined(this.result?.token)}
|
|
class="pf-c-form-control"
|
|
/>
|
|
<p class="pf-c-form__helper-text">
|
|
${t`Valid for 360 days, after which the password will automatically rotate. You can copy the password from the Token List.`}
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
</form>`;
|
|
}
|
|
|
|
renderForm(): TemplateResult {
|
|
if (this.result) {
|
|
return this.renderResponseForm();
|
|
}
|
|
return super.renderForm();
|
|
}
|
|
}
|