use of org.wso2.carbon.identity.configuration.mgt.core.constant.ConfigurationConstants.DB_SCHEMA_COLUMN_NAME_ID in project carbon-identity-framework by wso2.
the class SecretDAOImpl method replaceSecretType.
@Override
public void replaceSecretType(SecretType secretType) throws SecretManagementException {
NamedJdbcTemplate jdbcTemplate = getNewTemplate();
try {
jdbcTemplate.executeInsert(UPDATE_SECRET_TYPE, preparedStatement -> {
preparedStatement.setString(DB_SCHEMA_COLUMN_NAME_NAME, secretType.getName());
preparedStatement.setString(DB_SCHEMA_COLUMN_NAME_DESCRIPTION, secretType.getDescription());
preparedStatement.setString(DB_SCHEMA_COLUMN_NAME_ID, secretType.getId());
}, secretType, false);
} catch (DataAccessException e) {
throw handleServerException(ERROR_CODE_UPDATE_SECRET_TYPE, secretType.getName(), e);
}
}
use of org.wso2.carbon.identity.configuration.mgt.core.constant.ConfigurationConstants.DB_SCHEMA_COLUMN_NAME_ID in project carbon-identity-framework by wso2.
the class SecretDAOImpl method updateSecretValue.
@Override
public Secret updateSecretValue(Secret secret, String value) throws SecretManagementException {
Timestamp currentTime = new java.sql.Timestamp(new Date().getTime());
NamedJdbcTemplate jdbcTemplate = getNewTemplate();
try {
jdbcTemplate.executeUpdate(UPDATE_SECRET_VALUE, preparedStatement -> {
preparedStatement.setString(DB_SCHEMA_COLUMN_NAME_ID, secret.getSecretId());
preparedStatement.setString(DB_SCHEMA_COLUMN_NAME_SECRET_VALUE, value);
preparedStatement.setTimeStamp(DB_SCHEMA_COLUMN_NAME_LAST_MODIFIED, currentTime, calendar);
});
secret.setLastModified(currentTime.toInstant().toString());
secret.setSecretValue(value);
} catch (DataAccessException e) {
throw handleServerException(ERROR_CODE_UPDATE_SECRET, "value", e);
}
return secret;
}
use of org.wso2.carbon.identity.configuration.mgt.core.constant.ConfigurationConstants.DB_SCHEMA_COLUMN_NAME_ID in project carbon-identity-framework by wso2.
the class SecretDAOImpl method getSecrets.
@Override
public List getSecrets(SecretType secretType, int tenantId) throws SecretManagementException {
NamedJdbcTemplate jdbcTemplate = getNewTemplate();
try {
return jdbcTemplate.executeQuery(GET_SECRETS, (LambdaExceptionUtils.rethrowRowMapper((resultSet, rowNumber) -> {
String secretId = resultSet.getString(DB_SCHEMA_COLUMN_NAME_ID);
String secretName = resultSet.getString(DB_SCHEMA_COLUMN_NAME_SECRET_NAME);
String secretLastModified = resultSet.getString(DB_SCHEMA_COLUMN_NAME_LAST_MODIFIED);
String secretCreatedTime = resultSet.getString(DB_SCHEMA_COLUMN_NAME_CREATED_TIME);
String description = resultSet.getString(DB_SCHEMA_COLUMN_NAME_DESCRIPTION);
Secret secret = new Secret();
secret.setCreatedTime(secretCreatedTime);
secret.setSecretId(secretId);
secret.setSecretName(secretName);
secret.setLastModified(secretLastModified);
secret.setTenantDomain(IdentityTenantUtil.getTenantDomain(tenantId));
secret.setSecretType(secretType.getName());
secret.setDescription(description);
return secret;
})), preparedStatement -> {
preparedStatement.setString(DB_SCHEMA_COLUMN_NAME_TYPE, secretType.getId());
preparedStatement.setInt(DB_SCHEMA_COLUMN_NAME_TENANT_ID, tenantId);
});
} catch (DataAccessException e) {
throw handleServerException(ERROR_CODE_SECRETS_DOES_NOT_EXISTS, e);
}
}
use of org.wso2.carbon.identity.configuration.mgt.core.constant.ConfigurationConstants.DB_SCHEMA_COLUMN_NAME_ID in project carbon-identity-framework by wso2.
the class SecretDAOImpl method updateSecretDescription.
@Override
public Secret updateSecretDescription(Secret secret, String description) throws SecretManagementException {
Timestamp currentTime = new java.sql.Timestamp(new Date().getTime());
NamedJdbcTemplate jdbcTemplate = getNewTemplate();
try {
jdbcTemplate.executeUpdate(UPDATE_SECRET_DESCRIPTION, preparedStatement -> {
preparedStatement.setString(DB_SCHEMA_COLUMN_NAME_ID, secret.getSecretId());
preparedStatement.setString(DB_SCHEMA_COLUMN_NAME_DESCRIPTION, description);
preparedStatement.setTimeStamp(DB_SCHEMA_COLUMN_NAME_LAST_MODIFIED, currentTime, calendar);
});
secret.setLastModified(currentTime.toInstant().toString());
secret.setDescription(description);
} catch (DataAccessException e) {
throw handleServerException(ERROR_CODE_UPDATE_SECRET, "description", e);
}
return secret;
}
use of org.wso2.carbon.identity.configuration.mgt.core.constant.ConfigurationConstants.DB_SCHEMA_COLUMN_NAME_ID in project carbon-identity-framework by wso2.
the class SecretDAOImpl method getSecretById.
@Override
public Secret getSecretById(String secretId, int tenantId) throws SecretManagementException {
NamedJdbcTemplate jdbcTemplate = getNewTemplate();
List<SecretRawDataCollector> secretRawDataCollectors;
try {
String query = GET_SECRET_BY_ID;
secretRawDataCollectors = jdbcTemplate.executeQuery(query, (resultSet, rowNumber) -> {
SecretRawDataCollector.SecretRawDataCollectorBuilder secretRawDataCollectorBuilder = new SecretRawDataCollector.SecretRawDataCollectorBuilder().setSecretId(resultSet.getString(DB_SCHEMA_COLUMN_NAME_ID)).setTenantId(resultSet.getInt(DB_SCHEMA_COLUMN_NAME_TENANT_ID)).setSecretName(resultSet.getString(DB_SCHEMA_COLUMN_NAME_SECRET_NAME)).setSecretValue(resultSet.getString(DB_SCHEMA_COLUMN_NAME_SECRET_VALUE)).setLastModified(resultSet.getTimestamp(DB_SCHEMA_COLUMN_NAME_LAST_MODIFIED, calendar)).setCreatedTime(resultSet.getTimestamp(DB_SCHEMA_COLUMN_NAME_CREATED_TIME, calendar)).setSecretType(resultSet.getString(DB_SCHEMA_COLUMN_NAME_NAME)).setDescription(resultSet.getString(DB_SCHEMA_COLUMN_NAME_DESCRIPTION));
return secretRawDataCollectorBuilder.build();
}, preparedStatement -> {
preparedStatement.setString(DB_SCHEMA_COLUMN_NAME_ID, secretId);
preparedStatement.setInt(DB_SCHEMA_COLUMN_NAME_TENANT_ID, tenantId);
});
return secretRawDataCollectors == null || secretRawDataCollectors.size() == 0 ? null : buildSecretFromRawData(secretRawDataCollectors);
} catch (DataAccessException | CryptoException e) {
throw handleServerException(ERROR_CODE_GET_SECRET, "id = " + secretId, e);
}
}
Aggregations