11#include <azure/core/credentials/token_credential_options.hpp>
12#include <azure/core/http/http.hpp>
13#include <azure/core/http/http_status_code.hpp>
14#include <azure/core/http/raw_response.hpp>
15#include <azure/core/internal/http/pipeline.hpp>
16#include <azure/core/io/body_stream.hpp>
24namespace Azure {
namespace Identity {
namespace _detail {
29 class TokenCredentialImpl {
31 Core::Http::_internal::HttpPipeline m_httpPipeline;
38 virtual ~TokenCredentialImpl() =
default;
44 explicit TokenCredentialImpl(Core::Credentials::TokenCredentialOptions
const& options);
57 static std::string FormatScopes(
58 std::vector<std::string>
const& scopes,
60 bool urlEncode =
true);
90 static Core::Credentials::AccessToken ParseToken(
91 std::string
const& jsonString,
92 std::string
const& accessTokenPropertyName,
93 std::string
const& expiresInPropertyName,
94 std::vector<std::string>
const& expiresOnPropertyNames,
95 std::string
const& refreshInPropertyName =
"",
96 bool proactiveRenewal =
false,
97 int utcDiffSeconds = 0);
119 static Core::Credentials::AccessToken ParseToken(
120 std::string
const& jsonString,
121 std::string
const& accessTokenPropertyName,
122 std::string
const& expiresInPropertyName,
123 std::string
const& expiresOnPropertyName,
124 std::string
const& refreshInPropertyName =
"",
125 bool proactiveRenewal =
false)
129 accessTokenPropertyName,
130 expiresInPropertyName,
131 std::vector<std::string>{expiresOnPropertyName},
132 refreshInPropertyName,
143 class TokenRequest final {
145 std::unique_ptr<std::string> m_body;
146 std::unique_ptr<Core::IO::MemoryBodyStream> m_memoryBodyStream;
153 Core::Http::Request HttpRequest;
162 explicit TokenRequest(Core::Http::HttpMethod httpMethod, Core::Url url, std::string body)
163 : m_body(new std::string(std::move(body))),
164 m_memoryBodyStream(new Core::IO::MemoryBodyStream(
165 reinterpret_cast<uint8_t const*>(m_body->data()),
167 HttpRequest(std::move(httpMethod), std::move(url), m_memoryBodyStream.get())
169 HttpRequest.SetHeader(
"Content-Type",
"application/x-www-form-urlencoded");
170 HttpRequest.SetHeader(
"Content-Length", std::to_string(m_body->size()));
177 explicit TokenRequest(Core::Http::Request httpRequest) : HttpRequest(std::move(httpRequest))
194 Core::Credentials::AccessToken GetToken(
195 Core::Context
const& context,
196 bool proactiveRenewal,
197 std::function<std::unique_ptr<TokenRequest>()>
const& createRequest,
198 std::function<std::unique_ptr<TokenRequest>(
199 Core::Http::HttpStatusCode statusCode,
200 Core::Http::RawResponse
const& response)>
const& shouldRetry
201 = [](
auto const,
auto const&) {
return nullptr; })
const;