azure-identity
All Classes Files Functions Variables Typedefs Pages
token_credential_impl.hpp
Go to the documentation of this file.
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
9#pragma once
10
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>
17
18#include <functional>
19#include <memory>
20#include <string>
21#include <utility>
22#include <vector>
23
24namespace Azure { namespace Identity { namespace _detail {
29 class TokenCredentialImpl {
30 private:
31 Core::Http::_internal::HttpPipeline m_httpPipeline;
32
33 public:
38 virtual ~TokenCredentialImpl() = default;
39
44 explicit TokenCredentialImpl(Core::Credentials::TokenCredentialOptions const& options);
45
57 static std::string FormatScopes(
58 std::vector<std::string> const& scopes,
59 bool asResource,
60 bool urlEncode = true);
61
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);
98
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)
126 {
127 return ParseToken(
128 jsonString,
129 accessTokenPropertyName,
130 expiresInPropertyName,
131 std::vector<std::string>{expiresOnPropertyName},
132 refreshInPropertyName,
133 proactiveRenewal);
134 }
135
143 class TokenRequest final {
144 private:
145 std::unique_ptr<std::string> m_body;
146 std::unique_ptr<Core::IO::MemoryBodyStream> m_memoryBodyStream;
147
148 public:
153 Core::Http::Request HttpRequest;
154
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()),
166 m_body->size())),
167 HttpRequest(std::move(httpMethod), std::move(url), m_memoryBodyStream.get())
168 {
169 HttpRequest.SetHeader("Content-Type", "application/x-www-form-urlencoded");
170 HttpRequest.SetHeader("Content-Length", std::to_string(m_body->size()));
171 }
172
177 explicit TokenRequest(Core::Http::Request httpRequest) : HttpRequest(std::move(httpRequest))
178 {
179 }
180 };
181
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;
202 };
203}}} // namespace Azure::Identity::_detail