stages/prompt: migrate to web

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-04-03 00:10:59 +02:00
parent f7aabe8ca9
commit 31226e3c75
5 changed files with 113 additions and 26 deletions

View File

@ -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(),
}

View File

@ -3,7 +3,6 @@ from typing import Type
from uuid import uuid4
from django.db import models
from django.forms import ModelForm
from django.utils.translation import gettext_lazy as _
from django.views import View
from rest_framework.fields import (
@ -144,10 +143,8 @@ class PromptStage(Stage):
return PromptStageView
@property
def form(self) -> Type[ModelForm]:
from authentik.stages.prompt.forms import PromptStageForm
return PromptStageForm
def component(self) -> str:
return "ak-stage-prompt-form"
class Meta:

View File

@ -7,7 +7,7 @@ import { Form } from "../../elements/forms/Form";
import { ifDefined } from "lit-html/directives/if-defined";
import "../../elements/forms/HorizontalFormElement";
@customElement("ak-stage-prompt-form")
@customElement("ak-prompt-form")
export class PromptForm extends Form<Prompt> {
@property({attribute: false})

View File

@ -68,8 +68,8 @@ export class PromptListPage extends TablePage<Prompt> {
<span slot="header">
${gettext("Update Prompt")}
</span>
<ak-stage-prompt-form slot="form" .prompt=${item}>
</ak-stage-prompt-form>
<ak-prompt-form slot="form" .prompt=${item}>
</ak-prompt-form>
<button slot="trigger" class="pf-c-button pf-m-secondary">
${gettext("Edit")}
</button>
@ -98,8 +98,8 @@ export class PromptListPage extends TablePage<Prompt> {
<span slot="header">
${gettext("Create Prompt")}
</span>
<ak-stage-prompt-form slot="form">
</ak-stage-prompt-form>
<ak-prompt-form slot="form">
</ak-prompt-form>
<button slot="trigger" class="pf-c-button pf-m-primary">
${gettext("Create")}
</button>

View 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>`;
}
}