Encapsulate Vault lease endpoint differences in LeaseEndpoints.

We now provide a LeaseEndpoints enum that reflects differences between Vault versions regarding their lease endpoints.

Related pull request: gh-282.
Closes gh-262.
This commit is contained in:
Mark Paluch
2018-08-27 16:32:18 +02:00
parent 1fde90afca
commit d7d9042191
3 changed files with 171 additions and 55 deletions

View File

@@ -0,0 +1,141 @@
/*
* Copyright 2018 the original author or authors.
*
* 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 org.springframework.vault.core.lease;
import java.util.HashMap;
import java.util.Map;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpMethod;
import org.springframework.http.ResponseEntity;
import org.springframework.util.Assert;
import org.springframework.vault.core.lease.domain.Lease;
import org.springframework.web.client.RestOperations;
/**
* Version-specific endpoint implementations that use either legacy or sys/leases
* endpoints.
*
* @author Mark Paluch
* @since 2.1
* @see SecretLeaseContainer
*/
public enum LeaseEndpoints {
/**
* Legacy endpoints prior to Vault 0.8 ({@literal /sys/renew},{@literal /sys/revoke}).
*/
Legacy {
@Override
public void revoke(Lease lease, RestOperations operations) {
operations.exchange("sys/revoke", HttpMethod.PUT,
LeaseEndpoints.getLeaseRevocationBody(lease), Map.class,
lease.getLeaseId());
}
@SuppressWarnings("unchecked")
@Override
public Lease renew(Lease lease, RestOperations operations) {
HttpEntity<Object> leaseRenewalEntity = getLeaseRenewalBody(lease);
ResponseEntity<Map<String, Object>> entity = (ResponseEntity) operations
.exchange("sys/renew", HttpMethod.PUT, leaseRenewalEntity, Map.class);
Assert.state(entity != null && entity.getBody() != null,
"Renew response must not be null");
return toLease(entity.getBody());
}
},
/**
* Sys/lease endpoints for Vault 0.8 ans higher ({@literal /sys/leases/…}).
*/
SysLeases {
@Override
public void revoke(Lease lease, RestOperations operations) {
operations.exchange("sys/leases/revoke", HttpMethod.PUT,
LeaseEndpoints.getLeaseRevocationBody(lease), Map.class,
lease.getLeaseId());
}
@Override
@SuppressWarnings("unchecked")
public Lease renew(Lease lease, RestOperations operations) {
HttpEntity<Object> leaseRenewalEntity = getLeaseRenewalBody(lease);
ResponseEntity<Map<String, Object>> entity = (ResponseEntity) operations
.exchange("sys/leases/renew", HttpMethod.PUT, leaseRenewalEntity,
Map.class);
Assert.state(entity != null && entity.getBody() != null,
"Renew response must not be null");
return toLease(entity.getBody());
}
};
/**
* Revoke a {@link Lease}.
*
* @param lease must not be {@literal null}.
* @param operations must not be {@literal null}.
*/
abstract void revoke(Lease lease, RestOperations operations);
/**
* Renew a {@link Lease} and return the renewed {@link Lease}.
*
* @param lease must not be {@literal null}.
* @param operations must not be {@literal null}.
* @return the renewed {@link Lease}.
*/
abstract Lease renew(Lease lease, RestOperations operations);
private static Lease toLease(Map<String, Object> body) {
String leaseId = (String) body.get("lease_id");
Number leaseDuration = (Number) body.get("lease_duration");
boolean renewable = (Boolean) body.get("renewable");
return Lease.of(leaseId, leaseDuration != null ? leaseDuration.longValue() : 0,
renewable);
}
private static HttpEntity<Object> getLeaseRenewalBody(Lease lease) {
Map<String, String> leaseRenewalData = new HashMap<>();
leaseRenewalData.put("lease_id", lease.getLeaseId());
leaseRenewalData.put("increment",
Long.toString(lease.getLeaseDuration().getSeconds()));
return new HttpEntity<>(leaseRenewalData);
}
private static HttpEntity<Object> getLeaseRevocationBody(Lease lease) {
Map<String, String> leaseRenewalData = new HashMap<>();
leaseRenewalData.put("lease_id", lease.getLeaseId());
return new HttpEntity<>(leaseRenewalData);
}
}

View File

