Loading [MathJax]/extensions/tex2jax.js
azure-identity
All Classes Files Functions Variables Typedefs Pages
managed_identity_source.hpp
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#pragma once
5
8
9#include <azure/core/credentials/credentials.hpp>
10#include <azure/core/credentials/token_credential_options.hpp>
11#include <azure/core/url.hpp>
12
13#include <memory>
14#include <string>
15#include <utility>
16
17namespace Azure { namespace Identity { namespace _detail {
18 class ManagedIdentitySource : protected TokenCredentialImpl {
19 private:
20 std::string m_clientId;
21 std::string m_authorityHost;
22
23 public:
24 virtual Core::Credentials::AccessToken GetToken(
25 Core::Credentials::TokenRequestContext const& tokenRequestContext,
26 Core::Context const& context) const = 0;
27
28 protected:
29 _detail::TokenCache m_tokenCache;
30
31 static Core::Url ParseEndpointUrl(
32 std::string const& credName,
33 std::string const& url,
34 char const* envVarName,
35 std::string const& credSource,
36 std::string const& clientId);
37
38 explicit ManagedIdentitySource(
39 std::string clientId,
40 std::string authorityHost,
41 Core::Credentials::TokenCredentialOptions const& options)
42 : TokenCredentialImpl(options), m_clientId(std::move(clientId)),
43 m_authorityHost(std::move(authorityHost))
44 {
45 }
46
47 std::string const& GetClientId() const { return m_clientId; }
48 std::string const& GetAuthorityHost() const { return m_authorityHost; }
49 };
50
51 class AppServiceManagedIdentitySource : public ManagedIdentitySource {
52 private:
53 Core::Http::Request m_request;
54
55 protected:
56 explicit AppServiceManagedIdentitySource(
57 std::string const& clientId,
58 std::string const& objectId,
59 std::string const& resourceId,
60 Core::Credentials::TokenCredentialOptions const& options,
61 Core::Url endpointUrl,
62 std::string const& secret,
63 std::string const& apiVersion,
64 std::string const& secretHeaderName,
65 std::string const& clientIdHeaderName);
66
67 template <typename T>
68 static std::unique_ptr<ManagedIdentitySource> Create(
69 std::string const& credName,
70 std::string const& clientId,
71 std::string const& objectId,
72 std::string const& resourceId,
73 Core::Credentials::TokenCredentialOptions const& options,
74 char const* endpointVarName,
75 char const* secretVarName,
76 char const* appServiceVersion);
77
78 public:
79 Core::Credentials::AccessToken GetToken(
80 Core::Credentials::TokenRequestContext const& tokenRequestContext,
81 Core::Context const& context) const final;
82 };
83
84 class AppServiceV2017ManagedIdentitySource final : public AppServiceManagedIdentitySource {
85 friend class AppServiceManagedIdentitySource;
86
87 private:
88 explicit AppServiceV2017ManagedIdentitySource(
89 std::string const& clientId,
90 std::string const& objectId,
91 std::string const& resourceId,
92 Core::Credentials::TokenCredentialOptions const& options,
93 Core::Url endpointUrl,
94 std::string const& secret)
95 : AppServiceManagedIdentitySource(
96 clientId,
97 objectId,
98 resourceId,
99 options,
100 std::move(endpointUrl),
101 secret,
102 "2017-09-01",
103 "secret",
104 "clientid")
105 {
106 }
107
108 public:
109 static std::unique_ptr<ManagedIdentitySource> Create(
110 std::string const& credName,
111 std::string const& clientId,
112 std::string const& objectId,
113 std::string const& resourceId,
114 Core::Credentials::TokenCredentialOptions const& options);
115 };
116
117 class AppServiceV2019ManagedIdentitySource final : public AppServiceManagedIdentitySource {
118 friend class AppServiceManagedIdentitySource;
119
120 private:
121 explicit AppServiceV2019ManagedIdentitySource(
122 std::string const& clientId,
123 std::string const& objectId,
124 std::string const& resourceId,
125 Core::Credentials::TokenCredentialOptions const& options,
126 Core::Url endpointUrl,
127 std::string const& secret)
128 : AppServiceManagedIdentitySource(
129 clientId,
130 objectId,
131 resourceId,
132 options,
133 std::move(endpointUrl),
134 secret,
135 "2019-08-01",
136 "X-IDENTITY-HEADER",
137 "client_id")
138 {
139 }
140
141 public:
142 static std::unique_ptr<ManagedIdentitySource> Create(
143 std::string const& credName,
144 std::string const& clientId,
145 std::string const& objectId,
146 std::string const& resourceId,
147 Core::Credentials::TokenCredentialOptions const& options);
148 };
149
150 class CloudShellManagedIdentitySource final : public ManagedIdentitySource {
151 private:
152 Core::Url m_url;
153
154 explicit CloudShellManagedIdentitySource(
155 std::string const& clientId,
156 Core::Credentials::TokenCredentialOptions const& options,
157 Core::Url endpointUrl);
158
159 public:
160 static std::unique_ptr<ManagedIdentitySource> Create(
161 std::string const& credName,
162 std::string const& clientId,
163 std::string const& objectId,
164 std::string const& resourceId,
165 Core::Credentials::TokenCredentialOptions const& options);
166
167 Core::Credentials::AccessToken GetToken(
168 Core::Credentials::TokenRequestContext const& tokenRequestContext,
169 Core::Context const& context) const override;
170 };
171
172 class AzureArcManagedIdentitySource final : public ManagedIdentitySource {
173 private:
174 Core::Url m_url;
175
176 explicit AzureArcManagedIdentitySource(
177 Core::Credentials::TokenCredentialOptions const& options,
178 Core::Url endpointUrl);
179
180 public:
181 static std::unique_ptr<ManagedIdentitySource> Create(
182 std::string const& credName,
183 std::string const& clientId,
184 std::string const& objectId,
185 std::string const& resourceId,
186 Core::Credentials::TokenCredentialOptions const& options);
187
188 Core::Credentials::AccessToken GetToken(
189 Core::Credentials::TokenRequestContext const& tokenRequestContext,
190 Core::Context const& context) const override;
191 };
192
193 class ImdsManagedIdentitySource final : public ManagedIdentitySource {
194 private:
195 Core::Http::Request m_request;
196
197 explicit ImdsManagedIdentitySource(
198 std::string const& clientId,
199 std::string const& objectId,
200 std::string const& resourceId,
201 Core::Credentials::TokenCredentialOptions const& options);
202
203 public:
204 static std::unique_ptr<ManagedIdentitySource> Create(
205 std::string const& credName,
206 std::string const& clientId,
207 std::string const& objectId,
208 std::string const& resourceId,
209 Core::Credentials::TokenCredentialOptions const& options);
210
211 Core::Credentials::AccessToken GetToken(
212 Core::Credentials::TokenRequestContext const& tokenRequestContext,
213 Core::Context const& context) const override;
214 };
215}}} // namespace Azure::Identity::_detail
Token cache.
Most common implementation part for a Token Credential.