Class ExtractUsernameFromRegistrationForm
java.lang.Object
net.shibboleth.shared.component.AbstractInitializableComponent
org.opensaml.profile.action.AbstractProfileAction
org.opensaml.profile.action.AbstractConditionalProfileAction
net.shibboleth.idp.profile.AbstractProfileAction
net.shibboleth.idp.plugin.authn.webauthn.impl.AbstractWebAuthnExtractionAction
net.shibboleth.idp.plugin.authn.webauthn.admin.impl.ExtractUsernameFromRegistrationForm
- All Implemented Interfaces:
Component,DestructableComponent,InitializableComponent,ProfileAction,Aware,MessageSource,MessageSourceAware,Action
An action to populate a username into the
BaseWebAuthnContext.- Event:
AuthnEventIds.UNKNOWN_USERNAME- Precondition:
ProfileRequestContext.getSubcontext(BaseWebAuthnContext.class) != null
- Postcondition:
BaseWebAuthnContext.getUsername() == null
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final org.slf4j.LoggerClass logger.private StringForm parameter name that carries the username.private BaseWebAuthnContextContext to operate on.Strategy used to locate theBaseWebAuthnContextto operate on. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voiddoExecute(ProfileRequestContext profileRequestContext) protected booleandoPreExecute(ProfileRequestContext profileRequestContext) private StringGets the username from a form submission.private StringprocessUsername(ProfileRequestContext profileRequestContext) Gets the username from a form submission and apply transformations to it.voidsetUsernameFieldName(String name) Sets the name of the form field that carries the username.voidSet the strategy used to locate theBaseWebAuthnContextto operate on.Methods inherited from class net.shibboleth.idp.plugin.authn.webauthn.impl.AbstractWebAuthnExtractionAction
applyTransforms, setLowercase, setTransforms, setTrim, setUppercaseMethods inherited from class net.shibboleth.idp.profile.AbstractProfileAction
doExecute, execute, getBean, getBean, getMessage, getMessage, getMessage, getParameter, getParameter, getProfileContextLookupStrategy, getRequestContext, getResult, setMessageSource, setProfileContextLookupStrategyMethods inherited from class org.opensaml.profile.action.AbstractConditionalProfileAction
getActivationCondition, setActivationConditionMethods inherited from class org.opensaml.profile.action.AbstractProfileAction
doPostExecute, doPostExecute, ensureHttpServletRequest, ensureHttpServletResponse, execute, getHttpServletRequest, getHttpServletRequestSupplier, getHttpServletResponse, getHttpServletResponseSupplier, getLogPrefix, isPreExecuteCalled, setHttpServletRequestSupplier, setHttpServletResponseSupplierMethods inherited from class net.shibboleth.shared.component.AbstractInitializableComponent
checkComponentActive, checkSetterPreconditions, destroy, doDestroy, doInitialize, ifDestroyedThrowDestroyedComponentException, ifInitializedThrowUnmodifiabledComponentException, ifNotInitializedThrowUninitializedComponentException, initialize, isDestroyed, isInitializedMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.shibboleth.shared.component.InitializableComponent
initialize, isInitialized
-
Field Details
-
log
@Nonnull private final org.slf4j.Logger logClass logger. -
webAuthnContextLookupStrategy
Strategy used to locate theBaseWebAuthnContextto operate on. -
usernameFieldName
Form parameter name that carries the username. -
webAuthnContext
Context to operate on.
-
-
Constructor Details
-
ExtractUsernameFromRegistrationForm
public ExtractUsernameFromRegistrationForm()Constructor.
-
-
Method Details
-
setWebAuthnContextLookupStrategy
public void setWebAuthnContextLookupStrategy(@Nonnull Function<ProfileRequestContext, BaseWebAuthnContext> strategy) Set the strategy used to locate theBaseWebAuthnContextto operate on.- Parameters:
strategy- lookup strategy
-
setUsernameFieldName
Sets the name of the form field that carries the username.- Parameters:
name- field name
-
doPreExecute
- Overrides:
doPreExecutein classAbstractConditionalProfileAction
-
doExecute
- Overrides:
doExecutein classAbstractProfileAction
-
getUsernameFromForm
Gets the username from a form submission.- Returns:
- the raw submitted username
-
processUsername
Gets the username from a form submission and apply transformations to it.- Parameters:
profileRequestContext- profile request context- Returns:
- submitted username, after applying any configured transforms
-