flows: fix mismatched names
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
716923e17a
commit
127ebed5c6
|
@ -171,7 +171,7 @@ class FlowExecutorView(APIView):
|
||||||
@extend_schema(
|
@extend_schema(
|
||||||
responses={
|
responses={
|
||||||
200: PolymorphicProxySerializer(
|
200: PolymorphicProxySerializer(
|
||||||
component_name="Challenge",
|
component_name="FlowChallengeRequest",
|
||||||
serializers=challenge_types(),
|
serializers=challenge_types(),
|
||||||
resource_type_field_name="component",
|
resource_type_field_name="component",
|
||||||
),
|
),
|
||||||
|
@ -209,7 +209,7 @@ class FlowExecutorView(APIView):
|
||||||
@extend_schema(
|
@extend_schema(
|
||||||
responses={
|
responses={
|
||||||
200: PolymorphicProxySerializer(
|
200: PolymorphicProxySerializer(
|
||||||
component_name="Challenge",
|
component_name="FlowChallengeRequest",
|
||||||
serializers=challenge_types(),
|
serializers=challenge_types(),
|
||||||
resource_type_field_name="component",
|
resource_type_field_name="component",
|
||||||
),
|
),
|
||||||
|
|
|
@ -150,9 +150,9 @@ func (pi *ProviderInstance) solveFlowChallenge(bindDN string, password string, c
|
||||||
responseReq := client.FlowsApi.FlowsExecutorSolve(context.Background(), pi.flowSlug).Query(urlParams)
|
responseReq := client.FlowsApi.FlowsExecutorSolve(context.Background(), pi.flowSlug).Query(urlParams)
|
||||||
switch ch.GetComponent() {
|
switch ch.GetComponent() {
|
||||||
case "ak-stage-identification":
|
case "ak-stage-identification":
|
||||||
responseReq = responseReq.ChallengeResponseRequest(api.IdentificationChallengeResponseRequestAsChallengeResponseRequest(api.NewIdentificationChallengeResponseRequest(bindDN)))
|
responseReq = responseReq.FlowChallengeResponseRequest(api.IdentificationChallengeResponseRequestAsFlowChallengeResponseRequest(api.NewIdentificationChallengeResponseRequest(bindDN)))
|
||||||
case "ak-stage-password":
|
case "ak-stage-password":
|
||||||
responseReq = responseReq.ChallengeResponseRequest(api.PasswordChallengeResponseRequestAsChallengeResponseRequest(api.NewPasswordChallengeResponseRequest(password)))
|
responseReq = responseReq.FlowChallengeResponseRequest(api.PasswordChallengeResponseRequestAsFlowChallengeResponseRequest(api.NewPasswordChallengeResponseRequest(password)))
|
||||||
case "ak-stage-authenticator-validate":
|
case "ak-stage-authenticator-validate":
|
||||||
// We only support duo as authenticator, check if that's allowed
|
// We only support duo as authenticator, check if that's allowed
|
||||||
var deviceChallenge *api.DeviceChallenge
|
var deviceChallenge *api.DeviceChallenge
|
||||||
|
@ -171,7 +171,7 @@ func (pi *ProviderInstance) solveFlowChallenge(bindDN string, password string, c
|
||||||
devId32 := int32(devId)
|
devId32 := int32(devId)
|
||||||
inner := api.NewAuthenticatorValidationChallengeResponseRequest()
|
inner := api.NewAuthenticatorValidationChallengeResponseRequest()
|
||||||
inner.Duo = &devId32
|
inner.Duo = &devId32
|
||||||
responseReq = responseReq.ChallengeResponseRequest(api.AuthenticatorValidationChallengeResponseRequestAsChallengeResponseRequest(inner))
|
responseReq = responseReq.FlowChallengeResponseRequest(api.AuthenticatorValidationChallengeResponseRequestAsFlowChallengeResponseRequest(inner))
|
||||||
case "ak-stage-access-denied":
|
case "ak-stage-access-denied":
|
||||||
return false, errors.New("got ak-stage-access-denied")
|
return false, errors.New("got ak-stage-access-denied")
|
||||||
default:
|
default:
|
||||||
|
|
82
schema.yml
82
schema.yml
|
@ -3520,7 +3520,7 @@ paths:
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/Challenge'
|
$ref: '#/components/schemas/FlowChallengeRequest'
|
||||||
description: ''
|
description: ''
|
||||||
'404':
|
'404':
|
||||||
description: No Token found
|
description: No Token found
|
||||||
|
@ -3566,7 +3566,7 @@ paths:
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/Challenge'
|
$ref: '#/components/schemas/FlowChallengeRequest'
|
||||||
description: ''
|
description: ''
|
||||||
'400':
|
'400':
|
||||||
$ref: '#/components/schemas/ValidationError'
|
$ref: '#/components/schemas/ValidationError'
|
||||||
|
@ -15865,45 +15865,6 @@ components:
|
||||||
required:
|
required:
|
||||||
- certificate_data
|
- certificate_data
|
||||||
- name
|
- name
|
||||||
Challenge:
|
|
||||||
oneOf:
|
|
||||||
- $ref: '#/components/schemas/AccessDeniedChallenge'
|
|
||||||
- $ref: '#/components/schemas/AuthenticatorDuoChallenge'
|
|
||||||
- $ref: '#/components/schemas/AuthenticatorStaticChallenge'
|
|
||||||
- $ref: '#/components/schemas/AuthenticatorTOTPChallenge'
|
|
||||||
- $ref: '#/components/schemas/AuthenticatorValidationChallenge'
|
|
||||||
- $ref: '#/components/schemas/AuthenticatorWebAuthnChallenge'
|
|
||||||
- $ref: '#/components/schemas/AutosubmitChallenge'
|
|
||||||
- $ref: '#/components/schemas/CaptchaChallenge'
|
|
||||||
- $ref: '#/components/schemas/ConsentChallenge'
|
|
||||||
- $ref: '#/components/schemas/DummyChallenge'
|
|
||||||
- $ref: '#/components/schemas/EmailChallenge'
|
|
||||||
- $ref: '#/components/schemas/IdentificationChallenge'
|
|
||||||
- $ref: '#/components/schemas/PasswordChallenge'
|
|
||||||
- $ref: '#/components/schemas/PlexAuthenticationChallenge'
|
|
||||||
- $ref: '#/components/schemas/PromptChallenge'
|
|
||||||
- $ref: '#/components/schemas/RedirectChallenge'
|
|
||||||
- $ref: '#/components/schemas/ShellChallenge'
|
|
||||||
discriminator:
|
|
||||||
propertyName: component
|
|
||||||
mapping:
|
|
||||||
ak-stage-access-denied: '#/components/schemas/AccessDeniedChallenge'
|
|
||||||
ak-stage-authenticator-duo: '#/components/schemas/AuthenticatorDuoChallenge'
|
|
||||||
ak-stage-authenticator-static: '#/components/schemas/AuthenticatorStaticChallenge'
|
|
||||||
ak-stage-authenticator-totp: '#/components/schemas/AuthenticatorTOTPChallenge'
|
|
||||||
ak-stage-authenticator-validate: '#/components/schemas/AuthenticatorValidationChallenge'
|
|
||||||
ak-stage-authenticator-webauthn: '#/components/schemas/AuthenticatorWebAuthnChallenge'
|
|
||||||
ak-stage-autosubmit: '#/components/schemas/AutosubmitChallenge'
|
|
||||||
ak-stage-captcha: '#/components/schemas/CaptchaChallenge'
|
|
||||||
ak-stage-consent: '#/components/schemas/ConsentChallenge'
|
|
||||||
ak-stage-dummy: '#/components/schemas/DummyChallenge'
|
|
||||||
ak-stage-email: '#/components/schemas/EmailChallenge'
|
|
||||||
ak-stage-identification: '#/components/schemas/IdentificationChallenge'
|
|
||||||
ak-stage-password: '#/components/schemas/PasswordChallenge'
|
|
||||||
ak-flow-sources-plex: '#/components/schemas/PlexAuthenticationChallenge'
|
|
||||||
ak-stage-prompt: '#/components/schemas/PromptChallenge'
|
|
||||||
xak-flow-redirect: '#/components/schemas/RedirectChallenge'
|
|
||||||
xak-flow-shell: '#/components/schemas/ShellChallenge'
|
|
||||||
ChallengeChoices:
|
ChallengeChoices:
|
||||||
enum:
|
enum:
|
||||||
- native
|
- native
|
||||||
|
@ -16792,6 +16753,45 @@ components:
|
||||||
- slug
|
- slug
|
||||||
- stages
|
- stages
|
||||||
- title
|
- title
|
||||||
|
FlowChallengeRequest:
|
||||||
|
oneOf:
|
||||||
|
- $ref: '#/components/schemas/AccessDeniedChallenge'
|
||||||
|
- $ref: '#/components/schemas/AuthenticatorDuoChallenge'
|
||||||
|
- $ref: '#/components/schemas/AuthenticatorStaticChallenge'
|
||||||
|
- $ref: '#/components/schemas/AuthenticatorTOTPChallenge'
|
||||||
|
- $ref: '#/components/schemas/AuthenticatorValidationChallenge'
|
||||||
|
- $ref: '#/components/schemas/AuthenticatorWebAuthnChallenge'
|
||||||
|
- $ref: '#/components/schemas/AutosubmitChallenge'
|
||||||
|
- $ref: '#/components/schemas/CaptchaChallenge'
|
||||||
|
- $ref: '#/components/schemas/ConsentChallenge'
|
||||||
|
- $ref: '#/components/schemas/DummyChallenge'
|
||||||
|
- $ref: '#/components/schemas/EmailChallenge'
|
||||||
|
- $ref: '#/components/schemas/IdentificationChallenge'
|
||||||
|
- $ref: '#/components/schemas/PasswordChallenge'
|
||||||
|
- $ref: '#/components/schemas/PlexAuthenticationChallenge'
|
||||||
|
- $ref: '#/components/schemas/PromptChallenge'
|
||||||
|
- $ref: '#/components/schemas/RedirectChallenge'
|
||||||
|
- $ref: '#/components/schemas/ShellChallenge'
|
||||||
|
discriminator:
|
||||||
|
propertyName: component
|
||||||
|
mapping:
|
||||||
|
ak-stage-access-denied: '#/components/schemas/AccessDeniedChallenge'
|
||||||
|
ak-stage-authenticator-duo: '#/components/schemas/AuthenticatorDuoChallenge'
|
||||||
|
ak-stage-authenticator-static: '#/components/schemas/AuthenticatorStaticChallenge'
|
||||||
|
ak-stage-authenticator-totp: '#/components/schemas/AuthenticatorTOTPChallenge'
|
||||||
|
ak-stage-authenticator-validate: '#/components/schemas/AuthenticatorValidationChallenge'
|
||||||
|
ak-stage-authenticator-webauthn: '#/components/schemas/AuthenticatorWebAuthnChallenge'
|
||||||
|
ak-stage-autosubmit: '#/components/schemas/AutosubmitChallenge'
|
||||||
|
ak-stage-captcha: '#/components/schemas/CaptchaChallenge'
|
||||||
|
ak-stage-consent: '#/components/schemas/ConsentChallenge'
|
||||||
|
ak-stage-dummy: '#/components/schemas/DummyChallenge'
|
||||||
|
ak-stage-email: '#/components/schemas/EmailChallenge'
|
||||||
|
ak-stage-identification: '#/components/schemas/IdentificationChallenge'
|
||||||
|
ak-stage-password: '#/components/schemas/PasswordChallenge'
|
||||||
|
ak-flow-sources-plex: '#/components/schemas/PlexAuthenticationChallenge'
|
||||||
|
ak-stage-prompt: '#/components/schemas/PromptChallenge'
|
||||||
|
xak-flow-redirect: '#/components/schemas/RedirectChallenge'
|
||||||
|
xak-flow-shell: '#/components/schemas/ShellChallenge'
|
||||||
FlowChallengeResponseRequest:
|
FlowChallengeResponseRequest:
|
||||||
oneOf:
|
oneOf:
|
||||||
- $ref: '#/components/schemas/AuthenticatorDuoChallengeResponseRequest'
|
- $ref: '#/components/schemas/AuthenticatorDuoChallengeResponseRequest'
|
||||||
|
|
|
@ -26,14 +26,14 @@ import "./stages/password/PasswordStage";
|
||||||
import "./stages/prompt/PromptStage";
|
import "./stages/prompt/PromptStage";
|
||||||
import "./sources/plex/PlexLoginInit";
|
import "./sources/plex/PlexLoginInit";
|
||||||
import { StageHost } from "./stages/base";
|
import { StageHost } from "./stages/base";
|
||||||
import { Challenge, ChallengeChoices, Config, FlowsApi, RedirectChallenge, ShellChallenge } from "authentik-api";
|
import { ChallengeChoices, ChallengeResponseRequest, Config, FlowsApi, RedirectChallenge, ShellChallenge } from "authentik-api";
|
||||||
import { config, DEFAULT_CONFIG } from "../api/Config";
|
import { config, DEFAULT_CONFIG } from "../api/Config";
|
||||||
import { ifDefined } from "lit-html/directives/if-defined";
|
import { ifDefined } from "lit-html/directives/if-defined";
|
||||||
import { until } from "lit-html/directives/until";
|
import { until } from "lit-html/directives/until";
|
||||||
import { PFSize } from "../elements/Spinner";
|
import { PFSize } from "../elements/Spinner";
|
||||||
import { TITLE_DEFAULT } from "../constants";
|
import { TITLE_DEFAULT } from "../constants";
|
||||||
import { configureSentry } from "../api/Sentry";
|
import { configureSentry } from "../api/Sentry";
|
||||||
import { ChallengeResponseRequest } from "authentik-api/dist/models/ChallengeResponseRequest";
|
import { FlowChallengeRequest } from "authentik-api/src/models/FlowChallengeRequest";
|
||||||
import { FlowChallengeResponseRequest } from "authentik-api/src";
|
import { FlowChallengeResponseRequest } from "authentik-api/src";
|
||||||
|
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@ export class FlowExecutor extends LitElement implements StageHost {
|
||||||
flowSlug: string;
|
flowSlug: string;
|
||||||
|
|
||||||
@property({attribute: false})
|
@property({attribute: false})
|
||||||
challenge?: Challenge;
|
challenge?: FlowChallengeRequest;
|
||||||
|
|
||||||
@property({type: Boolean})
|
@property({type: Boolean})
|
||||||
loading = false;
|
loading = false;
|
||||||
|
@ -162,7 +162,7 @@ export class FlowExecutor extends LitElement implements StageHost {
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>`
|
</footer>`
|
||||||
} as Challenge;
|
} as FlowChallengeRequest;
|
||||||
}
|
}
|
||||||
|
|
||||||
renderLoading(): TemplateResult {
|
renderLoading(): TemplateResult {
|
||||||
|
|
|
@ -10,7 +10,8 @@ import PFBase from "@patternfly/patternfly/patternfly-base.css";
|
||||||
import AKGlobal from "../../../authentik.css";
|
import AKGlobal from "../../../authentik.css";
|
||||||
import "../../../elements/forms/FormElement";
|
import "../../../elements/forms/FormElement";
|
||||||
import "../../../elements/EmptyState";
|
import "../../../elements/EmptyState";
|
||||||
import { Challenge, IdentificationChallenge, IdentificationChallengeResponseRequest, UILoginButton } from "authentik-api";
|
import { IdentificationChallenge, IdentificationChallengeResponseRequest, UILoginButton } from "authentik-api";
|
||||||
|
import { FlowChallengeRequest } from "authentik-api/src/models/FlowChallengeRequest";
|
||||||
|
|
||||||
export const PasswordManagerPrefill: {
|
export const PasswordManagerPrefill: {
|
||||||
password: string | undefined;
|
password: string | undefined;
|
||||||
|
@ -116,7 +117,7 @@ export class IdentificationStage extends BaseStage<IdentificationChallenge, Iden
|
||||||
return html`<li class="pf-c-login__main-footer-links-item">
|
return html`<li class="pf-c-login__main-footer-links-item">
|
||||||
<button type="button" @click=${() => {
|
<button type="button" @click=${() => {
|
||||||
if (!this.host) return;
|
if (!this.host) return;
|
||||||
this.host.challenge = source.challenge as Challenge;
|
this.host.challenge = source.challenge as FlowChallengeRequest;
|
||||||
}}>
|
}}>
|
||||||
${icon}
|
${icon}
|
||||||
</button>
|
</button>
|
||||||
|
|
Reference in New Issue