com.ulisesbocchio.jasyptspringboot.wrapper.EncryptablePropertySourceWrapper Maven / Gradle / Ivy
package com.ulisesbocchio.jasyptspringboot.wrapper;
import com.ulisesbocchio.jasyptspringboot.EncryptablePropertyResolver;
import com.ulisesbocchio.jasyptspringboot.EncryptablePropertySource;
import org.jasypt.encryption.StringEncryptor;
import org.jasypt.properties.PropertyValueEncryptionUtils;
import org.springframework.core.env.PropertySource;
import org.springframework.util.Assert;
/**
* Wrapper for {@link PropertySource} instances that simply delegates the {@link #getProperty} method
* to the {@link PropertySource} delegate instance to retrieve properties, while checking if the resulting
* property is encrypted or not using the Jasypt convention of surrounding encrypted values with "ENC()".
* When an encrypted property is detected, it is decrypted using the provided {@link StringEncryptor}
*
* @author Ulises Bocchio
*/
public class EncryptablePropertySourceWrapper extends PropertySource implements EncryptablePropertySource {
private final PropertySource delegate;
EncryptablePropertyResolver resolver;
public EncryptablePropertySourceWrapper(PropertySource delegate, EncryptablePropertyResolver resolver) {
super(delegate.getName(), delegate.getSource());
Assert.notNull(delegate, "PropertySource delegate cannot be null");
Assert.notNull(resolver, "EncryptablePropertyResolver cannot be null");
this.delegate = delegate;
this.resolver = resolver;
}
@Override
public Object getProperty(String name) {
return getProperty(resolver, delegate, name);
}
@Override
public PropertySource getDelegate() {
return delegate;
}
}