Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* DSS - Digital Signature Services
* Copyright (C) 2015 European Commission, provided under the CEF programme
*
* This file is part of the "DSS - Digital Signature Services" project.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package eu.europa.esig.dss.service.crl;
import eu.europa.esig.dss.crl.CRLBinary;
import eu.europa.esig.dss.crl.CRLUtils;
import eu.europa.esig.dss.crl.CRLValidity;
import eu.europa.esig.dss.enumerations.RevocationOrigin;
import eu.europa.esig.dss.model.x509.CertificateToken;
import eu.europa.esig.dss.model.x509.revocation.crl.CRL;
import eu.europa.esig.dss.spi.CertificateExtensionsUtils;
import eu.europa.esig.dss.spi.DSSRevocationUtils;
import eu.europa.esig.dss.spi.DSSUtils;
import eu.europa.esig.dss.spi.client.jdbc.query.SqlQuery;
import eu.europa.esig.dss.spi.client.jdbc.query.SqlSelectQuery;
import eu.europa.esig.dss.spi.client.jdbc.record.SqlRecord;
import eu.europa.esig.dss.spi.exception.DSSExternalResourceException;
import eu.europa.esig.dss.spi.x509.revocation.JdbcRevocationSource;
import eu.europa.esig.dss.spi.x509.revocation.RevocationToken;
import eu.europa.esig.dss.spi.x509.revocation.crl.CRLSource;
import eu.europa.esig.dss.spi.x509.revocation.crl.CRLToken;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.List;
/**
* CRLSource that retrieve information from a JDBC datasource
*/
public class JdbcCacheCRLSource extends JdbcRevocationSource implements CRLSource {
private static final long serialVersionUID = 3007740140330998336L;
/**
* Used in the init method to check if the table exists
*/
private static final SqlQuery SQL_INIT_CHECK_EXISTENCE = SqlQuery.createQuery("SELECT COUNT(*) FROM CACHED_CRL");
/**
* Used in the init method to create the table, if not existing: ID (char40
* = SHA1 length) and DATA (blob)
*/
private static final SqlQuery SQL_INIT_CREATE_TABLE = SqlQuery.createQuery("CREATE TABLE CACHED_CRL (ID CHAR(40), DATA BLOB, ISSUER LONGVARBINARY)");
/**
* Used to drop the cache table
*/
private static final SqlQuery SQL_DROP_TABLE = SqlQuery.createQuery("DROP TABLE CACHED_CRL");
/**
* Used via the find method to insert a new record
*/
private static final SqlQuery SQL_FIND_INSERT = SqlQuery.createQuery("INSERT INTO CACHED_CRL (ID, DATA, ISSUER) VALUES (?, ?, ?)");
/**
* Used via the find method to update an existing record via the id
*/
private static final SqlQuery SQL_FIND_UPDATE = SqlQuery.createQuery("UPDATE CACHED_CRL SET DATA = ?, ISSUER = ? WHERE ID = ?");
/**
* Used via the find method to remove an existing record by the id
*/
private static final SqlQuery SQL_FIND_REMOVE = SqlQuery.createQuery("DELETE FROM CACHED_CRL WHERE ID = ?");
/**
* A list of requests to extract the certificates by
*/
private static final SqlSelectQuery SQL_FIND_QUERY = new SqlSelectQuery("SELECT * FROM CACHED_CRL WHERE ID = ?") {
@Override
public SqlCRLRecord getRecord(ResultSet rs) throws SQLException {
SqlCRLRecord response = new SqlCRLRecord();
response.id = rs.getString("ID");
response.crlBinary = rs.getBytes("DATA");
response.certificateIssuerBinary = rs.getBytes("ISSUER");
return response;
}
};
/**
* Default constructor
*/
public JdbcCacheCRLSource() {
// empty
}
@Override
protected SqlQuery getCreateTableQuery() {
return SQL_INIT_CREATE_TABLE;
}
@Override
protected SqlQuery getTableExistenceQuery() {
return SQL_INIT_CHECK_EXISTENCE;
}
@Override
protected SqlQuery getInsertRevocationTokenEntryQuery() {
return SQL_FIND_INSERT;
}
@Override
protected SqlQuery getUpdateRevocationTokenEntryQuery() {
return SQL_FIND_UPDATE;
}
@Override
protected SqlQuery getRemoveRevocationTokenEntryQuery() {
return SQL_FIND_REMOVE;
}
@Override
protected SqlQuery getDeleteTableQuery() {
return SQL_DROP_TABLE;
}
@Override
protected SqlSelectQuery getRevocationDataExtractQuery() {
return SQL_FIND_QUERY;
}
/**
* Returns a revocation token key
*
* @param certificateToken {@link CertificateToken}
* @return revocation token key {@link String}
*/
@Override
protected List initRevocationTokenKeys(CertificateToken certificateToken) {
return DSSRevocationUtils.getCRLRevocationTokenKeys(certificateToken);
}
@Override
protected RevocationToken buildRevocationTokenFromResult(SqlRecord response, CertificateToken certificateToken,
CertificateToken issuerCertificateToken) throws DSSExternalResourceException {
try {
final SqlCRLRecord crlResponse = (SqlCRLRecord) response;
CRLBinary crlBinary = CRLUtils.buildCRLBinary(crlResponse.crlBinary);
CertificateToken cachedIssuerCertificate = DSSUtils.loadCertificate(crlResponse.certificateIssuerBinary);
final CRLValidity cached = CRLUtils.buildCRLValidity(crlBinary, cachedIssuerCertificate);
cached.setIssuerToken(cachedIssuerCertificate);
CRLToken crlToken = new CRLToken(certificateToken, cached);
crlToken.setExternalOrigin(RevocationOrigin.CACHED);
return crlToken;
} catch (Exception e) {
throw new DSSExternalResourceException(String.format(
"An error occurred during an attempt to get a revocation token. Reason : %s", e.getMessage()), e);
}
}
@Override
protected void insertRevocation(final String revocationKey, final RevocationToken token) {
CRLToken crlToken = (CRLToken) token;
CRLValidity crlValidity = crlToken.getCrlValidity();
getJdbcCacheConnector().execute(getInsertRevocationTokenEntryQuery(), revocationKey, crlValidity.getDerEncoded(),
crlValidity.getIssuerToken().getEncoded());
}
@Override
protected void updateRevocation(final String revocationKey, final RevocationToken token) {
CRLToken crlToken = (CRLToken) token;
CRLValidity crlValidity = crlToken.getCrlValidity();
getJdbcCacheConnector().execute(getUpdateRevocationTokenEntryQuery(), crlValidity.getDerEncoded(),
crlValidity.getIssuerToken().getEncoded(), revocationKey);
}
@Override
public CRLToken getRevocationToken(CertificateToken certificateToken, CertificateToken issuerCertificateToken) {
return (CRLToken) super.getRevocationToken(certificateToken, issuerCertificateToken);
}
@Override
public CRLToken getRevocationToken(CertificateToken certificateToken, CertificateToken issuerCertificateToken, boolean forceRefresh) {
return (CRLToken) super.getRevocationToken(certificateToken, issuerCertificateToken, forceRefresh);
}
@Override
protected List getRevocationAccessUrls(CertificateToken certificateToken) {
return CertificateExtensionsUtils.getCRLAccessUrls(certificateToken);
}
@Override
protected String getRevocationTokenKey(CertificateToken certificateToken, String urlString) {
return DSSRevocationUtils.getCRLRevocationTokenKey(urlString);
}
/**
* Represents a CRL record extracted from the SQL database table
*/
protected static class SqlCRLRecord implements SqlRecord {
/**
* ID of the record
*/
protected String id;
/**
* CRL binary
*/
protected byte[] crlBinary;
/**
* Binary of the CRL issuer certificate
*/
protected byte[] certificateIssuerBinary;
/**
* Default constructor
*/
protected SqlCRLRecord() {
// empty
}
}
}