PluginFieldConverter.java
- /*
- * GovWay - A customizable API Gateway
- * https://govway.org
- *
- * Copyright (c) 2005-2025 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.core.plugins.dao.jdbc.converter;
- import org.openspcoop2.core.constants.CostantiDB;
- import org.openspcoop2.generic_project.beans.IField;
- import org.openspcoop2.generic_project.beans.IModel;
- import org.openspcoop2.generic_project.exception.ExpressionException;
- import org.openspcoop2.generic_project.expression.impl.sql.AbstractSQLFieldConverter;
- import org.openspcoop2.utils.TipiDatabase;
- import org.openspcoop2.core.plugins.Plugin;
- /**
- * PluginFieldConverter
- *
- * @author Poli Andrea (poli@link.it)
- * @author $Author$
- * @version $Rev$, $Date$
- */
- public class PluginFieldConverter extends AbstractSQLFieldConverter {
- private TipiDatabase databaseType;
-
- public PluginFieldConverter(String databaseType){
- this.databaseType = TipiDatabase.toEnumConstant(databaseType);
- }
- public PluginFieldConverter(TipiDatabase databaseType){
- this.databaseType = databaseType;
- }
- @Override
- public IModel<?> getRootModel() throws ExpressionException {
- return Plugin.model();
- }
-
- @Override
- public TipiDatabase getDatabaseType() throws ExpressionException {
- return this.databaseType;
- }
-
- @Override
- public String toColumn(IField field,boolean returnAlias,boolean appendTablePrefix) throws ExpressionException {
-
- // In the case of columns with alias, using parameter returnAlias,
- // it is possible to drive the choice whether to return only the alias or
- // the full definition of the column containing the alias
-
- if(field.equals(Plugin.model().TIPO_PLUGIN)){
- if(appendTablePrefix){
- return this.toAliasTable(field)+".tipo_plugin";
- }else{
- return "tipo_plugin";
- }
- }
- if(field.equals(Plugin.model().CLASS_NAME)){
- if(appendTablePrefix){
- return this.toAliasTable(field)+".class_name";
- }else{
- return "class_name";
- }
- }
- if(field.equals(Plugin.model().TIPO)){
- if(appendTablePrefix){
- return this.toAliasTable(field)+".tipo";
- }else{
- return "tipo";
- }
- }
- if(field.equals(Plugin.model().DESCRIZIONE)){
- if(appendTablePrefix){
- return this.toAliasTable(field)+".descrizione";
- }else{
- return "descrizione";
- }
- }
- if(field.equals(Plugin.model().LABEL)){
- if(appendTablePrefix){
- return this.toAliasTable(field)+".label";
- }else{
- return "label";
- }
- }
- if(field.equals(Plugin.model().STATO)){
- if(appendTablePrefix){
- return this.toAliasTable(field)+".stato";
- }else{
- return "stato";
- }
- }
- if(field.equals(Plugin.model().PLUGIN_SERVIZIO_COMPATIBILITA.URI_ACCORDO)){
- if(appendTablePrefix){
- return this.toAliasTable(field)+".uri_accordo";
- }else{
- return "uri_accordo";
- }
- }
- if(field.equals(Plugin.model().PLUGIN_SERVIZIO_COMPATIBILITA.SERVIZIO)){
- if(appendTablePrefix){
- return this.toAliasTable(field)+".servizio";
- }else{
- return "servizio";
- }
- }
- if(field.equals(Plugin.model().PLUGIN_SERVIZIO_COMPATIBILITA.PLUGIN_SERVIZIO_AZIONE_COMPATIBILITA.AZIONE)){
- if(appendTablePrefix){
- return this.toAliasTable(field)+".azione";
- }else{
- return "azione";
- }
- }
- if(field.equals(Plugin.model().PLUGIN_PROPRIETA_COMPATIBILITA.NOME)){
- if(appendTablePrefix){
- return this.toAliasTable(field)+".nome";
- }else{
- return "nome";
- }
- }
- if(field.equals(Plugin.model().PLUGIN_PROPRIETA_COMPATIBILITA.VALORE)){
- if(appendTablePrefix){
- return this.toAliasTable(field)+".valore";
- }else{
- return "valore";
- }
- }
- return super.toColumn(field,returnAlias,appendTablePrefix);
-
- }
-
- @Override
- public String toTable(IField field,boolean returnAlias) throws ExpressionException {
-
- // In the case of table with alias, using parameter returnAlias,
- // it is possible to drive the choice whether to return only the alias or
- // the full definition of the table containing the alias
-
- if(field.equals(Plugin.model().TIPO_PLUGIN)){
- return this.toTable(Plugin.model(), returnAlias);
- }
- if(field.equals(Plugin.model().CLASS_NAME)){
- return this.toTable(Plugin.model(), returnAlias);
- }
- if(field.equals(Plugin.model().TIPO)){
- return this.toTable(Plugin.model(), returnAlias);
- }
- if(field.equals(Plugin.model().DESCRIZIONE)){
- return this.toTable(Plugin.model(), returnAlias);
- }
- if(field.equals(Plugin.model().LABEL)){
- return this.toTable(Plugin.model(), returnAlias);
- }
- if(field.equals(Plugin.model().STATO)){
- return this.toTable(Plugin.model(), returnAlias);
- }
- if(field.equals(Plugin.model().PLUGIN_SERVIZIO_COMPATIBILITA.URI_ACCORDO)){
- return this.toTable(Plugin.model().PLUGIN_SERVIZIO_COMPATIBILITA, returnAlias);
- }
- if(field.equals(Plugin.model().PLUGIN_SERVIZIO_COMPATIBILITA.SERVIZIO)){
- return this.toTable(Plugin.model().PLUGIN_SERVIZIO_COMPATIBILITA, returnAlias);
- }
- if(field.equals(Plugin.model().PLUGIN_SERVIZIO_COMPATIBILITA.PLUGIN_SERVIZIO_AZIONE_COMPATIBILITA.AZIONE)){
- return this.toTable(Plugin.model().PLUGIN_SERVIZIO_COMPATIBILITA.PLUGIN_SERVIZIO_AZIONE_COMPATIBILITA, returnAlias);
- }
- if(field.equals(Plugin.model().PLUGIN_PROPRIETA_COMPATIBILITA.NOME)){
- return this.toTable(Plugin.model().PLUGIN_PROPRIETA_COMPATIBILITA, returnAlias);
- }
- if(field.equals(Plugin.model().PLUGIN_PROPRIETA_COMPATIBILITA.VALORE)){
- return this.toTable(Plugin.model().PLUGIN_PROPRIETA_COMPATIBILITA, returnAlias);
- }
- return super.toTable(field,returnAlias);
-
- }
- @Override
- public String toTable(IModel<?> model,boolean returnAlias) throws ExpressionException {
-
- // In the case of table with alias, using parameter returnAlias,
- // it is possible to drive the choice whether to return only the alias or
- // the full definition of the table containing the alias
-
- if(model.equals(Plugin.model())){
- return CostantiDB.REGISTRO_CLASSI;
- }
- if(model.equals(Plugin.model().PLUGIN_SERVIZIO_COMPATIBILITA)){
- return CostantiDB.REGISTRO_CLASSI_COMPATIBILITA_SERVIZIO;
- }
- if(model.equals(Plugin.model().PLUGIN_SERVIZIO_COMPATIBILITA.PLUGIN_SERVIZIO_AZIONE_COMPATIBILITA)){
- return CostantiDB.REGISTRO_CLASSI_COMPATIBILITA_AZIONE;
- }
- if(model.equals(Plugin.model().PLUGIN_PROPRIETA_COMPATIBILITA)){
- return CostantiDB.REGISTRO_CLASSI_COMPATIBILITA_PROPRIETA;
- }
- return super.toTable(model,returnAlias);
-
- }
- }