ScopeCore.java
/*
* GovWay - A customizable API Gateway
* https://govway.org
*
* Copyright (c) 2005-2024 Link.it srl (https://link.it).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3, as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package org.openspcoop2.web.ctrlstat.servlet.scope;
import java.sql.Connection;
import java.util.EnumMap;
import java.util.List;
import java.util.Map;
import org.openspcoop2.core.commons.ErrorsHandlerCostant;
import org.openspcoop2.core.commons.ISearch;
import org.openspcoop2.core.config.driver.DriverConfigurazioneException;
import org.openspcoop2.core.id.IDScope;
import org.openspcoop2.core.registry.Scope;
import org.openspcoop2.core.registry.driver.DriverRegistroServiziNotFound;
import org.openspcoop2.protocol.engine.utils.DBOggettiInUsoUtils;
import org.openspcoop2.web.ctrlstat.core.ControlStationCore;
import org.openspcoop2.web.ctrlstat.driver.DriverControlStationDB;
/**
* ScopeCore
*
* @author Poli Andrea (apoli@link.it)
* @author Giuliano Pintori (pintori@link.it)
* @author $Author$
* @version $Rev$, $Date$
*/
public class ScopeCore extends ControlStationCore {
public ScopeCore() throws Exception {
super();
}
public ScopeCore(ControlStationCore core) throws Exception {
super(core);
}
public List<Scope> scopeList(String superuser,ISearch ricerca) throws DriverConfigurazioneException {
Connection con = null;
String nomeMetodo = "scopeList";
DriverControlStationDB driver = null;
try {
// prendo una connessione
con = ControlStationCore.dbM.getConnection();
// istanzio il driver
driver = new DriverControlStationDB(con, null, this.tipoDB);
return driver.getDriverRegistroServiziDB().scopeList(superuser, ricerca);
} catch (Exception e) {
ControlStationCore.logError(getPrefixError(nomeMetodo, e), e);
throw new DriverConfigurazioneException(getPrefixError(nomeMetodo, e),e);
} finally {
ControlStationCore.dbM.releaseConnection(con);
}
}
public Scope getScope(long id) throws DriverConfigurazioneException {
Connection con = null;
String nomeMetodo = "getScope";
DriverControlStationDB driver = null;
try {
// prendo una connessione
con = ControlStationCore.dbM.getConnection();
// istanzio il driver
driver = new DriverControlStationDB(con, null, this.tipoDB);
return driver.getDriverRegistroServiziDB().getScope(id);
} catch (Exception e) {
ControlStationCore.logError(getPrefixError(nomeMetodo, e), e);
throw new DriverConfigurazioneException(getPrefixError(nomeMetodo, e),e);
} finally {
ControlStationCore.dbM.releaseConnection(con);
}
}
public Scope getScope(String nome) throws DriverConfigurazioneException {
Connection con = null;
String nomeMetodo = "getScope";
DriverControlStationDB driver = null;
try {
// prendo una connessione
con = ControlStationCore.dbM.getConnection();
// istanzio il driver
driver = new DriverControlStationDB(con, null, this.tipoDB);
IDScope idScope = new IDScope(nome);
return driver.getDriverRegistroServiziDB().getScope(idScope);
} catch (DriverRegistroServiziNotFound e) {
// Lasciare DEBUG, usato anche in servizio API RS
ControlStationCore.logDebug("[ControlStationCore::" + nomeMetodo + "] NotFound :" + e.getMessage(), e);
throw new DriverConfigurazioneException("[ControlStationCore::" + nomeMetodo + "] NotFound :" + e.getMessage(),e);
} catch (Exception e) {
ControlStationCore.logError(getPrefixError(nomeMetodo, e), e);
throw new DriverConfigurazioneException(getPrefixError(nomeMetodo, e),e);
} finally {
ControlStationCore.dbM.releaseConnection(con);
}
}
public boolean existsScope(String nome) throws DriverConfigurazioneException {
Connection con = null;
String nomeMetodo = "existsScope";
DriverControlStationDB driver = null;
try {
// prendo una connessione
con = ControlStationCore.dbM.getConnection();
// istanzio il driver
driver = new DriverControlStationDB(con, null, this.tipoDB);
IDScope idScope = new IDScope(nome);
return driver.getDriverRegistroServiziDB().existsScope(idScope);
} catch (Exception e) {
ControlStationCore.logError(getPrefixError(nomeMetodo, e), e);
throw new DriverConfigurazioneException(getPrefixError(nomeMetodo, e),e);
} finally {
ControlStationCore.dbM.releaseConnection(con);
}
}
public boolean isScopeInUso(String scope, Map<ErrorsHandlerCostant, List<String>> whereIsInUso, boolean normalizeObjectIds) throws DriverConfigurazioneException {
Connection con = null;
String nomeMetodo = "isScopeInUso";
DriverControlStationDB driver = null;
try {
// prendo una connessione
con = ControlStationCore.dbM.getConnection();
// istanzio il driver
driver = new DriverControlStationDB(con, null, this.tipoDB);
return driver.isScopeInUso(new IDScope(scope), whereIsInUso, normalizeObjectIds);
} catch (Exception e) {
ControlStationCore.logError(getPrefixError(nomeMetodo, e), e);
throw new DriverConfigurazioneException(getPrefixError(nomeMetodo, e),e);
} finally {
ControlStationCore.dbM.releaseConnection(con);
}
}
public boolean isScopeConfigInUso(String scope, Map<ErrorsHandlerCostant, List<String>> whereIsInUso, boolean normalizeObjectIds) throws DriverConfigurazioneException {
Connection con = null;
String nomeMetodo = "isScopeConfigInUso";
DriverControlStationDB driver = null;
try {
// prendo una connessione
con = ControlStationCore.dbM.getConnection();
// istanzio il driver
driver = new DriverControlStationDB(con, null, this.tipoDB);
return driver.isScopeConfigInUso(new IDScope(scope), whereIsInUso, normalizeObjectIds);
} catch (Exception e) {
ControlStationCore.logError(getPrefixError(nomeMetodo, e), e);
throw new DriverConfigurazioneException(getPrefixError(nomeMetodo, e),e);
} finally {
ControlStationCore.dbM.releaseConnection(con);
}
}
public String getDettagliScopeInUso(IDScope scope) throws DriverConfigurazioneException {
EnumMap<ErrorsHandlerCostant, List<String>> whereIsInUso = new EnumMap<>(ErrorsHandlerCostant.class);
boolean normalizeObjectIds = true;
boolean saInUso = this.isScopeConfigInUso(scope.getNome(), whereIsInUso, normalizeObjectIds );
StringBuilder inUsoMessage = new StringBuilder();
if(saInUso) {
String s = DBOggettiInUsoUtils.toString(scope, whereIsInUso, false, "\n");
if(s!=null && s.startsWith("\n") && s.length()>1) {
s = s.substring(1);
}
inUsoMessage.append(s);
inUsoMessage.append("\n");
} else {
inUsoMessage.append(ScopeCostanti.LABEL_IN_USO_BODY_HEADER_NESSUN_RISULTATO);
}
return inUsoMessage.toString();
}
}