es.pode.empaquetador.presentacion.salir.SalirControllerImpl.java Source code

Java tutorial

Introduction

Here is the source code for es.pode.empaquetador.presentacion.salir.SalirControllerImpl.java

Source

/* Agrega es una federacin de repositorios de objetos digitales educativos formada por todas las Comunidades Autnomas propiedad de Red.es. Este cdigo ha sido desarrollado por la Entidad Pblica Empresarial red.es adscrita al Ministerio de Industria,Turismo y Comercio a travs de la Secretara de Estado de Telecomunicaciones y para la Sociedad de la Informacin, dentro del Programa Internet en el Aula, que se encuadra dentro de las actuaciones previstas en el Plan Avanza (Plan 2006-2010 para el desarrollo de la Sociedad de la Informacin y de Convergencia con Europa y entre Comunidades Autnomas y Ciudades Autnomas) y ha sido cofinanciado con fondos FEDER del Programa Operativo FEDER 2000-2006 Sociedad de la Informacin
    
This program is free software: you can redistribute it and/or modify it under the terms of the European Union Public Licence (EUPL v.1.0).  This program is distributed in the hope that it will be useful,  but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the European Union Public Licence (EUPL v.1.0). You should have received a copy of the EUPL licence along with this program.  If not, see http://ec.europa.eu/idabc/en/document/7330.
*/
// license-header java merge-point
package es.pode.empaquetador.presentacion.salir;

import java.util.List;
import java.util.Locale;
import java.util.ResourceBundle;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.validator.ValidatorException;
import org.apache.log4j.Logger;
import org.apache.struts.action.ActionMapping;

import es.pode.empaquetador.negocio.servicio.OdeVO;
import es.pode.empaquetador.negocio.servicio.ValidaVO;
import es.pode.empaquetador.presentacion.DecisorOffline;
import es.pode.empaquetador.presentacion.EmpaquetadorSession;
import es.pode.empaquetador.presentacion.GestorSesion;
import es.pode.empaquetador.presentacion.avanzado.organizaciones.crear.CrearOrganizacionSession;
import es.pode.empaquetador.presentacion.avanzado.organizaciones.elementos.crearelemento.CrearElementoSession;
import es.pode.empaquetador.presentacion.avanzado.recursos.crear.CrearRecursoAvanzadoSession;
import es.pode.empaquetador.presentacion.avanzado.recursos.crear.archivos.CrearRecursoArchivosSession;
import es.pode.soporte.constantes.ConstantesAgrega;
import es.pode.soporte.seguridad.ldap.LdapUserDetailsUtils;

/**
 * @see es.pode.empaquetador.presentacion.salir.SalirController
 */
public class SalirControllerImpl extends SalirController {

    private static Logger logger = Logger.getLogger(SalirControllerImpl.class);

    private static GestorSesion gs = new GestorSesion();

    public final void cerrarSesion(ActionMapping mapping,
            es.pode.empaquetador.presentacion.salir.CerrarSesionForm form, HttpServletRequest request,
            HttpServletResponse response) throws Exception {

        EmpaquetadorSession sesEmpaq = this.getEmpaquetadorSession(request);
        String url = sesEmpaq.getUrlCerrar();

        /*
         * URLs tipo host/agrega
         */
        url = "http://" + LdapUserDetailsUtils.getHost() + LdapUserDetailsUtils.getSubdominio()
                + (url.startsWith("/") ? "" : "/") + url;

        /*
         * Eliminado en Agrega Offline v1.1. Conservo codigo para identificar posibles fallos.
         * 
         * fjespino
         */
        //       if(DecisorOffline.esOffline()) {
        //          
        //          String parametros = "?idODE="+this.getEmpaquetadorSession(request).getOde().getIdentifier() + "&guardar="+form.getGuardar();
        //          url = url + parametros;
        //       }

        List submanifestPath = sesEmpaq.getSubmanifestPath();

        String identificador = "";
        OdeVO elemento = null;
        if (submanifestPath.size() > 1) {
            for (int i = submanifestPath.size() - 1; i > 0; i--) {
                elemento = (OdeVO) submanifestPath.get(i);
                identificador = elemento.getIdentifier();
                this.getSrvGestorManifestService().descargarManifest(identificador);
            }
        }
        this.getSrvGestorManifestService().terminarEdicion(sesEmpaq.getIdLocalizador());
        if (!this.getEmpaquetadorSession(request).isGuardadoPrimeraVez()) {
            if (logger.isDebugEnabled())
                logger.debug(
                        "No se ha guardado este ODE por primera vez. Elimino el ODE de la tabla de publicacion");
            try {
                this.getSrvGestorManifestService().eliminarODE(sesEmpaq.getIdLocalizador());
            } catch (Exception e) {
                logger.error("No se pudo eliminar " + sesEmpaq.getIdLocalizador(), e);
            }
        }
        if (this.getCrearElementoSession(request) != null) {
            request.getSession().removeAttribute(CrearElementoSession.SESSION_KEY);
        }
        if (this.getEmpaquetadorSession(request) != null) {
            request.getSession().removeAttribute(EmpaquetadorSession.SESSION_KEY);
        }

        if (this.getCrearElementoSession(request) != null) {
            request.getSession().removeAttribute(CrearElementoSession.SESSION_KEY);
        }
        if (this.getCrearRecursoArchivosSession(request) != null) {
            request.getSession().removeAttribute(CrearRecursoArchivosSession.SESSION_KEY);
        }
        if (this.getCrearRecursoAvanzadoSession(request) != null) {
            request.getSession().removeAttribute(CrearRecursoAvanzadoSession.SESSION_KEY);
        }

        if (this.getCrearOrganizacionSession(request) != null) {
            request.getSession().removeAttribute(CrearOrganizacionSession.SESSION_KEY);
        }

        if (logger.isDebugEnabled())
            logger.debug("Saliendo a " + url);
        response.sendRedirect(url);

    }

