IdpConfirmOverrideLinkAuthenticator.java
/*
* Copyright 2024 Red Hat, Inc. and/or its affiliates
* and other contributors as indicated by the @author tags.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.keycloak.authentication.authenticators.broker;
import jakarta.ws.rs.core.MultivaluedMap;
import jakarta.ws.rs.core.Response;
import org.keycloak.authentication.AuthenticationFlowContext;
import org.keycloak.authentication.AuthenticationFlowError;
import org.keycloak.authentication.AuthenticationFlowException;
import org.keycloak.authentication.authenticators.broker.util.SerializedBrokeredIdentityContext;
import org.keycloak.broker.provider.BrokeredIdentityContext;
import org.keycloak.forms.login.LoginFormsProvider;
import org.keycloak.models.FederatedIdentityModel;
import org.keycloak.models.KeycloakSession;
import org.keycloak.models.RealmModel;
import org.keycloak.models.UserModel;
import org.keycloak.services.messages.Messages;
import org.keycloak.sessions.AuthenticationSessionModel;
public class IdpConfirmOverrideLinkAuthenticator extends AbstractIdpAuthenticator {
public static final String OVERRIDE_LINK = "OVERRIDE_LINK";
@Override
protected void authenticateImpl(AuthenticationFlowContext context, SerializedBrokeredIdentityContext serializedCtx, BrokeredIdentityContext brokerContext) {
RealmModel realm = context.getRealm();
KeycloakSession session = context.getSession();
AuthenticationSessionModel authSession = context.getAuthenticationSession();
UserModel user = getExistingUser(session, realm, authSession);
String providerAlias = brokerContext.getIdpConfig().getAlias();
FederatedIdentityModel federatedIdentity = session.users()
.getFederatedIdentity(realm, user, providerAlias);
if (federatedIdentity == null) {
context.success();
return;
}
String newBrokerUsername = brokerContext.getUsername();
String oldBrokerUsername = federatedIdentity.getUserName();
Response challenge = context.form()
.setStatus(Response.Status.OK)
.setAttribute(LoginFormsProvider.IDENTITY_PROVIDER_BROKER_CONTEXT, brokerContext)
.setError(
Messages.FEDERATED_IDENTITY_CONFIRM_OVERRIDE_MESSAGE,
user.getUsername(),
providerAlias,
newBrokerUsername,
providerAlias,
oldBrokerUsername
).createIdpLinkConfirmOverrideLinkPage();
context.challenge(challenge);
}
@Override
protected void actionImpl(AuthenticationFlowContext context, SerializedBrokeredIdentityContext serializedCtx, BrokeredIdentityContext brokerContext) {
MultivaluedMap<String, String> formData = context.getHttpRequest().getDecodedFormParameters();
String action = formData.getFirst("submitAction");
if (!"confirmOverride".equals(action)) {
throw new AuthenticationFlowException("Unknown action: " + action,
AuthenticationFlowError.INTERNAL_ERROR);
}
AuthenticationSessionModel authSession = context.getAuthenticationSession();
authSession.setAuthNote(OVERRIDE_LINK, "true");
context.success();
}
@Override
public boolean requiresUser() {
return false;
}
@Override
public boolean configuredFor(KeycloakSession session, RealmModel realm, UserModel user) {
return false;
}
}