PorteApplicativeConnettoriMultipliProprietaDel.java

  1. /*
  2.  * GovWay - A customizable API Gateway
  3.  * https://govway.org
  4.  *
  5.  * Copyright (c) 2005-2025 Link.it srl (https://link.it).
  6.  *
  7.  * This program is free software: you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License version 3, as published by
  9.  * the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  18.  *
  19.  */


  20. package org.openspcoop2.web.ctrlstat.servlet.pa;

  21. import java.util.ArrayList;
  22. import java.util.List;

  23. import javax.servlet.http.HttpServletRequest;
  24. import javax.servlet.http.HttpServletResponse;
  25. import javax.servlet.http.HttpSession;

  26. import org.apache.struts.action.Action;
  27. import org.apache.struts.action.ActionForm;
  28. import org.apache.struts.action.ActionForward;
  29. import org.apache.struts.action.ActionMapping;
  30. import org.openspcoop2.core.commons.Liste;
  31. import org.openspcoop2.core.config.PortaApplicativa;
  32. import org.openspcoop2.core.config.PortaApplicativaServizioApplicativo;
  33. import org.openspcoop2.core.config.Proprieta;
  34. import org.openspcoop2.core.config.ProprietaOggetto;
  35. import org.openspcoop2.utils.date.DateManager;
  36. import org.openspcoop2.web.ctrlstat.core.ControlStationCore;
  37. import org.openspcoop2.web.ctrlstat.core.ControlStationCoreException;
  38. import org.openspcoop2.web.ctrlstat.core.ConsoleSearch;
  39. import org.openspcoop2.web.ctrlstat.core.Utilities;
  40. import org.openspcoop2.web.ctrlstat.servlet.GeneralHelper;
  41. import org.openspcoop2.web.lib.mvc.Costanti;
  42. import org.openspcoop2.web.lib.mvc.ForwardParams;
  43. import org.openspcoop2.web.lib.mvc.GeneralData;
  44. import org.openspcoop2.web.lib.mvc.PageData;
  45. import org.openspcoop2.web.lib.mvc.ServletUtils;

  46. /**
  47.  * PorteApplicativeConnettoriMultipliConfigProprietaDel
  48.  *
  49.  * @author Andrea Poli (apoli@link.it)
  50.  * @author Giuliano Pintori (pintori@link.it)
  51.  * @author $Author$
  52.  * @version $Rev$, $Date$
  53.  *
  54.  */
  55. public final class PorteApplicativeConnettoriMultipliProprietaDel extends Action {

  56.     @Override
  57.     public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {

  58.         HttpSession session = request.getSession(true);

  59.         // Inizializzo PageData
  60.         PageData pd = new PageData();

  61.         GeneralHelper generalHelper = new GeneralHelper(session);

  62.         // Inizializzo GeneralData
  63.         GeneralData gd = generalHelper.initGeneralData(request);

  64.      

  65.         try {
  66.             PorteApplicativeHelper porteApplicativeHelper = new PorteApplicativeHelper(request, pd, session);
  67.             String idPorta = porteApplicativeHelper.getParameter(PorteApplicativeCostanti.PARAMETRO_PORTE_APPLICATIVE_ID);
  68.             String nomeSAConnettore = porteApplicativeHelper.getParameter(PorteApplicativeCostanti.PARAMETRO_PORTE_APPLICATIVE_CONNETTORI_MULTIPLI_NOME_SA);
  69.             int idInt = Integer.parseInt(idPorta);
  70.             String objToRemove = porteApplicativeHelper.getParameter(Costanti.PARAMETER_NAME_OBJECTS_FOR_REMOVE);
  71.             ArrayList<String> idsToRemove = Utilities.parseIdsToRemove(objToRemove);

  72.            
  73.             // Prendo la porta applicativa
  74.             PorteApplicativeCore porteApplicativeCore = new PorteApplicativeCore();
  75.             PortaApplicativa pa = porteApplicativeCore.getPortaApplicativa(idInt);
  76.             PortaApplicativaServizioApplicativo oldPaSA = null;
  77.             for (PortaApplicativaServizioApplicativo paSATmp : pa.getServizioApplicativoList()) {
  78.                 if(paSATmp.getNome().equals(nomeSAConnettore)) {
  79.                     oldPaSA = paSATmp;
  80.                     break;
  81.                 }
  82.             }
  83.             if(oldPaSA==null) {
  84.                 throw new ControlStationCoreException("PortaApplicativaServizioApplicativo con nome '"+nomeSAConnettore+"' non trovato");
  85.             }
  86.            
  87.             String userLogin = ServletUtils.getUserLoginFromSession(session);
  88.            
  89.             for (int i = 0; i < idsToRemove.size(); i++) {

  90.                 Long idToRemove = Long.parseLong(idsToRemove.get(i));
  91.                
  92.                 for (int j = 0; j < oldPaSA.getDatiConnettore().sizeProprietaList(); j++) {
  93.                     if(oldPaSA.getDatiConnettore().getProprieta(j).getId().longValue() == idToRemove.longValue()){
  94.                         oldPaSA.getDatiConnettore().removeProprieta(j);
  95.                        
  96.                         if(oldPaSA.getDatiConnettore().getProprietaOggetto()==null) {
  97.                             oldPaSA.getDatiConnettore().setProprietaOggetto(new ProprietaOggetto());
  98.                         }
  99.                         oldPaSA.getDatiConnettore().getProprietaOggetto().setUtenteUltimaModifica(userLogin);
  100.                         oldPaSA.getDatiConnettore().getProprietaOggetto().setDataUltimaModifica(DateManager.getDate());
  101.                        
  102.                         break;
  103.                     }
  104.                 }
  105.             }

  106.             porteApplicativeCore.performUpdateOperation(userLogin, porteApplicativeHelper.smista(), pa);
  107.            
  108.             ServletUtils.removeRisultatiRicercaFromSession(request, session, Liste.PORTE_APPLICATIVE_CONNETTORI_MULTIPLI);

  109.             // Preparo il menu
  110.             porteApplicativeHelper.makeMenu();
  111.            
  112.             pa = porteApplicativeCore.getPortaApplicativa(idInt);
  113.             oldPaSA = null;
  114.             for (PortaApplicativaServizioApplicativo paSATmp : pa.getServizioApplicativoList()) {
  115.                 if(paSATmp.getNome().equals(nomeSAConnettore)) {
  116.                     oldPaSA = paSATmp;                  
  117.                 }
  118.             }

  119.             if(oldPaSA==null) {
  120.                 throw new ControlStationCoreException("Connettore '"+nomeSAConnettore+"' non trovato");
  121.             }
  122.            
  123.             long idPaSa = oldPaSA.getId();

  124.             // Preparo la lista
  125.             ConsoleSearch ricerca = (ConsoleSearch) ServletUtils.getSearchObjectFromSession(request, session, ConsoleSearch.class);

  126.             int idLista = Liste.PORTE_APPLICATIVE_CONNETTORI_MULTIPLI_PROPRIETA;

  127.             ricerca = porteApplicativeHelper.checkSearchParameters(idLista, ricerca);
  128.            
  129.             List<Proprieta> lista = porteApplicativeCore.porteApplicativeConnettoriMultipliPropList(idPaSa, ricerca);

  130.             porteApplicativeHelper.preparePorteApplicativeConnettoriMultipliPropList(pa.getNome(), ricerca, lista);

  131.             ServletUtils.setGeneralAndPageDataIntoSession(request, session, gd, pd);
  132.             // Forward control to the specified success URI
  133.             return ServletUtils.getStrutsForward (mapping, PorteApplicativeCostanti.OBJECT_NAME_PORTE_APPLICATIVE_CONNETTORI_MULTIPLI_PROPERTIES,
  134.                     ForwardParams.DEL());
  135.         } catch (Exception e) {
  136.             return ServletUtils.getStrutsForwardError(ControlStationCore.getLog(), e, pd, request, session, gd, mapping,
  137.                     PorteApplicativeCostanti.OBJECT_NAME_PORTE_APPLICATIVE_CONNETTORI_MULTIPLI_PROPERTIES,
  138.                     ForwardParams.DEL());
  139.         }  
  140.     }
  141. }