PorteDelegateWSResponseDel.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.PortaDelegata;
  32. import org.openspcoop2.core.config.MessageSecurity;
  33. import org.openspcoop2.core.config.MessageSecurityFlowParameter;
  34. import org.openspcoop2.web.ctrlstat.core.ControlStationCore;
  35. import org.openspcoop2.web.ctrlstat.core.Utilities;
  36. import org.openspcoop2.web.ctrlstat.servlet.GeneralHelper;
  37. import org.openspcoop2.web.ctrlstat.core.ConsoleSearch;
  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.  * porteDelegateWSResponseDel
  45.  *
  46.  * @author Andrea Poli (apoli@link.it)
  47.  * @author Stefano Corallo (corallo@link.it)
  48.  * @author Sandra Giangrandi (sandra@link.it)
  49.  * @author $Author$
  50.  * @version $Rev$, $Date$
  51.  *
  52.  */
  53. public final class PorteDelegateWSResponseDel extends Action {

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

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

  57.         // Inizializzo PageData
  58.         PageData pd = new PageData();

  59.         GeneralHelper generalHelper = new GeneralHelper(session);

  60.         // Inizializzo GeneralData
  61.         GeneralData gd = generalHelper.initGeneralData(request);

  62.         try {
  63.             PorteDelegateHelper porteDelegateHelper = new PorteDelegateHelper(request, pd, session);
  64.             String id = porteDelegateHelper.getParameter(PorteDelegateCostanti.PARAMETRO_PORTE_DELEGATE_ID);
  65.             int idInt = Integer.parseInt(id);
  66.             String objToRemove = porteDelegateHelper.getParameter(Costanti.PARAMETER_NAME_OBJECTS_FOR_REMOVE);
  67.             ArrayList<String> idsToRemove = Utilities.parseIdsToRemove(objToRemove);

  68.             String nome = "";

  69.             // Prendo la porta delegata
  70.             PorteDelegateCore porteDelegateCore = new PorteDelegateCore();
  71.             PortaDelegata pde = porteDelegateCore.getPortaDelegata(idInt);
  72.             MessageSecurity ws = pde.getMessageSecurity();

  73.             for (int i = 0; i < idsToRemove.size(); i++) {

  74.                 nome = idsToRemove.get(i);

  75.                 if(ws.getResponseFlow()!=null){
  76.                     List<MessageSecurityFlowParameter> wsrfpArray = ws.getResponseFlow().getParameterList();
  77.                     for (int j = 0; j < wsrfpArray.size(); j++) {
  78.                         MessageSecurityFlowParameter wsrfp = wsrfpArray.get(j);
  79.                         if (nome.equals(wsrfp.getNome())) {
  80.                             ws.getResponseFlow().removeParameter(j);
  81.                             break;
  82.                         }
  83.                     }
  84.                 }
  85.             }

  86.             pde.setMessageSecurity(ws);

  87.             String userLogin = ServletUtils.getUserLoginFromSession(session);
  88.             porteDelegateCore.performUpdateOperation(userLogin, porteDelegateHelper.smista(), pde);

  89.             // Preparo il menu
  90.             porteDelegateHelper.makeMenu();

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

  93.             int idLista = Liste.PORTE_DELEGATE_MESSAGE_SECURITY_RESPONSE;

  94.             ricerca = porteDelegateHelper.checkSearchParameters(idLista, ricerca);

  95.             List<MessageSecurityFlowParameter> lista = porteDelegateCore.porteDelegateMessageSecurityResponseList(Integer.parseInt(id), ricerca);

  96.             porteDelegateHelper.preparePorteDelegateMessageSecurityResponseList(pde.getNome(), ricerca, lista);

  97.             ServletUtils.setGeneralAndPageDataIntoSession(request, session, gd, pd);

  98.             // Forward control to the specified success URI
  99.             return ServletUtils.getStrutsForward(mapping, PorteDelegateCostanti.OBJECT_NAME_PORTE_DELEGATE_MESSAGE_SECURITY_RESPONSE,
  100.                     ForwardParams.DEL());
  101.         } catch (Exception e) {
  102.             return ServletUtils.getStrutsForwardError(ControlStationCore.getLog(), e, pd, request, session, gd, mapping,
  103.                     PorteDelegateCostanti.OBJECT_NAME_PORTE_DELEGATE_MESSAGE_SECURITY_RESPONSE,
  104.                     ForwardParams.DEL());
  105.         }
  106.     }
  107. }