AbstractSearchCredenziale.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.transazioni.utils.credenziali;

import org.openspcoop2.core.transazioni.CredenzialeMittente;
import org.openspcoop2.core.transazioni.dao.ICredenzialeMittenteService;
import org.openspcoop2.core.transazioni.utils.TipoCredenzialeMittente;
import org.openspcoop2.generic_project.exception.ExpressionException;
import org.openspcoop2.generic_project.exception.ExpressionNotImplementedException;
import org.openspcoop2.generic_project.expression.IPaginatedExpression;
import org.openspcoop2.generic_project.expression.LikeMode;
import org.openspcoop2.utils.UtilsException;

/**     
 * AbstractCredenziale
 *
 * @author Poli Andrea (poli@link.it)
 * @author $Author$
 * @version $Rev$, $Date$
 */
public abstract class AbstractSearchCredenziale {

	protected TipoCredenzialeMittente tipo;
	protected boolean convertToDBValue = true; // usato dalla console
	
	protected AbstractSearchCredenziale(TipoCredenzialeMittente tipo) { 
		this.tipo = tipo;
	}
	
	public void disableConvertToDBValue() {
		this.convertToDBValue = false; // usato dal gateway
	}
	
	public String getTipo() {
		return this.tipo.getRawValue();
	}
	public TipoCredenzialeMittente getTipoCredenzialeMittente() {
		return this.tipo;
	}
	
	protected abstract String getExactValueDatabase(String credentialParam, boolean ricercaEsatta) throws UtilsException;
	
	public IPaginatedExpression createExpression(ICredenzialeMittenteService credenzialeMittentiService, String credentialParam, boolean ricercaEsatta, boolean caseSensitive) throws UtilsException {
		
		try {
		
			IPaginatedExpression pagExpression = credenzialeMittentiService.newPaginatedExpression();
			pagExpression.and();
			
			String credential = this.convertToDBValue ? this.getExactValueDatabase(credentialParam, ricercaEsatta) : credentialParam;
			
			pagExpression.equals(CredenzialeMittente.model().TIPO, this.tipo.getRawValue());
			
			setLikeCondition(pagExpression, ricercaEsatta, caseSensitive,
					credential, credentialParam);
		
			return pagExpression;
			
		}catch(Exception e) {
			throw new UtilsException(e.getMessage(), e);
		}
		
	}
	
	private void setLikeCondition(IPaginatedExpression pagExpression, boolean ricercaEsatta, boolean caseSensitive,
			String credential, String credentialParam) throws ExpressionNotImplementedException, ExpressionException {
		if(ricercaEsatta) {
			if(caseSensitive) {
				if(this.convertToDBValue) {
					pagExpression.like(CredenzialeMittente.model().CREDENZIALE, credential, LikeMode.ANYWHERE); // il valore credential è già convertito sul valore del database.
				}
				else {
					pagExpression.equals(CredenzialeMittente.model().CREDENZIALE, credential); 
				}
			}
			else {
				if(this.convertToDBValue) {
					pagExpression.ilike(CredenzialeMittente.model().CREDENZIALE, credential, LikeMode.ANYWHERE); // il valore credential è già convertito sul valore del database.
				}
				else {
					pagExpression.ilike(CredenzialeMittente.model().CREDENZIALE, credential, LikeMode.EXACT); 
				}
			}
		}
		else if(!caseSensitive) {
			pagExpression.ilike(CredenzialeMittente.model().CREDENZIALE, credentialParam, LikeMode.ANYWHERE); // credentialParam: non bisogna cercare il valore esatto, basta quanto fornito
		}
		else { // !ricercaEsatta && caseSensitive
			pagExpression.like(CredenzialeMittente.model().CREDENZIALE, credentialParam, LikeMode.ANYWHERE); // credentialParam: non bisogna cercare il valore esatto, basta quanto fornito 
		}
	}
	
}