* \#\# Details
web: replace lingui with lit/localize
\#\# Changes
This rather massive shift replaces the lingui and `t()` syntax with lit-localize, XLIFF, and the `msg()`
syntax used by lit-localize. 90% of this work was mechanized; simple perl scripts found and replaced
all uses of `t()` with the appropriate corresponding syntax for `msg()` and `msg(str())`.
The XLIFF files were auto-generated from the PO files. They have not been audited, and they should be
checked over by professional translators. The actual _strings_ have not been changed, but as this was
a mechanized change there is always the possibility of mis-translation-- not by the translator, but by
the script.
* web: revise lit/localize: fix two installation issues.
* web: revise localization
TL;DR:
- Replaced all of Lingui's `t()` syntax with `msg()` syntax.
- Mechanically (i.e with a script) converted all of the PO files to XLIFF files
- Refactored the localization code to be a bit smarter:
- the function `getBestMatchLocale` takes the locale lists and a requested locale, and returns the
first match of:
- The locale's code exactly matches the requested locale
- The locale code exactly matches the prefix of the requested locale (i.e the "en" part of "en-US")
- the locale code's prefix exactly matches the prefix of the requested locale
This function is passed to lit-locate's `loadLocale()`.
- `activateLocale()` just calls `loadLocale()` now.
- `autodetectLanguage` searches the following, and picks the first that returns a valid locale
object, before passing it to `loadLocale()`:
- The User's settings
- A `?locale=` component found in `window.location.search`
- The `window.navigator.language` field
- English
The `msg()` only runs when it's run. This seems obvious, but it means that you cannot cache
strings at load time; they must be kept inside functions that are re-run so that the `msg()` engine
can look up the strings in the preferred language of the user at that moment.
You can use thunks-of-strings if you really need them that way.
* Including the 'xliff-converter' in case anyone wants to review it.
* The xliff-converter is tagged as 'xliff-converter', but has been
deleted.
\#\# Details
- Resolves #5171
\#\# Changes
\#\#\# New Features
- Adds a "Add an Application" to the LibraryView if there are no applications and the user is an administrator.
\#\#\# Breaking Changes
- Adds breaking change which causes \<issue\>.
\#\# Checklist
- [ ] Local tests pass (`ak test authentik/`)
- [ ] The code has been formatted (`make lint-fix`)
If an API change has been made
- [ ] The API schema has been updated (`make gen-build`)
If changes to the frontend have been made
- [ ] The code has been formatted (`make web`)
- [ ] The translation files have been updated (`make i18n-extract`)
If applicable
- [ ] The documentation has been updated
- [ ] The documentation has been formatted (`make website`)
* web: fix redundant locales for zh suite.
* web: prettier pass for locale update
* web: localization moderization
Changed the names of the lit-localize commands to make it clear they're
part of the localization effort, and not just "build" and "extract".
* update transifex config
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* fix package lock?
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* use build not compile
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* web: conversion to lit-localize
The CI produced a list of problems that I hadn't caught earlier,
due to a typo ("localize build" is correct, "localize compile" is
not) I had left in package.json. They were minor and linty, but
it was still wise to fix them.
* web: replace lingui with lit/locale
This commit fixes some minor linting issues that were hidden by a typo in package.json. The
issues were not apparently problematic from a Javascript point of view, but they pointed
to sloppy thinking in the progression of types through the system, so I cleaned them
up and formalized the types from LocaleModule to AkLocale.
* web: replace lingui with lit/localize
One problem that has repeatedly come up is that localize's templates do not produce
JavaScript that conforms with our shop style. I've replaced `build-locale` with
a two-step that builds the locale *and* ensures that it conforms to the shop style
via `prettier` every time.
* web: replace lingui with lit-locale
This commit applies the most recent bundle of translations to the
new lit-locale aspect component. It also revises the algorithm
for *finding* the correct locale, replacing the complex fall-back
with some rather straightforward regular expressions.
In the case of Chinese, the fallback comes at the end of the
selection list, which may not be, er, politically valuable
(since Taiwan and Hong Kong come before, being exceptions that
need to be tested). If we need a different order for presentation,
that'll be a future feature.
* web: replace lingui with lit/locale
Well, that was embarassing.
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Co-authored-by: Jens Langhammer <jens@goauthentik.io>
407 lines
19 KiB
TypeScript
407 lines
19 KiB
TypeScript
import { DesignationToLabel, LayoutToLabel } from "@goauthentik/admin/flows/utils";
|
|
import { AuthenticationEnum } from "@goauthentik/api/dist/models/AuthenticationEnum";
|
|
import { DEFAULT_CONFIG, config } from "@goauthentik/common/api/config";
|
|
import { first } from "@goauthentik/common/utils";
|
|
import { rootInterface } from "@goauthentik/elements/Base";
|
|
import "@goauthentik/elements/forms/FormGroup";
|
|
import "@goauthentik/elements/forms/HorizontalFormElement";
|
|
import { ModelForm } from "@goauthentik/elements/forms/ModelForm";
|
|
import "@goauthentik/elements/forms/Radio";
|
|
|
|
import { msg } from "@lit/localize";
|
|
import { TemplateResult, html } from "lit";
|
|
import { customElement, property } from "lit/decorators.js";
|
|
import { ifDefined } from "lit/directives/if-defined.js";
|
|
|
|
import {
|
|
CapabilitiesEnum,
|
|
DeniedActionEnum,
|
|
Flow,
|
|
FlowDesignationEnum,
|
|
FlowsApi,
|
|
LayoutEnum,
|
|
PolicyEngineMode,
|
|
} from "@goauthentik/api";
|
|
|
|
@customElement("ak-flow-form")
|
|
export class FlowForm extends ModelForm<Flow, string> {
|
|
async loadInstance(pk: string): Promise<Flow> {
|
|
const flow = await new FlowsApi(DEFAULT_CONFIG).flowsInstancesRetrieve({
|
|
slug: pk,
|
|
});
|
|
this.clearBackground = false;
|
|
return flow;
|
|
}
|
|
|
|
getSuccessMessage(): string {
|
|
if (this.instance) {
|
|
return msg("Successfully updated flow.");
|
|
} else {
|
|
return msg("Successfully created flow.");
|
|
}
|
|
}
|
|
|
|
@property({ type: Boolean })
|
|
clearBackground = false;
|
|
|
|
async send(data: Flow): Promise<void | Flow> {
|
|
let flow: Flow;
|
|
if (this.instance) {
|
|
flow = await new FlowsApi(DEFAULT_CONFIG).flowsInstancesUpdate({
|
|
slug: this.instance.slug,
|
|
flowRequest: data,
|
|
});
|
|
} else {
|
|
flow = await new FlowsApi(DEFAULT_CONFIG).flowsInstancesCreate({
|
|
flowRequest: data,
|
|
});
|
|
}
|
|
const c = await config();
|
|
if (c.capabilities.includes(CapabilitiesEnum.CanSaveMedia)) {
|
|
const icon = this.getFormFiles()["background"];
|
|
if (icon || this.clearBackground) {
|
|
await new FlowsApi(DEFAULT_CONFIG).flowsInstancesSetBackgroundCreate({
|
|
slug: flow.slug,
|
|
file: icon,
|
|
clear: this.clearBackground,
|
|
});
|
|
}
|
|
} else {
|
|
await new FlowsApi(DEFAULT_CONFIG).flowsInstancesSetBackgroundUrlCreate({
|
|
slug: flow.slug,
|
|
filePathRequest: {
|
|
url: data.background || "",
|
|
},
|
|
});
|
|
}
|
|
return flow;
|
|
}
|
|
|
|
renderForm(): TemplateResult {
|
|
return html`<form class="pf-c-form pf-m-horizontal">
|
|
<ak-form-element-horizontal label=${msg("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=${msg("Title")} ?required=${true} name="title">
|
|
<input
|
|
type="text"
|
|
value="${ifDefined(this.instance?.title)}"
|
|
class="pf-c-form-control"
|
|
required
|
|
/>
|
|
<p class="pf-c-form__helper-text">${msg("Shown as the Title in Flow pages.")}</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal label=${msg("Slug")} ?required=${true} name="slug">
|
|
<input
|
|
type="text"
|
|
value="${ifDefined(this.instance?.slug)}"
|
|
class="pf-c-form-control"
|
|
required
|
|
/>
|
|
<p class="pf-c-form__helper-text">${msg("Visible in the URL.")}</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${msg("Designation")}
|
|
?required=${true}
|
|
name="designation"
|
|
>
|
|
<select class="pf-c-form-control">
|
|
<option value="" ?selected=${this.instance?.designation === undefined}>
|
|
---------
|
|
</option>
|
|
<option
|
|
value=${FlowDesignationEnum.Authentication}
|
|
?selected=${this.instance?.designation ===
|
|
FlowDesignationEnum.Authentication}
|
|
>
|
|
${DesignationToLabel(FlowDesignationEnum.Authentication)}
|
|
</option>
|
|
<option
|
|
value=${FlowDesignationEnum.Authorization}
|
|
?selected=${this.instance?.designation ===
|
|
FlowDesignationEnum.Authorization}
|
|
>
|
|
${DesignationToLabel(FlowDesignationEnum.Authorization)}
|
|
</option>
|
|
<option
|
|
value=${FlowDesignationEnum.Enrollment}
|
|
?selected=${this.instance?.designation === FlowDesignationEnum.Enrollment}
|
|
>
|
|
${DesignationToLabel(FlowDesignationEnum.Enrollment)}
|
|
</option>
|
|
<option
|
|
value=${FlowDesignationEnum.Invalidation}
|
|
?selected=${this.instance?.designation === FlowDesignationEnum.Invalidation}
|
|
>
|
|
${DesignationToLabel(FlowDesignationEnum.Invalidation)}
|
|
</option>
|
|
<option
|
|
value=${FlowDesignationEnum.Recovery}
|
|
?selected=${this.instance?.designation === FlowDesignationEnum.Recovery}
|
|
>
|
|
${DesignationToLabel(FlowDesignationEnum.Recovery)}
|
|
</option>
|
|
<option
|
|
value=${FlowDesignationEnum.StageConfiguration}
|
|
?selected=${this.instance?.designation ===
|
|
FlowDesignationEnum.StageConfiguration}
|
|
>
|
|
${DesignationToLabel(FlowDesignationEnum.StageConfiguration)}
|
|
</option>
|
|
<option
|
|
value=${FlowDesignationEnum.Unenrollment}
|
|
?selected=${this.instance?.designation === FlowDesignationEnum.Unenrollment}
|
|
>
|
|
${DesignationToLabel(FlowDesignationEnum.Unenrollment)}
|
|
</option>
|
|
</select>
|
|
<p class="pf-c-form__helper-text">
|
|
${msg(
|
|
"Decides what this Flow is used for. For example, the Authentication flow is redirect to when an un-authenticated user visits authentik.",
|
|
)}
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${msg("Authentication")}
|
|
?required=${true}
|
|
name="authentication"
|
|
>
|
|
<select class="pf-c-form-control">
|
|
<option
|
|
value=${AuthenticationEnum.None}
|
|
?selected=${this.instance?.authentication === AuthenticationEnum.None}
|
|
>
|
|
${msg("No requirement")}
|
|
</option>
|
|
<option
|
|
value=${AuthenticationEnum.RequireAuthenticated}
|
|
?selected=${this.instance?.authentication ===
|
|
AuthenticationEnum.RequireAuthenticated}
|
|
>
|
|
${msg("Require authentication")}
|
|
</option>
|
|
<option
|
|
value=${AuthenticationEnum.RequireUnauthenticated}
|
|
?selected=${this.instance?.authentication ===
|
|
AuthenticationEnum.RequireUnauthenticated}
|
|
>
|
|
${msg("Require no authentication.")}
|
|
</option>
|
|
<option
|
|
value=${AuthenticationEnum.RequireSuperuser}
|
|
?selected=${this.instance?.authentication ===
|
|
AuthenticationEnum.RequireSuperuser}
|
|
>
|
|
${msg("Require superuser.")}
|
|
</option>
|
|
</select>
|
|
<p class="pf-c-form__helper-text">
|
|
${msg("Required authentication level for this flow.")}
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-group>
|
|
<span slot="header"> ${msg("Behavior settings")} </span>
|
|
<div slot="body" class="pf-c-form">
|
|
<ak-form-element-horizontal name="compatibilityMode">
|
|
<label class="pf-c-switch">
|
|
<input
|
|
class="pf-c-switch__input"
|
|
type="checkbox"
|
|
?checked=${first(this.instance?.compatibilityMode, 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">${msg("Compatibility mode")}</span>
|
|
</label>
|
|
<p class="pf-c-form__helper-text">
|
|
${msg(
|
|
"Increases compatibility with password managers and mobile devices.",
|
|
)}
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${msg("Denied action")}
|
|
?required=${true}
|
|
name="deniedAction"
|
|
>
|
|
<ak-radio
|
|
.options=${[
|
|
{
|
|
label: "MESSAGE_CONTINUE",
|
|
value: DeniedActionEnum.MessageContinue,
|
|
default: true,
|
|
description: html`${msg(
|
|
"Will follow the ?next parameter if set, otherwise show a message",
|
|
)}`,
|
|
},
|
|
{
|
|
label: "CONTINUE",
|
|
value: DeniedActionEnum.Continue,
|
|
description: html`${msg(
|
|
"Will either follow the ?next parameter or redirect to the default interface",
|
|
)}`,
|
|
},
|
|
{
|
|
label: "MESSAGE",
|
|
value: DeniedActionEnum.Message,
|
|
description: html`${msg(
|
|
"Will notify the user the flow isn't applicable",
|
|
)}`,
|
|
},
|
|
]}
|
|
.value=${this.instance?.deniedAction}
|
|
>
|
|
</ak-radio>
|
|
<p class="pf-c-form__helper-text">
|
|
${msg(
|
|
"Decides the response when a policy denies access to this flow for a user.",
|
|
)}
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${msg("Policy engine mode")}
|
|
?required=${true}
|
|
name="policyEngineMode"
|
|
>
|
|
<ak-radio
|
|
.options=${[
|
|
{
|
|
label: "any",
|
|
value: PolicyEngineMode.Any,
|
|
default: true,
|
|
description: html`${msg(
|
|
"Any policy must match to grant access",
|
|
)}`,
|
|
},
|
|
{
|
|
label: "all",
|
|
value: PolicyEngineMode.All,
|
|
description: html`${msg(
|
|
"All policies must match to grant access",
|
|
)}`,
|
|
},
|
|
]}
|
|
.value=${this.instance?.policyEngineMode}
|
|
>
|
|
</ak-radio>
|
|
</ak-form-element-horizontal>
|
|
</div>
|
|
</ak-form-group>
|
|
<ak-form-group>
|
|
<span slot="header"> ${msg("Appearance settings")} </span>
|
|
<div slot="body" class="pf-c-form">
|
|
<ak-form-element-horizontal
|
|
label=${msg("Layout")}
|
|
?required=${true}
|
|
name="layout"
|
|
>
|
|
<select class="pf-c-form-control">
|
|
<option
|
|
value=${LayoutEnum.Stacked}
|
|
?selected=${this.instance?.layout === LayoutEnum.Stacked}
|
|
>
|
|
${LayoutToLabel(LayoutEnum.Stacked)}
|
|
</option>
|
|
<option
|
|
value=${LayoutEnum.ContentLeft}
|
|
?selected=${this.instance?.layout === LayoutEnum.ContentLeft}
|
|
>
|
|
${LayoutToLabel(LayoutEnum.ContentLeft)}
|
|
</option>
|
|
<option
|
|
value=${LayoutEnum.ContentRight}
|
|
?selected=${this.instance?.layout === LayoutEnum.ContentRight}
|
|
>
|
|
${LayoutToLabel(LayoutEnum.ContentRight)}
|
|
</option>
|
|
<option
|
|
value=${LayoutEnum.SidebarLeft}
|
|
?selected=${this.instance?.layout === LayoutEnum.SidebarLeft}
|
|
>
|
|
${LayoutToLabel(LayoutEnum.SidebarLeft)}
|
|
</option>
|
|
<option
|
|
value=${LayoutEnum.SidebarRight}
|
|
?selected=${this.instance?.layout === LayoutEnum.SidebarRight}
|
|
>
|
|
${LayoutToLabel(LayoutEnum.SidebarRight)}
|
|
</option>
|
|
</select>
|
|
</ak-form-element-horizontal>
|
|
${rootInterface()?.config?.capabilities.includes(CapabilitiesEnum.CanSaveMedia)
|
|
? html`<ak-form-element-horizontal
|
|
label=${msg("Background")}
|
|
name="background"
|
|
>
|
|
<input type="file" value="" class="pf-c-form-control" />
|
|
${this.instance?.background
|
|
? html`
|
|
<p class="pf-c-form__helper-text">
|
|
${msg("Currently set to:")}
|
|
${this.instance?.background}
|
|
</p>
|
|
`
|
|
: html``}
|
|
|
|
<p class="pf-c-form__helper-text">
|
|
${msg("Background shown during execution.")}
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
${this.instance?.background
|
|
? html`
|
|
<ak-form-element-horizontal>
|
|
<label class="pf-c-switch">
|
|
<input
|
|
class="pf-c-switch__input"
|
|
type="checkbox"
|
|
@change=${(ev: Event) => {
|
|
const target =
|
|
ev.target as HTMLInputElement;
|
|
this.clearBackground = target.checked;
|
|
}}
|
|
/>
|
|
<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">
|
|
${msg("Clear background")}
|
|
</span>
|
|
</label>
|
|
<p class="pf-c-form__helper-text">
|
|
${msg("Delete currently set background image.")}
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
`
|
|
: html``}`
|
|
: html`<ak-form-element-horizontal
|
|
label=${msg("Background")}
|
|
name="background"
|
|
>
|
|
<input
|
|
type="text"
|
|
value="${first(this.instance?.background, "")}"
|
|
class="pf-c-form-control"
|
|
/>
|
|
<p class="pf-c-form__helper-text">
|
|
${msg("Background shown during execution.")}
|
|
</p>
|
|
</ak-form-element-horizontal>`}
|
|
</div>
|
|
</ak-form-group>
|
|
</form>`;
|
|
}
|
|
}
|