FruitoreFieldConverter.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.core.commons.search.dao.jdbc.converter;
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.commons.search.Fruitore;
import org.openspcoop2.core.constants.CostantiDB;
/**
* FruitoreFieldConverter
*
* @author Poli Andrea (poli@link.it)
* @author $Author$
* @version $Rev$, $Date$
*/
public class FruitoreFieldConverter extends AbstractSQLFieldConverter {
private TipiDatabase databaseType;
public FruitoreFieldConverter(String databaseType){
this.databaseType = TipiDatabase.toEnumConstant(databaseType);
}
public FruitoreFieldConverter(TipiDatabase databaseType){
this.databaseType = databaseType;
}
@Override
public IModel<?> getRootModel() throws ExpressionException {
return Fruitore.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(Fruitore.model().ID_FRUITORE.TIPO)){
if(appendTablePrefix){
return this.toAliasTable(field)+".tipo_soggetto";
}else{
return "tipo_soggetto";
}
}
if(field.equals(Fruitore.model().ID_FRUITORE.NOME)){
if(appendTablePrefix){
return this.toAliasTable(field)+".nome_soggetto";
}else{
return "nome_soggetto";
}
}
if(field.equals(Fruitore.model().ID_ACCORDO_SERVIZIO_PARTE_SPECIFICA.TIPO)){
if(appendTablePrefix){
return this.toAliasTable(field)+".tipo_servizio";
}else{
return "tipo_servizio";
}
}
if(field.equals(Fruitore.model().ID_ACCORDO_SERVIZIO_PARTE_SPECIFICA.NOME)){
if(appendTablePrefix){
return this.toAliasTable(field)+".nome_servizio";
}else{
return "nome_servizio";
}
}
if(field.equals(Fruitore.model().ID_ACCORDO_SERVIZIO_PARTE_SPECIFICA.VERSIONE)){
if(appendTablePrefix){
return this.toAliasTable(field)+".versione_servizio";
}else{
return "versione_servizio";
}
}
if(field.equals(Fruitore.model().ID_ACCORDO_SERVIZIO_PARTE_SPECIFICA.ID_EROGATORE.TIPO)){
if(appendTablePrefix){
return this.toAliasTable(field)+".tipo_soggetto";
}else{
return "tipo_soggetto";
}
}
if(field.equals(Fruitore.model().ID_ACCORDO_SERVIZIO_PARTE_SPECIFICA.ID_EROGATORE.NOME)){
if(appendTablePrefix){
return this.toAliasTable(field)+".nome_soggetto";
}else{
return "nome_soggetto";
}
}
if(field.equals(Fruitore.model().ORA_REGISTRAZIONE)){
if(appendTablePrefix){
return this.toAliasTable(field)+".ora_registrazione";
}else{
return "ora_registrazione";
}
}
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(Fruitore.model().ID_FRUITORE.TIPO)){
return this.toTable(Fruitore.model().ID_FRUITORE, returnAlias);
}
if(field.equals(Fruitore.model().ID_FRUITORE.NOME)){
return this.toTable(Fruitore.model().ID_FRUITORE, returnAlias);
}
if(field.equals(Fruitore.model().ID_ACCORDO_SERVIZIO_PARTE_SPECIFICA.TIPO)){
return this.toTable(Fruitore.model().ID_ACCORDO_SERVIZIO_PARTE_SPECIFICA, returnAlias);
}
if(field.equals(Fruitore.model().ID_ACCORDO_SERVIZIO_PARTE_SPECIFICA.NOME)){
return this.toTable(Fruitore.model().ID_ACCORDO_SERVIZIO_PARTE_SPECIFICA, returnAlias);
}
if(field.equals(Fruitore.model().ID_ACCORDO_SERVIZIO_PARTE_SPECIFICA.VERSIONE)){
return this.toTable(Fruitore.model().ID_ACCORDO_SERVIZIO_PARTE_SPECIFICA, returnAlias);
}
if(field.equals(Fruitore.model().ID_ACCORDO_SERVIZIO_PARTE_SPECIFICA.ID_EROGATORE.TIPO)){
return this.toTable(Fruitore.model().ID_ACCORDO_SERVIZIO_PARTE_SPECIFICA.ID_EROGATORE, returnAlias);
}
if(field.equals(Fruitore.model().ID_ACCORDO_SERVIZIO_PARTE_SPECIFICA.ID_EROGATORE.NOME)){
return this.toTable(Fruitore.model().ID_ACCORDO_SERVIZIO_PARTE_SPECIFICA.ID_EROGATORE, returnAlias);
}
if(field.equals(Fruitore.model().ORA_REGISTRAZIONE)){
return this.toTable(Fruitore.model(), 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(Fruitore.model())){
return CostantiDB.SERVIZI_FRUITORI;
}
if(model.equals(Fruitore.model().ID_FRUITORE)){
if(returnAlias){
return "sfr";
}else{
return CostantiDB.SOGGETTI+" sfr";
}
}
if(model.equals(Fruitore.model().ID_ACCORDO_SERVIZIO_PARTE_SPECIFICA)){
return CostantiDB.SERVIZI;
}
if(model.equals(Fruitore.model().ID_ACCORDO_SERVIZIO_PARTE_SPECIFICA.ID_EROGATORE)){
if(returnAlias){
return "ser";
}else{
return CostantiDB.SOGGETTI+" ser";
}
}
return super.toTable(model,returnAlias);
}
}