![JAR search and dependency download from the Maven repository](/logo.png)
br.com.progolden.dneutils.utils.DNEUtils Maven / Gradle / Ivy
/*
Copyright 2014 ProGolden Soluções Tecnológicas
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package br.com.progolden.dneutils.utils;
import org.hibernate.Criteria;
import org.hibernate.criterion.Projections;
import org.hibernate.criterion.Restrictions;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import br.com.progolden.dneutils.abstractions.DAO;
import br.com.progolden.dneutils.abstractions.EntityIF;
import br.com.progolden.dneutils.model.CaixaPostalComunitaria;
import br.com.progolden.dneutils.model.ClienteGrande;
import br.com.progolden.dneutils.model.Localidade;
import br.com.progolden.dneutils.model.Logradouro;
import br.com.progolden.dneutils.model.UnidadeOperacional;
public class DNEUtils {
private static final Logger LOGGER = LoggerFactory.getLogger(DNEUtils.class);
private final DAO dao;
public DNEUtils(DAO dao) {
this.dao = dao;
}
public CEPStatus validarCEP(String cep) {
if (cep == null)
return CEPStatus.INEXISTENTE;
LOGGER.debug("Tratando CEP para verificação...");
cep = cep
.replaceAll("-", "")
.replaceAll("\\.", "")
.replaceAll(",", "")
.replaceAll("/", "")
.trim()
;
LOGGER.debug("Verificando o CEP: "+cep);
if (cep.length() != 8)
return CEPStatus.INEXISTENTE;
LOGGER.debug("CEP formatado corretamente, verificando banco de CEPs...");
if (this.dao != null) {
Long count;
// Buscando CEP de Localidade.
count = this.countByCEP(cep, Localidade.class);
if (count > 0L)
return CEPStatus.LOCALIDADE;
// Buscando CEP de Logradouro.
count = this.countByCEP(cep, Logradouro.class);
if (count > 0L)
return CEPStatus.LOGRADOURO;
// Buscando CEP de Grande Usuario.
count = this.countByCEP(cep, ClienteGrande.class);
if (count > 0L)
return CEPStatus.CLIENTE_GRANDE;
// Buscando CEP de Unidade Operacional.
count = this.countByCEP(cep, UnidadeOperacional.class);
if (count > 0L)
return CEPStatus.UNIDADE_OPERACIONAL;
// Buscando CEP de Caixa Postal Comunitaria.
count = this.countByCEP(cep, CaixaPostalComunitaria.class);
if (count > 0L)
return CEPStatus.CAIXA_POSTAL_COMUNITARIA;
// O CEP nao existe.
return CEPStatus.INEXISTENTE;
} else {
LOGGER.debug("Banco de CEPs desativado.");
// Se a conexão com o banco estiver indisponivel
return CEPStatus.LOCALIDADE;
}
}
private Long countByCEP(String cep, Class extends EntityIF> entityClass) {
Criteria criteria;
Long count;
LOGGER.debug("Contando ocorrências do CEP "+cep+" na tabela "+entityClass.getCanonicalName());
criteria = this.dao.newCriteria(entityClass);
criteria.add(Restrictions.eq("cep", cep));
criteria.setProjection(Projections.rowCount());
count = this.dao.uniqueByCriteria(criteria, Long.class);
LOGGER.debug("Contagem realizada: "+String.valueOf(count));
return count;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy