ScopeDel.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.scope;

  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.registry.Scope;
  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.  * ScopeDel
  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 ScopeDel 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.         String userLogin = ServletUtils.getUserLoginFromSession(session);  

  60.         try {
  61.             ScopeHelper scopeHelper = new ScopeHelper(request, pd, session);

  62.             String objToRemove =scopeHelper.getParameter(Costanti.PARAMETER_NAME_OBJECTS_FOR_REMOVE);
  63.             ArrayList<String> idsToRemove = Utilities.parseIdsToRemove(objToRemove);
  64.             ScopeCore scopeCore = new ScopeCore();

  65.            
  66.             StringBuilder inUsoMessage = new StringBuilder();
  67.            
  68.             boolean deleteAlmostOneScope = false;
  69.            
  70.             for (int i = 0; i < idsToRemove.size(); i++) {

  71.                 Scope scope = scopeCore.getScope(idsToRemove.get(i));
  72.                
  73.                 boolean deleted = ScopeUtilities.deleteScope(scope, userLogin, scopeCore, scopeHelper, inUsoMessage, org.openspcoop2.core.constants.Costanti.WEB_NEW_LINE);
  74.                 if(deleted) {
  75.                     deleteAlmostOneScope = true;
  76.                 }
  77.                
  78.             }// chiudo for
  79.            
  80.             if(deleteAlmostOneScope) {
  81.                 ServletUtils.removeRisultatiRicercaFromSession(request, session, Liste.SCOPE);
  82.             }
  83.            
  84.             if (inUsoMessage.length()>0) {
  85.                 pd.setMessage(inUsoMessage.toString());
  86.             }

  87.             // Preparo il menu
  88.             scopeHelper.makeMenu();

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

  91.             List<Scope> lista = null;
  92.             if(scopeCore.isVisioneOggettiGlobale(userLogin)){
  93.                 lista = scopeCore.scopeList(null, ricerca);
  94.             }else{
  95.                 lista = scopeCore.scopeList(userLogin, ricerca);
  96.             }
  97.            
  98.             scopeHelper.prepareScopeList(ricerca, lista);
  99.            
  100.             ServletUtils.setGeneralAndPageDataIntoSession(request, session, gd, pd);
  101.             // Forward control to the specified success URI
  102.             return ServletUtils.getStrutsForward (mapping,
  103.                     ScopeCostanti.OBJECT_NAME_SCOPE,
  104.                     ForwardParams.DEL());
  105.         } catch (Exception e) {
  106.             return ServletUtils.getStrutsForwardError(ControlStationCore.getLog(), e, pd, request, session, gd, mapping,
  107.                     ScopeCostanti.OBJECT_NAME_SCOPE, ForwardParams.DEL());
  108.         }
  109.     }
  110. }