es.pode.empaquetador.presentacion.basico.carpeta.CrearCarpetaBasicoControllerImpl.java Source code

Java tutorial

Introduction

Here is the source code for es.pode.empaquetador.presentacion.basico.carpeta.CrearCarpetaBasicoControllerImpl.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.basico.carpeta;

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.GrupoVO;
import es.pode.empaquetador.negocio.servicio.OrganizacionVO;
import es.pode.empaquetador.presentacion.EmpaquetadorSession;
import es.pode.empaquetador.presentacion.GestorSesion;
import es.pode.soporte.constantes.ConstantesAgrega;
import es.pode.soporte.uuid.PodeUUIDGenerator;

/**
 * @see es.pode.empaquetador.presentacion.basico.carpeta.CrearCarpetaBasicoController
 */
public class CrearCarpetaBasicoControllerImpl extends CrearCarpetaBasicoController {

    private static Logger logger = Logger.getLogger(CrearCarpetaBasicoControllerImpl.class);
    private GestorSesion gs = new GestorSesion();

    /**
     * @see es.pode.empaquetador.presentacion.basico.carpeta.CrearCarpetaBasicoController#recuperarDatos(org.apache.struts.action.ActionMapping, es.pode.empaquetador.presentacion.basico.carpeta.RecuperarDatosForm, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
     */
    public final void recuperarDatos(ActionMapping mapping,
            es.pode.empaquetador.presentacion.basico.carpeta.RecuperarDatosForm form, HttpServletRequest request,
            HttpServletResponse response) throws Exception {
        if (form.isEsModificar()) {
            if (logger.isDebugEnabled())
                logger.debug("Recuperar Datos: Modificando carpeta : " + form.getIdentifier());
            List idCollection = this.getEmpaquetadorSession(request).getIdCollection();
            Object obj = idCollection.get(idCollection.size() - 1);
            GrupoVO[] grupos = null;
            if (obj instanceof OrganizacionVO) {
                OrganizacionVO org = (OrganizacionVO) obj;
                grupos = org.getGrupos();
            } else {
                GrupoVO grupo = (GrupoVO) obj;
                grupos = grupo.getGrupos();
            }
            if (grupos != null) {
                for (int i = 0; i < grupos.length && form.getTitle() == null; i++) {
                    if (grupos[i].getIdentifier().equals(form.getIdentifier())) {
                        form.setTitle(grupos[i].getTitle());
                    }
                }
            }
        } else {
            if (logger.isDebugEnabled())
                logger.debug("Creando nueva carpeta");
            form.setIdentifier(PodeUUIDGenerator.getItemUUID(String.valueOf(java.lang.Math.random())));
        }
        if (logger.isDebugEnabled())
            logger.debug("Terminando crear carpeta basico-recuperar datos con: identifier = " + form.getIdentifier()
                    + " : title = " + form.getTitle() + " : esModificar = " + form.isEsModificar());
    }

    /**
     * @see es.pode.empaquetador.presentacion.basico.carpeta.CrearCarpetaBasicoController#crear(org.apache.struts.action.ActionMapping, es.pode.empaquetador.presentacion.basico.carpeta.CrearForm, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
     */
    public final void crear(ActionMapping mapping, es.pode.empaquetador.presentacion.basico.carpeta.CrearForm form,
            HttpServletRequest request, HttpServletResponse response) throws Exception {

        java.util.Locale locale = (Locale) request.getSession().getAttribute(ConstantesAgrega.DEFAULT_LOCALE);
        ResourceBundle i18n = ResourceBundle.getBundle("application-resources", locale);

        String accion = form.getAction();

        if (accion == null || accion.equals(i18n.getString("nuevo_grupo.aceptar"))) {
            // Validamos el nuevo titulo introducido
            if (form.getTitle() == null || "".equals(form.getTitle().trim())) {
                logger.error("El titulo " + form.getTitle() + " no ha pasado la validacion");
                throw new ValidatorException("{gestor_basico.carpeta.validacion.titulo.obligatorio}");
            }
            // Comprobamos carpetas repetidas
            GrupoVO[] hijos = gs.buscarHijosIdCollection(request);
            for (int i = 0; i < hijos.length; i++) {
                if (form.getTitle().equals(hijos[i].getTitle())) {
                    logger.error("Error de titulo repetido en crear / modificar carpeta");
                    throw new ValidatorException("{gestor_basico.carpeta.validacion.titulo.repetido}");
                }
            }

            EmpaquetadorSession sesEmpaq = this.getEmpaquetadorSession(request);
            List idCollection = sesEmpaq.getIdCollection();
            String identificador = form.getIdentifier();
            String identificadorUltimo = sesEmpaq.getIdLocalizador();

            Object ultimoIdCollection = idCollection.get(idCollection.size() - 1);
            String identificadorPadre = "";
            GrupoVO[] grupos = null;
            if (idCollection.size() == 1) {

                OrganizacionVO organizacion = (OrganizacionVO) ultimoIdCollection;
                grupos = organizacion.getGrupos();
                identificadorPadre = organizacion.getIdentifier();

            } else if (idCollection.size() > 1) {
                GrupoVO grupo = (GrupoVO) ultimoIdCollection;
                grupos = grupo.getGrupos();
                identificadorPadre = grupo.getIdentifier();
            }

            boolean encontrado = false;
            GrupoVO grupoBuscar = null;
            for (int i = 0; (encontrado == false && i < grupos.length); i++) {
                if (grupos[i].getIdentifier().equals(identificador)) {
                    encontrado = true;
                    grupoBuscar = grupos[i];
                }
            }
            if (form.isEsModificar() == true) {
                grupoBuscar.setTitle(form.getTitle());
                grupoBuscar.setIdentifier(identificador);
                this.getSrvGestorManifestService().modificarGrupo(identificadorUltimo, grupoBuscar);
            } else if (form.isEsModificar() == false) {
                grupoBuscar = new GrupoVO();
                grupoBuscar.setTitle(form.getTitle());
                grupoBuscar.setIdentifier(identificador);
                this.getSrvGestorManifestService().crearGrupo(identificadorUltimo, grupoBuscar, identificadorPadre);
            }
        }
    }

}