StorageSharedKeyCredentialPolicy.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.storage.common.policy;
import com.azure.core.http.HttpPipelineCallContext;
import com.azure.core.http.HttpPipelineNextPolicy;
import com.azure.core.http.HttpResponse;
import com.azure.core.http.policy.HttpPipelinePolicy;
import com.azure.storage.common.StorageSharedKeyCredential;
import reactor.core.publisher.Mono;
/**
* Policy that adds the SharedKey into the request's Authorization header.
*/
public final class StorageSharedKeyCredentialPolicy implements HttpPipelinePolicy {
private final StorageSharedKeyCredential credential;
/**
* Creates a SharedKey pipeline policy that adds the SharedKey into the request's authorization header.
*
* @param credential the SharedKey credential used to create the policy.
*/
public StorageSharedKeyCredentialPolicy(StorageSharedKeyCredential credential) {
this.credential = credential;
}
/**
* @return the {@link StorageSharedKeyCredential} linked to the policy.
*/
public StorageSharedKeyCredential sharedKeyCredential() {
return this.credential;
}
@Override
public Mono<HttpResponse> process(HttpPipelineCallContext context, HttpPipelineNextPolicy next) {
String authorizationValue = credential.generateAuthorizationHeader(context.getHttpRequest().getUrl(),
context.getHttpRequest().getHttpMethod().toString(),
context.getHttpRequest().getHeaders().toMap());
context.getHttpRequest().setHeader("Authorization", authorizationValue);
return next.process();
}
}