-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
122 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# Notas de versão | ||
- Atualizado CACERT | ||
- Adicionado modo Multithreading |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
import br.com.swconsultoria.certificado.exception.CertificadoException; | ||
import br.com.swconsultoria.certificado.util.DocumentoUtil; | ||
import lombok.extern.java.Log; | ||
import org.apache.commons.httpclient.HttpClient; | ||
import org.apache.commons.httpclient.protocol.Protocol; | ||
|
||
import java.io.FileNotFoundException; | ||
|
@@ -35,35 +36,42 @@ public static void inicializaCertificado(Certificado certificado) throws Certifi | |
inicializaCertificado(certificado, CertificadoService.class.getResourceAsStream("/cacert")); | ||
} | ||
|
||
/** | ||
* | ||
* <p>Inicializa o certificado para a conexão SSL/TLS.</p> | ||
* <p><b>Importante: </b>Quando NÃO estiver com o modo multithreading ativado (certificado.isModoMultithreading()) | ||
* será registrado e utilizado um único certificado em todas as conexões até a próxima chamada à | ||
* {@link #inicializaCertificado(Certificado, InputStream)}. É o modo antigo e padrão da biblioteca.</p> | ||
* <p>Quando estiver com o modo multithreading ativo o consumidor deverá obter um | ||
* {@link org.apache.commons.httpclient.HttpClient} com protocolo e certificado exclusivos para ele usando o | ||
* método {@link #getHttpsClient(Certificado, String, InputStream)}</p> | ||
* | ||
* @param certificado {@link Certificado} a ser utilizado na conexão. | ||
* @param cacert {@link java.io.InputStream} contendo o cacert | ||
* @throws CertificadoException | ||
*/ | ||
|
||
public static void inicializaCertificado(Certificado certificado, InputStream cacert) throws CertificadoException { | ||
if (certificado == null) { | ||
throw new IllegalArgumentException(CERTIFICADO_NAO_PODE_SER_NULO); | ||
} | ||
|
||
try { | ||
|
||
KeyStore keyStore = getKeyStore( | ||
Optional.ofNullable(certificado).orElseThrow(() -> new IllegalArgumentException(CERTIFICADO_NAO_PODE_SER_NULO))); | ||
SocketFactoryDinamico socketFactory = new SocketFactoryDinamico(keyStore, certificado.getNome(), certificado.getSenha(), | ||
Optional.ofNullable(cacert).orElseThrow(() -> new IllegalArgumentException("Cacert não pode ser nulo.")), | ||
certificado.getSslProtocol()); | ||
Protocol protocol = new Protocol("https", socketFactory, 443); | ||
Protocol.registerProtocol("https", protocol); | ||
|
||
log.info(String.format("JAVA-CERTIFICADO | Samuel Oliveira | [email protected] " + | ||
"| VERSAO=%s | DATA_VERSAO=%s | CNPJ/CPF=%s | VENCIMENTO=%s | ALIAS=%s | TIPO=%s | CAMINHO=%s | CACERT=%s | SSL=%s", | ||
"3.7", | ||
"11/07/2024", | ||
certificado.getCnpjCpf(), | ||
certificado.getDataHoraVencimento(), | ||
certificado.getNome().toUpperCase(), | ||
certificado.getTipoCertificado().toString(), | ||
certificado.getArquivo(), | ||
cacertProprio ? "Default" : "Customizado", | ||
certificado.getSslProtocol())); | ||
|
||
} catch (KeyStoreException | NoSuchAlgorithmException | KeyManagementException | CertificateException | | ||
IOException e) { | ||
throw new CertificadoException(e.getMessage(), e); | ||
if (!certificado.isModoMultithreading()) { | ||
Protocol.registerProtocol("https", getProtocoloCertificado(certificado, cacert)); | ||
} | ||
|
||
log.info(String.format("JAVA-CERTIFICADO | Samuel Oliveira | [email protected] " + | ||
"| VERSAO=%s | DATA_VERSAO=%s | CNPJ/CPF=%s | VENCIMENTO=%s | ALIAS=%s | TIPO=%s | CAMINHO=%s | CACERT=%s | SSL=%s | Multithreading=%s", | ||
"3.8", | ||
"14/10/2024", | ||
certificado.getCnpjCpf(), | ||
certificado.getDataHoraVencimento(), | ||
certificado.getNome().toUpperCase(), | ||
certificado.getTipoCertificado().toString(), | ||
certificado.getArquivo(), | ||
cacertProprio ? "Default" : "Customizado", | ||
certificado.getSslProtocol(), | ||
certificado.isModoMultithreading())); | ||
} | ||
|
||
public static Certificado certificadoPfxBytes(byte[] certificadoBytes, String senha) throws CertificadoException { | ||
|
@@ -278,4 +286,51 @@ public static Certificado getCertificadoByCnpjCpf(String cnpjCpf) throws Certifi | |
cnpjCpf)); | ||
} | ||
|
||
private static Protocol getProtocoloCertificado(final Certificado certificado, InputStream cacert) throws CertificadoException { | ||
try { | ||
KeyStore keyStore = getKeyStore( | ||
Optional.ofNullable(certificado).orElseThrow(() -> new IllegalArgumentException(CERTIFICADO_NAO_PODE_SER_NULO))); | ||
SocketFactoryDinamico socketFactory = new SocketFactoryDinamico(keyStore, certificado.getNome(), certificado.getSenha(), | ||
Optional.ofNullable(cacert).orElseThrow(() -> new IllegalArgumentException("Cacert não pode ser nulo.")), | ||
certificado.getSslProtocol()); | ||
|
||
return new Protocol("https", socketFactory, 443); | ||
|
||
} catch (KeyStoreException | NoSuchAlgorithmException | KeyManagementException | CertificateException | | ||
IOException e) { | ||
throw new CertificadoException(e.getMessage(), e); | ||
} | ||
} | ||
|
||
/** | ||
* Utiliza cacert default da biblioteca. | ||
* @see #getHttpsClient(Certificado, String, InputStream) | ||
*/ | ||
public static HttpClient getHttpsClient(Certificado certificado, String url) throws CertificadoException { | ||
return getHttpsClient(certificado, url, CertificadoService.class.getResourceAsStream("/cacert")); | ||
} | ||
|
||
/** | ||
* <p>Utilizar o {@link org.apache.commons.httpclient.HttpClient} gerado nesse método para evitar conflitos de | ||
* certificados nas conexões HTTPS/TLS/SSL, especialmente em ambientes multithreading.</p> | ||
* | ||
* <p>O consumidor desse método deverá usar esse cliente no stub desejado</p> | ||
* exemplo: | ||
* <pre> | ||
* HttpClient client = getHttpsClient(certificado, url); | ||
* NFeStatusServico4Stub stub = new NFeStatusServico4Stub(url); | ||
* stub._getServiceClient().getOptions().setProperty(HTTPConstants.CACHED_HTTP_CLIENT, httpclient); | ||
* </pre> | ||
* @param certificado {@link Certificado} a ser utilizado na conexão. | ||
* @param url {@link String} a ser executada na conexão https | ||
* @param cacert {@link java.io.InputStream} contendo o cacert | ||
* @return {@link org.apache.commons.httpclient.HttpClient} configurado para a URL e Certificados informados. | ||
* @throws CertificadoException | ||
*/ | ||
public static HttpClient getHttpsClient(Certificado certificado, String url, final InputStream cacert) throws CertificadoException { | ||
Protocol protocol = getProtocoloCertificado(certificado, cacert); | ||
HttpClient httpclient = new HttpClient(); | ||
httpclient.getHostConfiguration().setHost(url, 443, protocol); | ||
return httpclient; | ||
} | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters