我想将用户个人资料图片存储在S3存储桶中,但请将这些图片保密。为了做到这一点,我每当需要图像时都会创建一个预先指定的URL。但是,这会每次创建一个唯一的URL,这意味着浏览器永远不会缓存图像,我最终会在GET请求中支付更多费用。
以下是我生成网址的代码示例,我使用的是Laravel:
$s3 = \Storage::disk('s3');
$client = $s3->getDriver()->getAdapter()->getClient();
$expiry = new \DateTime('2017-07-25');
$command = $client->getCommand('GetObject', [
'Bucket' => \Config::get('filesystems.disks.s3.bucket'),
'Key' => $key
]);
$request = $client->createPresignedRequest($command, $expiry);
return (string) $request->getUri();
我认为通过指定一个日期时间而不是一个时间单位来创建相同的网址,但实际上它会增加网址剩余的秒数,这是一个例子:
xxxx.s3.eu-west-2.amazonaws.com/profile-pics/92323.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X -Amz-凭证= AXXXXXXXXXXX%2Feu西-2%2Fs3%2Faws4_request&安培; X-AMZ-日期= 20170720T112123Z&安培; X-AMZ-SignedHeaders =宿主安培; X-AMZ-过期= 391117&安培; X-AMZ-签名= XXXXXXXXX
是否可以生成可重复的预先签名的请求网址,以便用户浏览器可以缓存图片?
答案 0 :(得分:1)
您可以在应用程序中添加经过身份验证的端点,并在该端点内检索映像,而不是使用预先签名的URL机制?在img
标记等中使用此网址。此端点可以缓存映像并为浏览器提供适当的响应标头以缓存映像。
答案 1 :(得分:0)
也许是一个较晚的答复,但我会添加我的方法,以使以后阅读此书的人们受益。
要强制打开浏览器缓存,重要的是每次都生成相同的url,直到您明确希望浏览器从服务器重新加载内容为止。 不幸的是,sdk中提供的预签名者依赖于当前时间戳,每次都会导致一个新的url。
此示例使用Java,但可以轻松扩展为其他语言
GetObjectRequest构建器(用于创建预签名的url)允许覆盖配置。我们可以提供一个自定义签名者来修改其行为
AwsRequestOverrideConfiguration.builder()
.signer(new CustomAwsS3V4Signer())
.credentialsProvider(<You may need to provide a custom credential provider
here>)))
.build())
GetObjectRequest getObjectRequest =
GetObjectRequest.builder()
.bucket(getUserBucket())
.key(key)
.responseCacheControl("max-age="+(TimeUnit.DAYS.toSeconds(7)+ defaultIfNull(version,0L)))
.overrideConfiguration(overrideConfig)
.build();
public class CustomAwsS3V4Signer implements Presigner, Signer
{
private final AwsS3V4Signer awsSigner;
public CustomAwsS3V4Signer()
{
awsSigner = AwsS3V4Signer.create();
}
@Override
public SdkHttpFullRequest presign(SdkHttpFullRequest request, ExecutionAttributes executionAttributes)
{
Instant baselineInstant = Instant.now().truncatedTo(ChronoUnit.DAYS);
executionAttributes.putAttribute(AwsSignerExecutionAttribute.PRESIGNER_EXPIRATION,
baselineInstant.plus(3, ChronoUnit.DAYS));
在这里,我们重写签名时钟来模拟一个固定的时间,最终导致URL中的有效期和签名一致,直到将来的某个日期为止。
Aws4PresignerParams.Builder builder = Aws4PresignerParams.builder()
.signingClockOverride(Clock.fixed(baselineInstant, ZoneId.of("UTC")));
Aws4PresignerParams signingParams =
extractPresignerParams(builder, executionAttributes).build();
return awsSigner.presign(request, signingParams);
}
}
更多详细信息在这里:
https://murf.ai/resources/creating-cache-friendly-presigned-s3-urls-using-v4signer-q1bbqgk
答案 2 :(得分:0)
类似于@Aragorn 的概念,但这是更完整的代码。不过,这又是 Java。此外,由于我的应用程序是多区域的,因此我必须输入区域属性。
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
import software.amazon.awssdk.core.client.config.ClientOverrideConfiguration;
import software.amazon.awssdk.core.signer.Signer;
import software.amazon.awssdk.services.s3.S3AsyncClient;
import software.amazon.awssdk.services.s3.S3Client;
import software.amazon.awssdk.services.s3.model.GetObjectRequest;
import software.amazon.awssdk.services.s3.model.PutObjectRequest;
import software.amazon.awssdk.services.s3.presigner.S3Presigner;
import software.amazon.awssdk.services.s3.presigner.model.GetObjectPresignRequest;
import javax.annotation.PostConstruct;
import javax.validation.constraints.NotNull;
import java.net.URI;
import java.net.URISyntaxException;
import java.nio.file.Path;
import java.time.Duration;
import java.util.UUID;
import java.util.concurrent.CompletableFuture;
@Component
@Slf4j
public class S3Operations {
@Autowired
private Signer awsSigner;
private final Map<Region, S3Presigner> presignerMap = new ConcurrentHashMap<>();
private S3Presigner buildPresignerForRegion(
AwsCredentialsProvider credentialsProvider,
Region region) {
return S3Presigner.builder()
.credentialsProvider(credentialsProvider)
.region(region)
.build();
}
/**
* Convert an S3 URI to a normal HTTPS URI that expires.
*
* @param s3Uri S3 URI (e.g. s3://bucketname/ArchieTest/フェニックス.jpg)
* @return https URI
*/
@SneakyThrows
public URI getExpiringUri(final URI s3Uri) {
final GetObjectRequest getObjectRequest =
GetObjectRequest.builder()
.bucket(s3Uri.getHost())
.key(s3Uri.getPath().substring(1))
.overrideConfiguration(builder -> builder.signer(awsSigner))
.build();
final Region bucketRegion = bucketRegionMap.computeIfAbsent(s3Uri.getHost(),
bucketName -> {
final GetBucketLocationRequest getBucketLocationRequest = GetBucketLocationRequest.builder()
.bucket(bucketName)
.build();
return Region.of(s3Client.getBucketLocation(getBucketLocationRequest).locationConstraint().toString());
});
final GetObjectPresignRequest getObjectPresignRequest = GetObjectPresignRequest.builder()
.signatureDuration(Duration.ofSeconds(0)) // required, but ignored
.getObjectRequest(getObjectRequest)
.build();
return presignerMap.computeIfAbsent(bucketRegion, this::buildPresignerForRegion).presignGetObject(getObjectPresignRequest).url().toURI();
}
对于上面注入的 CustomAwsSigner
。主要区别在于我抛出了一个不受支持的操作异常。
import org.jetbrains.annotations.TestOnly;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
import software.amazon.awssdk.auth.signer.AwsS3V4Signer;
import software.amazon.awssdk.auth.signer.AwsSignerExecutionAttribute;
import software.amazon.awssdk.auth.signer.params.Aws4PresignerParams;
import software.amazon.awssdk.core.interceptor.ExecutionAttributes;
import software.amazon.awssdk.core.signer.Presigner;
import software.amazon.awssdk.core.signer.Signer;
import software.amazon.awssdk.http.SdkHttpFullRequest;
import java.time.Clock;
import java.time.Instant;
import java.time.ZoneId;
import java.time.ZonedDateTime;
import java.time.temporal.ChronoField;
import java.time.temporal.ChronoUnit;
/**
* This is a custom signer where the expiration is preset to a 5 minute block within an hour.
* This must only be used for presigning.
*/
@Component
public class CustomAwsSigner implements Signer, Presigner {
private final AwsS3V4Signer theSigner = AwsS3V4Signer.create();
/**
* This is the clip time for the expiration. This should be divisible into 60.
*/
@Value("${aws.s3.clipTimeInMinutes:5}")
private long clipTimeInMinutes;
@Value("${aws.s3.expirationInSeconds:3600}")
private long expirationInSeconds;
/**
* Computes the base time as the processing time to the floor of nearest clip block.
*
* @param processingDateTime processing date time
* @return base time
*/
@TestOnly
public ZonedDateTime computeBaseTime(final ZonedDateTime processingDateTime) {
return processingDateTime
.truncatedTo(ChronoUnit.MINUTES)
.with(temporal -> temporal.with(ChronoField.MINUTE_OF_HOUR, temporal.get(ChronoField.MINUTE_OF_HOUR) / clipTimeInMinutes * clipTimeInMinutes));
}
@Override
public SdkHttpFullRequest presign(final SdkHttpFullRequest request, final ExecutionAttributes executionAttributes) {
final Instant baselineInstant = computeBaseTime(ZonedDateTime.now()).toInstant();
final Aws4PresignerParams signingParams = Aws4PresignerParams.builder()
.awsCredentials(executionAttributes.getAttribute(AwsSignerExecutionAttribute.AWS_CREDENTIALS))
.signingName(executionAttributes.getAttribute(AwsSignerExecutionAttribute.SERVICE_SIGNING_NAME))
.signingRegion(executionAttributes.getAttribute(AwsSignerExecutionAttribute.SIGNING_REGION))
.signingClockOverride(Clock.fixed(baselineInstant, ZoneId.of("UTC")))
.expirationTime(baselineInstant.plus(expirationInSeconds, ChronoUnit.SECONDS))
.build();
return theSigner.presign(request, signingParams);
}
@Override
public SdkHttpFullRequest sign(final SdkHttpFullRequest request, final ExecutionAttributes executionAttributes) {
throw new UnsupportedOperationException("this class is only used for presigning");
}
}
答案 3 :(得分:0)
这是我在关注这篇文章后想出的 Python 解决方案。 它使用 freezegun 库来操纵时间以使签名在给定时间段内保持不变。
import time
import datetime
import boto3
from freezegun import freezetime
S3_CLIENT = boto3.client("s3")
SEVEN_DAYS_IN_SECONDS = 604800
MAX_EXPIRES_SECONDS = SEVEN_DAYS_IN_SECONDS
def get_presigned_get_url(bucket: str, key: str, expires_in_seconds: int = MAX_EXPIRES_SECONDS) -> str:
current_timestamp = int(time.time())
truncated_timestamp = current_timestamp - (current_timestamp % expires_in_seconds)
with freeze_time(datetime.datetime.fromtimestamp(truncated_timestamp)):
presigned_url = S3_CLIENT.generate_presigned_url(
ClientMethod="get_object",
Params={
"Bucket": bucket,
"Key": key,
"ResponseCacheControl": f"private, max-age={expires_in_seconds}, immutable",
},
ExpiresIn=expires_in_seconds,
HttpMethod="GET",
)
return presigned_url