    public final boolean validacionOk(ActionMapping mapping,
            es.pode.empaquetador.presentacion.salir.ValidacionOkForm form, HttpServletRequest request,
            HttpServletResponse response) throws Exception {
        OdeVO ode = this.getEmpaquetadorSession(request).getOde();
        ValidaVO validacion = this.getEmpaquetadorSession(request).getValidacion();

        // Pasamos una validacion completa
        //ValidaVO validaVO = this.getSrvEmpaquetadorBasicoService().validar(ode,
        //   "COMPLETA");
        if (validacion == null) {
            validacion = this.getSrvGestorManifestService()
                    .validar(getEmpaquetadorSession(request).getIdLocalizador(), "BINARIA");
            this.getEmpaquetadorSession(request).setValidacion(validacion);
        }
        java.util.List mensajesError = null;
        if (validacion.getResultadoValidacion() != null) {
            String[] mensajes = validacion.getResultadoValidacion().split(";");
            mensajesError = java.util.Arrays.asList(mensajes);
        }

        form.setMensajesError(mensajesError);
        return validacion.getEsValidoManifest().booleanValue();
    }

    public final void guardar(ActionMapping mapping, es.pode.empaquetador.presentacion.salir.GuardarForm form,
            HttpServletRequest request, HttpServletResponse response) throws Exception {

        //       if(validacion.getEsValidoManifest().booleanValue())
        //      {
        String identificador = this.getEmpaquetadorSession(request).getIdLocalizador();
        if (logger.isDebugEnabled())
            logger.debug("Guardando el ODE " + identificador);
        if (DecisorOffline.esOffline()) {
            this.getSrvGestorManifestService().guardarManifiesto(identificador);
        } else {
            String sEspacioLibre = this.getEmpaquetadorSession(request).getEspacioLibre();
            String sEspacioOdeInicio = this.getEmpaquetadorSession(request).getEspacioOde();
            if (logger.isDebugEnabled())
                logger.debug("Espacio libre: " + sEspacioLibre + "Espacio ODE inicialmente:" + sEspacioOdeInicio);
            if (org.apache.commons.lang.StringUtils.isNumeric(sEspacioLibre)
                    && org.apache.commons.lang.StringUtils.isNumeric(sEspacioOdeInicio)) {
                Long espacioLibre = new Long(sEspacioLibre);
                Long espacioOdeInicio = new Long(sEspacioOdeInicio);
                Boolean hayEspacio = this.getSrvGestorArchivosService().consultaCuota(identificador, espacioLibre,
                        espacioOdeInicio);
                if (hayEspacio.booleanValue()) {
                    this.getSrvGestorManifestService().guardarManifiesto(identificador);
                } else {
                    throw new ValidatorException("{gestor.avanzado.guardar.noEspacioEnCuota}");
                }
            } else {
                this.getSrvGestorManifestService().guardarManifiesto(identificador);
            }
        }
        //         this.getSrvGestorManifestService().guardarManifiesto(identificador);
        if (!this.getEmpaquetadorSession(request).isGuardadoPrimeraVez()) {
            this.getEmpaquetadorSession(request).setGuardadoPrimeraVez(true);
            if (logger.isDebugEnabled())
                logger.debug("Cambiado flag guardadoPrimeraVez");
        }
        //      }
        //       this.getEmpaquetadorSession(request).setValidacion(validacion);

        form.setGuardar(String.valueOf(true));
    }

    public final void restaurarBackup(ActionMapping mapping, RestaurarBackupForm form, HttpServletRequest request,
            HttpServletResponse response) throws Exception {

        String idElemento = getEmpaquetadorSession(request).getIdLocalizador();
        this.getSrvGestorArchivosService().restaurarBackup(idElemento);
        form.setGuardar(String.valueOf(false));
    }

    public final String selectAction(ActionMapping mapping, SelectActionForm form, HttpServletRequest request,
            HttpServletResponse response) throws Exception {
        String result = null;
        String actionSubmit = form.getAction();
        java.util.Locale locale = (Locale) request.getSession().getAttribute(ConstantesAgrega.DEFAULT_LOCALE);
        ResourceBundle i18n = ResourceBundle.getBundle("application-resources", locale);

        if (form.getAction() == (null)) {
            throw new ValidatorException("{portal_empaquetado.exception}");
        }

        else if (actionSubmit.equals(i18n.getString("empaquetador.presentacion.salir.BotonCancelar"))) {
            result = "Cancelar";
        } else if (actionSubmit.equals(i18n.getString("empaquetador.presentacion.salir.BotonSi"))) {
            result = "Guardar";
        } else if (actionSubmit.equals(i18n.getString("empaquetador.presentacion.salir.BotonNo"))) {
            result = "Salir";
        }

        Logger.getLogger(this.getClass())
                .error("El valor del submit no es correcto (actionSubmit = " + actionSubmit + ";");

        return result;
    }

    public String esAvanzado(ActionMapping mapping, EsAvanzadoForm form, HttpServletRequest request,
            HttpServletResponse response) throws Exception {
        String resultado = null;

        if (logger.isDebugEnabled())
            logger.debug("Recupero datos de autenticacion");

        if (gs.esAvanzado())
            resultado = "Avanzado";
        else
            resultado = "Basico";

        if (logger.isDebugEnabled())
            logger.debug("Tipo de empaquetador detectado por validar : " + resultado);
        return resultado;
    }

}