@@ -35,10 +35,7 @@ import lombok.extern.apachecommons.CommonsLog;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpMethod;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.lang.Nullable;
import org.springframework.scheduling.TaskScheduler;
import org.springframework.scheduling.Trigger;
@@ -48,7 +45,6 @@ import org.springframework.util.Assert;
import org.springframework.util.StringUtils;
import org.springframework.vault.VaultException;
import org.springframework.vault.client.VaultResponses;
import org.springframework.vault.core.RestOperationsCallback;
import org.springframework.vault.core.VaultOperations;
import org.springframework.vault.core.lease.domain.Lease;
import org.springframework.vault.core.lease.domain.RequestedSecret;
@@ -117,6 +113,7 @@ import org.springframework.web.client.HttpStatusCodeException;
* @see RequestedSecret
* @see SecretLeaseEventPublisher
* @see Lease
* @see LeaseEndpoints
*/
@CommonsLog
public class SecretLeaseContainer extends SecretLeaseEventPublisher implements
@@ -137,6 +134,8 @@ public class SecretLeaseContainer extends SecretLeaseEventPublisher implements
private final VaultOperations operations;
private LeaseEndpoints leaseEndpoints = LeaseEndpoints.Legacy;
private Duration minRenewal = Duration.ofSeconds(10);
private Duration expiryThreshold = Duration.ofSeconds(60);
@@ -178,6 +177,22 @@ public class SecretLeaseContainer extends SecretLeaseEventPublisher implements
setTaskScheduler(taskScheduler);
}
/**
* Set the {@link LeaseEndpoints} to delegate renewal/revocation calls to.
* {@link LeaseEndpoints} encapsulates differences between Vault versions that affect
* the location of renewal/revocation endpoints.
*
* @param leaseEndpoints must not be {@literal null}.
* @since 2.1
* @see LeaseEndpoints
*/
public void setLeaseEndpoints(LeaseEndpoints leaseEndpoints) {
Assert.notNull(leaseEndpoints, "LeaseEndpoints must not be null");
this.leaseEndpoints = leaseEndpoints;
}
/**
* Sets the amount of seconds that is at least required before renewing a lease.
* {@code minRenewalSeconds} prevents renewals to happen too often.
@@ -595,33 +610,10 @@ public class SecretLeaseContainer extends SecretLeaseEventPublisher implements
@SuppressWarnings("unchecked")
private Lease renew(Lease lease) {
HttpEntity<Object> leaseRenewalEntity = getLeaseRenewalBody(lease);
ResponseEntity<Map<String, Object>> entity = operations
.doWithSession(restOperations -> (ResponseEntity) restOperations
.exchange("sys/renew", HttpMethod.PUT, leaseRenewalEntity, Map.class));
Assert.state(entity != null && entity.getBody() != null,
"Renew response must not be null");
Map<String, Object> body = entity.getBody();
String leaseId = (String) body.get("lease_id");
Number leaseDuration = (Number) body.get("lease_duration");
boolean renewable = (Boolean) body.get("renewable");
return Lease.of(leaseId, leaseDuration != null ? leaseDuration.longValue() : 0,
renewable);
return operations.doWithSession(restOperations -> leaseEndpoints.renew(lease,
restOperations));
}
private static HttpEntity<Object> getLeaseRenewalBody(Lease lease) {
Map<String, String> leaseRenewalData = new HashMap<>();
leaseRenewalData.put("lease_id", lease.getLeaseId());
leaseRenewalData.put("increment",
Long.toString(lease.getLeaseDuration().getSeconds()));
return new HttpEntity<>(leaseRenewalData);
}
/**
* Hook method called when a {@link Lease} expires. The default implementation is to
@@ -654,9 +646,10 @@ public class SecretLeaseContainer extends SecretLeaseEventPublisher implements
onBeforeLeaseRevocation(requestedSecret, lease);
operations
.doWithSession((RestOperationsCallback<ResponseEntity<Map<String, Object>>>) restOperations -> (ResponseEntity) restOperations
.exchange("sys/revoke/{leaseId}", HttpMethod.PUT, null,
Map.class, lease.getLeaseId()));
.doWithSession(restOperations -> {
leaseEndpoints.revoke(lease, restOperations);
return null;
});
onAfterLeaseRevocation(requestedSecret, lease);
}

View File

@@ -19,7 +19,6 @@ import java.time.Duration;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ScheduledFuture;
@@ -34,7 +33,6 @@ import org.mockito.Mock;
import org.mockito.junit.MockitoJUnitRunner;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.scheduling.TaskScheduler;
import org.springframework.scheduling.Trigger;
import org.springframework.vault.VaultException;
@@ -216,8 +214,9 @@ public class SecretLeaseContainerUnitTests {
public void shouldRenewLease() {
prepareRenewal();
when(vaultOperations.doWithSession(any(RestOperationsCallback.class)))
.thenReturn(getResponseEntity("new_lease", true, 70, HttpStatus.OK));
.thenReturn(Lease.of("new_lease", Duration.ofSeconds(70), true));
secretLeaseContainer.start();
@@ -308,7 +307,7 @@ public class SecretLeaseContainerUnitTests {
prepareRenewal();
when(vaultOperations.doWithSession(any(RestOperationsCallback.class)))
.thenReturn(getResponseEntity("new_lease", true, 5, HttpStatus.OK));
.thenReturn(Lease.of("new_lease", Duration.ofSeconds(5), true));
secretLeaseContainer.start();
@@ -334,7 +333,7 @@ public class SecretLeaseContainerUnitTests {
when(vaultOperations.read(requestedSecret.getPath())).thenReturn(first, second);
when(vaultOperations.doWithSession(any(RestOperationsCallback.class)))
.thenReturn(getResponseEntity("new_lease", true, 5, HttpStatus.OK));
.thenReturn(Lease.of("new_lease", Duration.ofSeconds(5), true));
secretLeaseContainer.requestRotatingSecret("my-secret");
@@ -410,7 +409,7 @@ public class SecretLeaseContainerUnitTests {
prepareRenewal();
when(vaultOperations.doWithSession(any(RestOperationsCallback.class)))
.thenReturn(getResponseEntity("new_lease", true, 70, HttpStatus.OK));
.thenReturn(Lease.of("new_lease", Duration.ofSeconds(70), true));
secretLeaseContainer.start();
@@ -554,23 +553,6 @@ public class SecretLeaseContainerUnitTests {
secretLeaseContainer.addRequestedSecret(requestedSecret);
}
private ResponseEntity<Map<String, Object>> getResponseEntity(String leaseId,
Boolean renewable, Integer leaseDuration, HttpStatus httpStatus) {
Map<String, Object> body = new HashMap<String, Object>();
body.put("lease_id", leaseId);
body.put("renewable", renewable);
body.put("lease_duration", leaseDuration);
return getEntity(body, httpStatus);
}
private ResponseEntity<Map<String, Object>> getEntity(Map<String, Object> body,
HttpStatus status) {
return new ResponseEntity<Map<String, Object>>(body, status);
}
private VaultResponse createSecrets() {
return createSecrets("key", "value", true);
}