Java Code Examples for org.keycloak.forms.login.LoginFormsProvider#addError()
The following examples show how to use
org.keycloak.forms.login.LoginFormsProvider#addError() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RecaptchaUsernamePasswordForm.java From keycloak-login-recaptcha with Apache License 2.0 | 6 votes |
@Override public void authenticate(AuthenticationFlowContext context) { context.getEvent().detail(Details.AUTH_METHOD, "auth_method"); if (logger.isInfoEnabled()) { logger.info( "validateRecaptcha(AuthenticationFlowContext, boolean, String, String) - Before the validation"); } AuthenticatorConfigModel captchaConfig = context.getAuthenticatorConfig(); LoginFormsProvider form = context.form(); String userLanguageTag = context.getSession().getContext().resolveLocale(context.getUser()).toLanguageTag(); if (captchaConfig == null || captchaConfig.getConfig() == null || captchaConfig.getConfig().get(SITE_KEY) == null || captchaConfig.getConfig().get(SITE_SECRET) == null) { form.addError(new FormMessage(null, Messages.RECAPTCHA_NOT_CONFIGURED)); return; } siteKey = captchaConfig.getConfig().get(SITE_KEY); form.setAttribute("recaptchaRequired", true); form.setAttribute("recaptchaSiteKey", siteKey); form.addScript("https://www.google.com/recaptcha/api.js?hl=" + userLanguageTag); super.authenticate(context); }
Example 2
Source File: RegistrationRecaptcha.java From keycloak with Apache License 2.0 | 6 votes |
@Override public void buildPage(FormContext context, LoginFormsProvider form) { AuthenticatorConfigModel captchaConfig = context.getAuthenticatorConfig(); String userLanguageTag = context.getSession().getContext().resolveLocale(context.getUser()).toLanguageTag(); if (captchaConfig == null || captchaConfig.getConfig() == null || captchaConfig.getConfig().get(SITE_KEY) == null || captchaConfig.getConfig().get(SITE_SECRET) == null ) { form.addError(new FormMessage(null, Messages.RECAPTCHA_NOT_CONFIGURED)); return; } String siteKey = captchaConfig.getConfig().get(SITE_KEY); form.setAttribute("recaptchaRequired", true); form.setAttribute("recaptchaSiteKey", siteKey); form.addScript("https://www." + getRecaptchaDomain(captchaConfig) + "/recaptcha/api.js?hl=" + userLanguageTag); }
Example 3
Source File: AuthenticationProcessor.java From keycloak with Apache License 2.0 | 6 votes |
@Override public LoginFormsProvider form() { String accessCode = generateAccessCode(); URI action = getActionUrl(accessCode); LoginFormsProvider provider = getSession().getProvider(LoginFormsProvider.class) .setAuthContext(this) .setAuthenticationSession(getAuthenticationSession()) .setUser(getUser()) .setActionUri(action) .setExecution(getExecution().getId()) .setFormData(request.getHttpMethod().equalsIgnoreCase("post") ? request.getDecodedFormParameters() : new MultivaluedHashMap<>()) .setClientSessionCode(accessCode); if (getForwardedErrorMessage() != null) { provider.addError(getForwardedErrorMessage()); } else if (getForwardedSuccessMessage() != null) { provider.addSuccess(getForwardedSuccessMessage()); } return provider; }
Example 4
Source File: AuthenticationProcessor.java From keycloak with Apache License 2.0 | 5 votes |
public Response handleBrowserExceptionList(AuthenticationFlowException e) { LoginFormsProvider forms = session.getProvider(LoginFormsProvider.class).setAuthenticationSession(authenticationSession); ServicesLogger.LOGGER.failedAuthentication(e); forms.addError(new FormMessage(Messages.UNEXPECTED_ERROR_HANDLING_REQUEST)); for (AuthenticationFlowException afe : e.getAfeList()) { ServicesLogger.LOGGER.failedAuthentication(afe); switch (afe.getError()){ case INVALID_USER: event.error(Errors.USER_NOT_FOUND); forms.addError(new FormMessage(Messages.INVALID_USER)); break; case USER_DISABLED: event.error(Errors.USER_DISABLED); forms.addError(new FormMessage(Messages.ACCOUNT_DISABLED)); break; case USER_TEMPORARILY_DISABLED: event.error(Errors.USER_TEMPORARILY_DISABLED); forms.addError(new FormMessage(Messages.INVALID_USER)); break; case INVALID_CLIENT_SESSION: event.error(Errors.INVALID_CODE); forms.addError(new FormMessage(Messages.INVALID_CODE)); break; case EXPIRED_CODE: event.error(Errors.EXPIRED_CODE); forms.addError(new FormMessage(Messages.EXPIRED_CODE)); break; case DISPLAY_NOT_SUPPORTED: event.error(Errors.DISPLAY_UNSUPPORTED); forms.addError(new FormMessage(Messages.DISPLAY_UNSUPPORTED)); break; case CREDENTIAL_SETUP_REQUIRED: event.error(Errors.INVALID_USER_CREDENTIALS); forms.addError(new FormMessage(Messages.CREDENTIAL_SETUP_REQUIRED)); break; } } return forms.createErrorPage(Response.Status.BAD_REQUEST); }