Aplicaciones FundeWeb 1.x
Si estás trabajando con una aplicación FundeWeb 1.x debes leer la guía ...
Pasos a seguir
Requisitos
Para poder aplicar estos cambios en tu aplicación necesitas:
En FundeWeb IDE 2.0: ...
En FundeWeb IDE 2.1: ...
Si no cumples los requisitos puedes ...
Hay que modificar o añadir las siguientes carpetas y ficheros:
AuthenticationManagerBean.java
- Modificar esta clase haciendo que extienda a AbstractAuthenticationManagerBean en lugar de a FundeWebManagerBean (línea 37).
- Modificar el enumerado AuthenticationType (línea 54) y añadir el método get getAuthenticationTypes (línea 89).
package es.um.atica.apium.security.authentication;
import static org.jboss.seam.ScopeType.SESSION;
import static org.jboss.seam.annotations.Install.FRAMEWORK;
import java.io.Serializable;
import java.util.MissingResourceException;
import java.util.ResourceBundle;
import javax.faces.model.SelectItem;
import org.jboss.seam.Component;
import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Observer;
import org.jboss.seam.annotations.Scope;
import org.jboss.seam.annotations.Startup;
import org.jboss.seam.annotations.intercept.BypassInterceptors;
import org.jboss.seam.contexts.Contexts;
import org.jboss.seam.core.SeamResourceBundle;
import org.jboss.seam.log.Log;
import org.jboss.seam.log.Logging;
import es.um.atica.apium.security.authentication.ws.AuthenticationFactoryCorreo;
import es.um.atica.seam.security.CredentialsAdapter;
import es.um.atica.seam.security.UmuIdentity;
import es.um.atica.seam.security.authentication.AbstractAuthenticationManagerBean;
import es.um.atica.seam.security.authentication.credentials.CredentialsUmu;
import es.um.atica.seam.security.authentication.factories.AuthenticationFactory;
import es.um.atica.seam.security.authentication.method.AuthenticationMethod;
@Name( "authenticationManagerBean" )
@Scope( SESSION )
@Install( precedence = FRAMEWORK )
@BypassInterceptors
@Startup
public class AuthenticationManagerBean extends AbstractAuthenticationManagerBean implements Serializable {
/**
* serialVersionUID generado automaticamente
*/
private static final long serialVersionUID = -6064182119922723132L;
/** Logger de la clase */
private static final Log LOG = Logging.getLog( AuthenticationManagerBean.class );
protected SelectItem[] selectItemsAutentication;
/** Credencial actual */
protected CredentialsAdapter credentialsAdapter;
protected AuthenticationType authenticationType;
public enum AuthenticationType {
CORREO( null, null, "label.tipo_acceso_correo" ),
SSO( "LdapAuthenticationHandler", null, "label.authentication.type.correoum" ),
SSO_CLAVE( "ClientAuthenticationHandler", "Cl@ve", "label.authentication.type.clave" ),
// SSO_CMN( "ClientAuthenticationHandler", "CMN", "label.authentication.type.cmn" ),
SSO_CERT( "ClientAuthenticationHandler", "Cert", "label.authentication.type.cert" );
private String authenticationMethod;
private String clientName;
private String descKey;
AuthenticationType( String authenticationMethod, String clientName ) {
this.authenticationMethod = authenticationMethod;
this.clientName = clientName;
}
AuthenticationType( String authenticationMethod, String clientName, String descKey ) {
this( authenticationMethod, clientName );
this.descKey = descKey;
}
public String getAuthenticationMethod() {
return authenticationMethod;
}
public String getClientName() {
return clientName;
}
public String getDescKey() {
return descKey;
}
}
public AuthenticationType[] getAuthenticationTypes() {
return AuthenticationType.values();
}
private static final String ERROR_FIRMA = "0";
public AuthenticationManagerBean() { // Por defecto CORREO
this.credentialsAdapter = ( CredentialsAdapter ) this.getCredentials();
this.authenticationType = AuthenticationType.CORREO;
this.activateCredentialsUmu();
int idx = 0;
selectItemsAutentication = new SelectItem[AuthenticationType.values().length];
for ( AuthenticationType type : AuthenticationType.values() ) {
selectItemsAutentication[idx++] = new SelectItem( type.name(), getAuthenticationTypeLabel( type ) );
}
}
public void activateCredentialsUmu() {
LOG.info( "Entrar en activateCredentialsUmu: #0", this.authenticationType.name() );
this.credentialsAdapter.setCredentialsUmu( getFactoria( this.authenticationType ).createCredentials() );
}
/**
* Metodo para activar una credencial.<br />
* Si la que se desea activar, es la que est� actualmente, no se hace nada y se devuelve false. En otro caso se
* devolver� true.
*
* @param credencial
* Clase de Credencial a activar.
* @return Si => se creo una nueva credencial. No => ya estaba esa misma credencial activa.
*/
public boolean activateCredentialsUmu( AuthenticationType authenticationType ) {
LOG.info( "Entrar en activateCredentialsUmu: #0",
( authenticationType != null ? authenticationType.name() : "" ) );
if ( ( this.getCredentialsUmu() != null ) && ( this.authenticationType == authenticationType ) ) {
if ( LOG.isDebugEnabled() ) {
LOG.debug( "La credencial actual y la pedida son iguales, luego no se crear� una nueva: #0.",
this.authenticationType );
}
return false;
}
if ( authenticationType != null ) {
this.setAuthenticationType( authenticationType );
} else { // Por defecto CORREO
this.setAuthenticationType( AuthenticationType.CORREO );
}
this.credentialsAdapter.setCredentialsUmu( getFactoria( this.authenticationType ).createCredentials() );
return true;
}
public AuthenticationMethod getAuthenticationMethod() {
return this.getFactoria( this.authenticationType ).createAuthenticationMethod();
}
/**
* @param authenticationType
* - parametro de Seam por defecto
* @return
*/
protected AuthenticationFactory getFactoria( AuthenticationType authenticationType ) {
if ( this.authenticationType == null ) {
activateCredentialsUmu( AuthenticationType.CORREO );
}
switch ( this.authenticationType ) {
case SSO: // case SSO
case SSO_CLAVE:
//case SSO_CMN:
case SSO_CERT:
return new es.um.atica.apium.security.authentication.AuthenticationFactorySSO();
case CORREO: // case CORREO
return new AuthenticationFactoryCorreo();
default:
return new es.um.atica.apium.security.authentication.AuthenticationFactoryRadius();
}
}
protected String getAuthenticationTypeLabel( AuthenticationType authenticationType ) {
ResourceBundle srb = SeamResourceBundle.getBundle();
try {
return srb.getString( authenticationType.getDescKey() );
} catch ( MissingResourceException mre ) {
LOG.error( "Error al obtener las etiquetas para los tipos de autenticacion.", mre );
}
return "";
}
/**
* Obtiene la credencial actual.
*/
public CredentialsUmu getCredentialsUmu() {
return this.credentialsAdapter.getCredentialsUmu();
}
public AuthenticationType getAuthenticationType() {
return authenticationType;
}
public void setAuthenticationType( AuthenticationType authenticationType ) {
LOG.debug( "Entra en setAuthenticationType: #0 - #1", authenticationType.hashCode(),
authenticationType.name() );
this.authenticationType = authenticationType;
}
public boolean isCorreoAuthentication() {
return this.authenticationType == AuthenticationType.CORREO;
}
public boolean isSsoAuthentication() {
return this.authenticationType == AuthenticationType.SSO;
}
public SelectItem[] getSelectItemsAutentication() {
return selectItemsAutentication;
}
@Observer( UmuIdentity.EVENT_AUTHENTICATING_BY_CAS )
public void activarAuthenticacionSSO() {
LOG.debug( "Entra en activarAuthenticacionSSO" );
this.authenticationType = AuthenticationType.SSO;
this.activateCredentialsUmu();
}
/*
* (non-Javadoc)
* @see es.um.atica.util.FundeWebManager#getLog()
*/
@Override
protected Log getLog() {
return LOG;
}
public static AuthenticationManagerBean instance() {
if ( !Contexts.isSessionContextActive() ) {
throw new IllegalStateException( "no session context active" );
}
return ( AuthenticationManagerBean ) Component.getInstance( AuthenticationManagerBean.class );
}
public static String getErrorfirma() {
return ERROR_FIRMA;
}
}
AuthenticatorAction.java
Sustituir la clase completa:
package es.um.atica.apium.security.authentication;
import static org.jboss.seam.annotations.Install.FRAMEWORK;
import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.intercept.BypassInterceptors;
import org.jboss.seam.log.Log;
import org.jboss.seam.log.Logging;
import es.um.atica.seam.security.authentication.AbstractAuthenticationManagerBean;
import es.um.atica.seam.security.authentication.AbstractAuthenticatorAction;
@Name( "authenticator" )
@Install( precedence = FRAMEWORK )
@BypassInterceptors
public class AuthenticatorAction extends AbstractAuthenticatorAction {
private static final Log LOG = Logging.getLog( AuthenticatorAction.class );
@Override
protected AbstractAuthenticationManagerBean getAuthenticationManagerBean() {
return AuthenticationManagerBean.instance();
}
/*
* (non-Javadoc)
* @see es.um.atica.util.FundeWebManagerBean#getLog()
*/
@Override
protected Log getLog() {
return LOG;
}
}
pages.xml
Añadir la siguiente regla de navegación en <page view-id="*">:
<navigation from-action="#{identity.relogByCAS}">
<redirect url="https://${cas.server.url}.um.es/cas/logout?service=https://${cas.application.url}/#{request.contextPath}" />
</navigation>
Añadir la siguiente excepción:
<exception class="es.um.atica.seam.security.authentication.exceptions.AuthenticationMethodNotSupportedException">
<redirect view-id="/fundeweb/error_auth_method.xhtml">
<message severity="error">#{messages['es.um.atica.security.authentication.AuthenticationMethodNotSupportedException']}</message>
</redirect>
</exception>
Modificar la excepción para la clase org.jboss.seam.security.AuthorizationException:
<exception class="org.jboss.seam.security.AuthorizationException">
<redirect view-id="/fundeweb/error_no_auth.xhtml">
<message severity="error">#{messages['org.jboss.seam.security.AuthorizationException']}</message>
</redirect>
</exception>