PorteApplicativeTrasformazioniServizioApplicativoAutorizzatoDel.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.pa;

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

  45. /**
  46.  * porteAppServizioApplicativoDel
  47.  *
  48.  * @author Andrea Poli (apoli@link.it)
  49.  * @author Stefano Corallo (corallo@link.it)
  50.  * @author Sandra Giangrandi (sandra@link.it)
  51.  * @author $Author$
  52.  * @version $Rev$, $Date$
  53.  *
  54.  */
  55. public final class PorteApplicativeTrasformazioniServizioApplicativoAutorizzatoDel extends Action {

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

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

  59.         // Inizializzo PageData
  60.         PageData pd = new PageData();

  61.         GeneralHelper generalHelper = new GeneralHelper(session);

  62.         // Inizializzo GeneralData
  63.         GeneralData gd = generalHelper.initGeneralData(request);

  64.      

  65.         try {
  66.             PorteApplicativeHelper porteApplicativeHelper = new PorteApplicativeHelper(request, pd, session);
  67.             String idPorta = porteApplicativeHelper.getParameter(PorteApplicativeCostanti.PARAMETRO_PORTE_APPLICATIVE_ID);
  68.             int idInt = Integer.parseInt(idPorta);
  69.             String objToRemove = porteApplicativeHelper.getParameter(Costanti.PARAMETER_NAME_OBJECTS_FOR_REMOVE);
  70.             ArrayList<String> idsToRemove = Utilities.parseIdsToRemove(objToRemove);
  71.            
  72.             String idTrasformazioneS = porteApplicativeHelper.getParameter(PorteApplicativeCostanti.PARAMETRO_PORTE_APPLICATIVE_ID_TRASFORMAZIONE);
  73.             long idTrasformazione = Long.parseLong(idTrasformazioneS);

  74.             String sa = "";

  75.             // Prendo la porta applicativa
  76.             PorteApplicativeCore porteApplicativeCore = new PorteApplicativeCore();
  77.             PortaApplicativa portaApplicativa = porteApplicativeCore.getPortaApplicativa(idInt);
  78.             Trasformazioni trasformazioni = portaApplicativa.getTrasformazioni();
  79.             TrasformazioneRegola regola = null;
  80.             for (TrasformazioneRegola reg : trasformazioni.getRegolaList()) {
  81.                 if(reg.getId().longValue() == idTrasformazione) {
  82.                     regola = reg;
  83.                     break;
  84.                 }
  85.             }
  86.             if(regola==null) {
  87.                 throw new Exception("TrasformazioneRegola con id '"+idTrasformazione+"' non trovata");
  88.             }
  89.            
  90.             TrasformazioneRegolaApplicabilitaRichiesta applicabilita = regola.getApplicabilita();

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

  92.                 sa = idsToRemove.get(i);
  93.                 for (int j = 0; j < applicabilita.sizeServizioApplicativoList(); j++) {
  94.                     TrasformazioneRegolaApplicabilitaServizioApplicativo saAutorizzato = applicabilita.getServizioApplicativo(j);
  95.                     String idSaAutorizzato = saAutorizzato.getNome()+"@"+saAutorizzato.getTipoSoggettoProprietario() + "/" + saAutorizzato.getNomeSoggettoProprietario();
  96.                     if (sa.equals(idSaAutorizzato)) {
  97.                         applicabilita.removeServizioApplicativo(j);
  98.                         break;
  99.                     }
  100.                 }
  101.             }

  102.             String userLogin = ServletUtils.getUserLoginFromSession(session);
  103.            
  104.             porteApplicativeCore.performUpdateOperation(userLogin, porteApplicativeHelper.smista(), portaApplicativa);
  105.            
  106.             // ricaricare id trasformazione
  107.             portaApplicativa = porteApplicativeCore.getPortaApplicativa(Long.parseLong(idPorta));
  108.    
  109.             TrasformazioneRegola trasformazioneAggiornata = porteApplicativeCore.getTrasformazione(Long.parseLong(idPorta), regola.getNome());


  110.             // Preparo il menu
  111.             porteApplicativeHelper.makeMenu();

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

  114.             int idLista = Liste.PORTE_APPLICATIVE_TRASFORMAZIONI_SERVIZIO_APPLICATIVO_AUTORIZZATO;

  115.             ricerca = porteApplicativeHelper.checkSearchParameters(idLista, ricerca);
  116.            
  117.             List<TrasformazioneRegolaApplicabilitaServizioApplicativo> lista = porteApplicativeCore.porteAppTrasformazioniServiziApplicativiAutorizzatiList(Integer.parseInt(idPorta), trasformazioneAggiornata.getId(), ricerca);
  118.            
  119.             porteApplicativeHelper.preparePorteAppTrasformazioniServizioApplicativoAutorizzatoList(portaApplicativa.getNome(), trasformazioneAggiornata.getId(), ricerca, lista);

  120.             ServletUtils.setGeneralAndPageDataIntoSession(request, session, gd, pd);
  121.             // Forward control to the specified success URI
  122.             return ServletUtils.getStrutsForward (mapping, PorteApplicativeCostanti.OBJECT_NAME_PORTE_APPLICATIVE_TRASFORMAZIONI_SERVIZIO_APPLICATIVO_AUTORIZZATO,
  123.                     ForwardParams.DEL());
  124.         } catch (Exception e) {
  125.             return ServletUtils.getStrutsForwardError(ControlStationCore.getLog(), e, pd, request, session, gd, mapping,
  126.                     PorteApplicativeCostanti.OBJECT_NAME_PORTE_APPLICATIVE_TRASFORMAZIONI_SERVIZIO_APPLICATIVO_AUTORIZZATO,
  127.                     ForwardParams.DEL());
  128.         }  
  129.     }
  130. }