stages/prompt: migrate to web
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
f7aabe8ca9
commit
31226e3c75
|
@ -1,16 +0,0 @@
|
||||||
"""Prompt forms"""
|
|
||||||
from django import forms
|
|
||||||
|
|
||||||
from authentik.stages.prompt.models import PromptStage
|
|
||||||
|
|
||||||
|
|
||||||
class PromptStageForm(forms.ModelForm):
|
|
||||||
"""Form to create/edit Prompt Stage instances"""
|
|
||||||
|
|
||||||
class Meta:
|
|
||||||
|
|
||||||
model = PromptStage
|
|
||||||
fields = ["name", "fields", "validation_policies"]
|
|
||||||
widgets = {
|
|
||||||
"name": forms.TextInput(),
|
|
||||||
}
|
|
|
@ -3,7 +3,6 @@ from typing import Type
|
||||||
from uuid import uuid4
|
from uuid import uuid4
|
||||||
|
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.forms import ModelForm
|
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
from django.views import View
|
from django.views import View
|
||||||
from rest_framework.fields import (
|
from rest_framework.fields import (
|
||||||
|
@ -144,10 +143,8 @@ class PromptStage(Stage):
|
||||||
return PromptStageView
|
return PromptStageView
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def form(self) -> Type[ModelForm]:
|
def component(self) -> str:
|
||||||
from authentik.stages.prompt.forms import PromptStageForm
|
return "ak-stage-prompt-form"
|
||||||
|
|
||||||
return PromptStageForm
|
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ import { Form } from "../../elements/forms/Form";
|
||||||
import { ifDefined } from "lit-html/directives/if-defined";
|
import { ifDefined } from "lit-html/directives/if-defined";
|
||||||
import "../../elements/forms/HorizontalFormElement";
|
import "../../elements/forms/HorizontalFormElement";
|
||||||
|
|
||||||
@customElement("ak-stage-prompt-form")
|
@customElement("ak-prompt-form")
|
||||||
export class PromptForm extends Form<Prompt> {
|
export class PromptForm extends Form<Prompt> {
|
||||||
|
|
||||||
@property({attribute: false})
|
@property({attribute: false})
|
||||||
|
|
|
@ -68,8 +68,8 @@ export class PromptListPage extends TablePage<Prompt> {
|
||||||
<span slot="header">
|
<span slot="header">
|
||||||
${gettext("Update Prompt")}
|
${gettext("Update Prompt")}
|
||||||
</span>
|
</span>
|
||||||
<ak-stage-prompt-form slot="form" .prompt=${item}>
|
<ak-prompt-form slot="form" .prompt=${item}>
|
||||||
</ak-stage-prompt-form>
|
</ak-prompt-form>
|
||||||
<button slot="trigger" class="pf-c-button pf-m-secondary">
|
<button slot="trigger" class="pf-c-button pf-m-secondary">
|
||||||
${gettext("Edit")}
|
${gettext("Edit")}
|
||||||
</button>
|
</button>
|
||||||
|
@ -98,8 +98,8 @@ export class PromptListPage extends TablePage<Prompt> {
|
||||||
<span slot="header">
|
<span slot="header">
|
||||||
${gettext("Create Prompt")}
|
${gettext("Create Prompt")}
|
||||||
</span>
|
</span>
|
||||||
<ak-stage-prompt-form slot="form">
|
<ak-prompt-form slot="form">
|
||||||
</ak-stage-prompt-form>
|
</ak-prompt-form>
|
||||||
<button slot="trigger" class="pf-c-button pf-m-primary">
|
<button slot="trigger" class="pf-c-button pf-m-primary">
|
||||||
${gettext("Create")}
|
${gettext("Create")}
|
||||||
</button>
|
</button>
|
||||||
|
|
106
web/src/pages/stages/prompt/PromptStageForm.ts
Normal file
106
web/src/pages/stages/prompt/PromptStageForm.ts
Normal file
|
@ -0,0 +1,106 @@
|
||||||
|
import { PoliciesApi, PromptStage, StagesApi } from "authentik-api";
|
||||||
|
import { gettext } from "django";
|
||||||
|
import { customElement, property } from "lit-element";
|
||||||
|
import { html, TemplateResult } from "lit-html";
|
||||||
|
import { DEFAULT_CONFIG } from "../../../api/Config";
|
||||||
|
import { Form } from "../../../elements/forms/Form";
|
||||||
|
import { ifDefined } from "lit-html/directives/if-defined";
|
||||||
|
import "../../../elements/forms/HorizontalFormElement";
|
||||||
|
import "../../../elements/forms/FormGroup";
|
||||||
|
import { until } from "lit-html/directives/until";
|
||||||
|
|
||||||
|
@customElement("ak-stage-prompt-form")
|
||||||
|
export class PromptStageForm extends Form<PromptStage> {
|
||||||
|
|
||||||
|
set stageUUID(value: string) {
|
||||||
|
new StagesApi(DEFAULT_CONFIG).stagesPromptStagesRead({
|
||||||
|
stageUuid: value,
|
||||||
|
}).then(stage => {
|
||||||
|
this.stage = stage;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@property({attribute: false})
|
||||||
|
stage?: PromptStage;
|
||||||
|
|
||||||
|
getSuccessMessage(): string {
|
||||||
|
if (this.stage) {
|
||||||
|
return gettext("Successfully updated stage.");
|
||||||
|
} else {
|
||||||
|
return gettext("Successfully created stage.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
send = (data: PromptStage): Promise<PromptStage> => {
|
||||||
|
if (this.stage) {
|
||||||
|
return new StagesApi(DEFAULT_CONFIG).stagesPromptStagesUpdate({
|
||||||
|
stageUuid: this.stage.pk || "",
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
return new StagesApi(DEFAULT_CONFIG).stagesPromptStagesCreate({
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
renderForm(): TemplateResult {
|
||||||
|
return html`<form class="pf-c-form pf-m-horizontal">
|
||||||
|
<ak-form-element-horizontal
|
||||||
|
label=${gettext("Name")}
|
||||||
|
?required=${true}
|
||||||
|
name="name">
|
||||||
|
<input type="text" value="${ifDefined(this.stage?.name || "")}" class="pf-c-form-control" required>
|
||||||
|
</ak-form-element-horizontal>
|
||||||
|
<ak-form-group .expanded=${true}>
|
||||||
|
<span slot="header">
|
||||||
|
${gettext("Stage-specific settings")}
|
||||||
|
</span>
|
||||||
|
<div slot="body" class="pf-c-form">
|
||||||
|
<ak-form-element-horizontal
|
||||||
|
label=${gettext("Fields")}
|
||||||
|
?required=${true}
|
||||||
|
name="fields">
|
||||||
|
<select name="users" class="pf-c-form-control" multiple>
|
||||||
|
${until(new StagesApi(DEFAULT_CONFIG).stagesPromptPromptsList({
|
||||||
|
ordering: "field_name"
|
||||||
|
}).then(prompts => {
|
||||||
|
return prompts.results.map(prompt => {
|
||||||
|
const selected = Array.from(this.stage?.fields || []).some(su => {
|
||||||
|
return su == prompt.pk;
|
||||||
|
});
|
||||||
|
return html`<option value=${ifDefined(prompt.pk)} ?selected=${selected}>
|
||||||
|
${gettext(`${prompt.fieldKey} ('${prompt.label}', Type ${prompt.type})`)}
|
||||||
|
</option>`;
|
||||||
|
});
|
||||||
|
}))}
|
||||||
|
</select>
|
||||||
|
<p class="pf-c-form__helper-text">${gettext("Hold control/command to select multiple items.")}</p>
|
||||||
|
</ak-form-element-horizontal>
|
||||||
|
<ak-form-element-horizontal
|
||||||
|
label=${gettext("Validation Policies")}
|
||||||
|
?required=${true}
|
||||||
|
name="validationPolicies">
|
||||||
|
<select name="users" class="pf-c-form-control" multiple>
|
||||||
|
${until(new PoliciesApi(DEFAULT_CONFIG).policiesAllList({
|
||||||
|
ordering: "name"
|
||||||
|
}).then(policies => {
|
||||||
|
return policies.results.map(policy => {
|
||||||
|
const selected = Array.from(this.stage?.validationPolicies || []).some(su => {
|
||||||
|
return su == policy.pk;
|
||||||
|
});
|
||||||
|
return html`<option value=${ifDefined(policy.pk)} ?selected=${selected}>
|
||||||
|
${gettext(`${policy.name} (${policy.verboseName})`)}
|
||||||
|
</option>`;
|
||||||
|
});
|
||||||
|
}))}
|
||||||
|
</select>
|
||||||
|
<p class="pf-c-form__helper-text">${gettext("Selected policies are executed when the stage is submitted to validate the data.")}</p>
|
||||||
|
<p class="pf-c-form__helper-text">${gettext("Hold control/command to select multiple items.")}</p>
|
||||||
|
</ak-form-element-horizontal>
|
||||||
|
</div>
|
||||||
|
</ak-form-group>
|
||||||
|
</form>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Reference in a new issue