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

  41. /**
  42.  * PorteDelegateScopeDel
  43.  *
  44.  * @author Andrea Poli (apoli@link.it)
  45.  * @author Giuliano Pintori (pintori@link.it)
  46.  * @author $Author$
  47.  * @version $Rev$, $Date$
  48.  *
  49.  */
  50. public final class PorteDelegateScopeDel extends Action {

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

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

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

  56.         GeneralHelper generalHelper = new GeneralHelper(session);

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

  59.         try {
  60.             PorteDelegateHelper porteDelegateHelper = new PorteDelegateHelper(request, pd, session);
  61.             String id = porteDelegateHelper.getParameter(PorteDelegateCostanti.PARAMETRO_PORTE_DELEGATE_ID);
  62.             int idInt = Integer.parseInt(id);
  63.             String objToRemove = porteDelegateHelper.getParameter(Costanti.PARAMETER_NAME_OBJECTS_FOR_REMOVE);
  64.             ArrayList<String> idsToRemove = Utilities.parseIdsToRemove(objToRemove);
  65.             // Elimino il servizioApplicativo della porta delegata dal db
  66.             // StringTokenizer objTok = new StringTokenizer(objToRemove, ",");
  67.             // int[] idToRemove = new int[objTok.countTokens()];
  68.             //
  69.             // int k = 0;
  70.             // while (objTok.hasMoreElements()) {
  71.             // idToRemove[k++] = Integer.parseInt(objTok.nextToken());
  72.             // }

  73.             // Prendo la porta delegata
  74.             PorteDelegateCore porteDelegateCore = new PorteDelegateCore();
  75.             PortaDelegata pde = porteDelegateCore.getPortaDelegata(idInt);

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

  77.                 String scope = idsToRemove.get(i);
  78.                
  79.                 for (int j = 0; j < pde.getScope().sizeScopeList(); j++) {
  80.                     if(pde.getScope().getScope(j).getNome().equals(scope)){
  81.                         pde.getScope().removeScope(j);
  82.                         break;
  83.                     }
  84.                 }
  85.             }

  86.             String userLogin = ServletUtils.getUserLoginFromSession(session);
  87.            
  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_SCOPE;

  94.             ricerca = porteDelegateHelper.checkSearchParameters(idLista, ricerca);
  95.            
  96.             List<String> lista = porteDelegateCore.portaDelegataScopeList(Integer.parseInt(id), ricerca);

  97.             porteDelegateHelper.preparePorteDelegateScopeList(pde.getNome(), ricerca, lista);

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

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