PddSinglePdDDel.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.pdd;

  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.protocol.engine.utils.DBOggettiInUsoUtils;
  31. import org.openspcoop2.core.registry.PortaDominio;
  32. import org.openspcoop2.core.registry.constants.PddTipologia;
  33. import org.openspcoop2.web.ctrlstat.core.ControlStationCore;
  34. import org.openspcoop2.web.ctrlstat.core.Utilities;
  35. import org.openspcoop2.web.ctrlstat.dao.PdDControlStation;
  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.  * pddSinglePdDDel
  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 PddSinglePdDDel 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.         String userLogin = ServletUtils.getUserLoginFromSession(session);

  63.         try {
  64.             PddHelper pddHelper = new PddHelper(request, pd, session);

  65.             String objToRemove = pddHelper.getParameter(Costanti.PARAMETER_NAME_OBJECTS_FOR_REMOVE);
  66.             ArrayList<String> idsToRemove = Utilities.parseIdsToRemove(objToRemove);

  67.             PddCore pddCore = new PddCore();

  68.             // Preparo il menu
  69.             pddHelper.makeMenu();

  70.             PortaDominio pdd = null;
  71.             StringBuilder pddOperative = new StringBuilder();
  72.            
  73.             boolean isInUso = false;
  74.             String msg = "";
  75.            
  76.             for (int i = 0; i < idsToRemove.size(); i++) {
  77.                
  78.                 pdd = pddCore.getPortaDominio(idsToRemove.get(i));
  79.                 PdDControlStation pddControlStation = pddCore.getPdDControlStation(pdd.getNome());
  80.                
  81.                 if(PddTipologia.OPERATIVO.toString().equals(pddControlStation.getTipo())){
  82.                     if(pddOperative.length()>0)
  83.                         pddOperative.append(",");
  84.                     pddOperative.append(pddControlStation.getNome());
  85.                 }
  86.                 else{
  87.                     ArrayList<String> infos = new ArrayList<>();
  88.                     boolean normalizeObjectIds = !pddHelper.isModalitaCompleta();
  89.                     if (pddCore.isPddInUso(pddControlStation, infos, normalizeObjectIds)) {
  90.                         isInUso = true;
  91.                         msg += DBOggettiInUsoUtils.toString(pdd.getNome(), infos, true, org.openspcoop2.core.constants.Costanti.WEB_NEW_LINE);
  92.                         msg += org.openspcoop2.core.constants.Costanti.WEB_NEW_LINE;

  93.                     } else {
  94.                         pddCore.performDeleteOperation(userLogin, pddHelper.smista(), pdd);
  95.                     }
  96.                 }
  97.                
  98.             }
  99.            
  100.             if(pddOperative.length()>0){
  101.                 isInUso = true;
  102.                 msg += "La Porta di Dominio ["+pddOperative+"] è non rimuovibile poichè rappresenta la Porta di Dominio locale";
  103.                 msg += "<br>";
  104.             }
  105.            
  106.             if (isInUso) {
  107.                 pd.setMessage(msg);
  108.             }
  109.            

  110.             // preparo la lista
  111.             ConsoleSearch ricerca = (ConsoleSearch) ServletUtils.getSearchObjectFromSession(request, session,ConsoleSearch.class);

  112.             List<PdDControlStation> lista = null;
  113.             if(pddCore.isVisioneOggettiGlobale(userLogin)){
  114.                 lista = pddCore.pddList(null, ricerca);
  115.             }else{
  116.                 lista = pddCore.pddList(userLogin, ricerca);
  117.             }

  118.             pddHelper.preparePddSinglePddList(lista, ricerca);

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

  120.             // Forward control to the specified success URI
  121.             return ServletUtils.getStrutsForward(mapping, PddCostanti.OBJECT_NAME_PDD_SINGLEPDD, ForwardParams.DEL());

  122.         } catch (Exception e) {
  123.             return ServletUtils.getStrutsForwardError(ControlStationCore.getLog(), e, pd, request, session, gd, mapping,
  124.                     PddCostanti.OBJECT_NAME_PDD_SINGLEPDD, ForwardParams.DEL());
  125.         }
  126.     }
  127. }