PorteDelegateMTOMResponseDel.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.pd;

  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.MtomProcessor;
  32. import org.openspcoop2.core.config.MtomProcessorFlowParameter;
  33. import org.openspcoop2.core.config.PortaDelegata;
  34. import org.openspcoop2.web.ctrlstat.core.ControlStationCore;
  35. import org.openspcoop2.web.ctrlstat.core.ConsoleSearch;
  36. import org.openspcoop2.web.ctrlstat.core.Utilities;
  37. import org.openspcoop2.web.ctrlstat.servlet.GeneralHelper;
  38. import org.openspcoop2.web.lib.mvc.Costanti;
  39. import org.openspcoop2.web.lib.mvc.ForwardParams;
  40. import org.openspcoop2.web.lib.mvc.GeneralData;
  41. import org.openspcoop2.web.lib.mvc.PageData;
  42. import org.openspcoop2.web.lib.mvc.ServletUtils;

  43. /***
  44.  *
  45.  * PorteDelegateMTOMResponseDel
  46.  *
  47.  * @author Giuliano Pintori (pintori@link.it)
  48.  * @author $Author$
  49.  * @version $Rev$, $Date$
  50.  */
  51. public class PorteDelegateMTOMResponseDel  extends Action {

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

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

  55.         // Inizializzo PageData
  56.         PageData pd = new PageData();

  57.         GeneralHelper generalHelper = new GeneralHelper(session);

  58.         // Inizializzo GeneralData
  59.         GeneralData gd = generalHelper.initGeneralData(request);

  60.         try {
  61.             PorteDelegateHelper porteDelegateHelper = new PorteDelegateHelper(request, pd, session);
  62.             String id = porteDelegateHelper.getParameter(PorteDelegateCostanti.PARAMETRO_PORTE_DELEGATE_ID);
  63.             int idInt = Integer.parseInt(id);
  64.             String objToRemove = porteDelegateHelper.getParameter(Costanti.PARAMETER_NAME_OBJECTS_FOR_REMOVE);
  65.             ArrayList<String> idsToRemove = Utilities.parseIdsToRemove(objToRemove);
  66.             // Elimino i message-security della porta delegata dal db
  67.             String nome = "";
  68.    
  69.             // Prendo la porta delegata
  70.             PorteDelegateCore porteDelegateCore = new PorteDelegateCore();
  71.             PortaDelegata pde = porteDelegateCore.getPortaDelegata(idInt);
  72.             MtomProcessor mtomProcessor  = pde.getMtomProcessor();
  73.    
  74.             for (int i = 0; i < idsToRemove.size(); i++) {
  75.    
  76.                 nome = idsToRemove.get(i);
  77.    
  78.                 if(mtomProcessor.getResponseFlow()!=null){
  79.                     List<MtomProcessorFlowParameter> wsrfpArray = mtomProcessor.getResponseFlow().getParameterList();
  80.                     for (int j = 0; j < wsrfpArray.size(); j++) {
  81.                         MtomProcessorFlowParameter wsrfp = wsrfpArray.get(j);
  82.                         if (nome.equals(wsrfp.getNome())) {
  83.                             mtomProcessor.getResponseFlow().removeParameter(j);
  84.                             break;
  85.                         }
  86.                     }
  87.                 }
  88.             }
  89.    
  90.             pde.setMtomProcessor(mtomProcessor);
  91.    
  92.             String userLogin = ServletUtils.getUserLoginFromSession(session);
  93.             porteDelegateCore.performUpdateOperation(userLogin, porteDelegateHelper.smista(), pde);
  94.    
  95.             // Preparo il menu
  96.             porteDelegateHelper.makeMenu();
  97.    
  98.             // Preparo la lista
  99.             ConsoleSearch ricerca = (ConsoleSearch) ServletUtils.getSearchObjectFromSession(request, session, ConsoleSearch.class);
  100.    
  101.             int idLista = Liste.PORTE_DELEGATE_MTOM_RESPONSE;
  102.    
  103.             ricerca = porteDelegateHelper.checkSearchParameters(idLista, ricerca);
  104.    
  105.             List<MtomProcessorFlowParameter> lista = porteDelegateCore.porteDelegateMTOMResponseList(Integer.parseInt(id), ricerca);
  106.    
  107.             porteDelegateHelper.preparePorteDelegateMTOMResponseList(pde.getNome(), ricerca, lista);
  108.    
  109.             ServletUtils.setGeneralAndPageDataIntoSession(request, session, gd, pd);
  110.            
  111.             // Forward control to the specified success URI
  112.             return ServletUtils.getStrutsForward(mapping, PorteDelegateCostanti.OBJECT_NAME_PORTE_DELEGATE_MTOM_RESPONSE,
  113.                     ForwardParams.DEL());
  114.         } catch (Exception e) {
  115.             return ServletUtils.getStrutsForwardError(ControlStationCore.getLog(), e, pd, request, session, gd, mapping,
  116.                     PorteDelegateCostanti.OBJECT_NAME_PORTE_DELEGATE_MTOM_RESPONSE,
  117.                     ForwardParams.DEL());
  118.         }
  119.     }

  120. }