-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImpersonatedCredentials.php
223 lines (182 loc) · 7.05 KB
/
ImpersonatedCredentials.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<?php declare(strict_types=1);
namespace ericnorris\GCPAuthContrib\Credentials;
use GuzzleHttp\ClientInterface;
use GuzzleHttp\Psr7\Request;
use ericnorris\GCPAuthContrib\Contracts\Credentials;
use ericnorris\GCPAuthContrib\Internal\Contracts\CacheAwareCredentials;
use ericnorris\GCPAuthContrib\Internal\Contracts\ParsesRFC3339Timestamps;
use ericnorris\GCPAuthContrib\Response\FetchAccessTokenResponse;
use ericnorris\GCPAuthContrib\Response\FetchIdentityTokenResponse;
use ericnorris\GCPAuthContrib\Response\GenerateSignatureResponse;
/**
* The ImpersonatedCredentials class uses the {@link https://cloud.google.com/iam/docs/reference/credentials/rest
* IAM Credentials API} in order to impersonate a target service account following the {@link
* https://cloud.google.com/iam/docs/creating-short-lived-service-account-credentials short lived credentials} guide.
*/
class ImpersonatedCredentials implements Credentials, CacheAwareCredentials {
use ParsesRFC3339Timestamps;
const SERVICE_ENDPOINT = "https://iamcredentials.googleapis.com/v1/";
const ACCESS_TOKEN_URI = "projects/-/serviceAccounts/%s:generateAccessToken";
const IDENTITY_TOKEN_URI = "projects/-/serviceAccounts/%s:generateIdToken";
const SIGN_BLOB_URI = "projects/-/serviceAccounts/%s:signBlob";
private const IAM_CREDENTIALS_SCOPES = ["https://www.googleapis.com/auth/cloud-platform"];
/** @var ClientInterface */
private $httpClient;
/** @var Credentials */
private $source;
/** @var string */
private $target;
/** @var string[] */
private $delegates;
/**
* @param ClientInterface $client
* @param Credentials $source
* @param string $target
* @param string[] $delegates
*/
public function __construct(ClientInterface $client, Credentials $source, string $target, array $delegates = []) {
$this->httpClient = $client;
$this->source = $source;
$this->target = $target;
$this->delegates = $delegates;
}
/**
* Fetches an access token using the IAM Credentials REST API
* {@link https://cloud.google.com/iam/docs/reference/credentials/rest/v1/projects.serviceAccounts/generateAccessToken
* generateAccessToken} endpoint.
*
* @param string[] $scopes An array of scopes to request for the target service account's access token, must not be
* empty.
*
* @return FetchAccessTokenResponse
*/
public function fetchAccessToken(array $scopes = []): FetchAccessTokenResponse {
if (empty($scopes)) {
throw new \InvalidArgumentException("\$scopes array cannot be empty");
}
$params = [
"lifetime" => "3600s",
"scope" => $scopes,
];
if (!empty($this->delegates)) {
$params["delegates"] = $this->delegates;
}
$responseData = $this->sendIAMCredentialsRequest(
\sprintf(self::ACCESS_TOKEN_URI, $this->target),
$params,
);
if (!isset($responseData["expireTime"])) {
throw new \DomainException("Response is missing 'expireTime' field");
}
return new FetchAccessTokenResponse(
(string)$responseData["accessToken"],
$this->parseRFC3339Timestamp((string)$responseData["expireTime"])->getTimestamp(),
implode(" ", $scopes),
"Bearer",
);
}
/**
* Fetches an access token using the IAM Credentials REST API
* {@link https://cloud.google.com/iam/docs/reference/credentials/rest/v1/projects.serviceAccounts/generateIdToken
* generateIdToken} endpoint.
*
* @param string $audience The desired 'aud' claim in the Google-signed ID token.
*
* @return FetchIdentityTokenResponse
*/
public function fetchIdentityToken(string $audience): FetchIdentityTokenResponse {
$params = [
"audience" => $audience,
"includeEmail" => true,
];
if (!empty($this->delegates)) {
$params["delegates"] = $this->delegates;
}
$responseData = $this->sendIAMCredentialsRequest(
\sprintf(self::IDENTITY_TOKEN_URI, $this->target),
$params,
);
return new FetchIdentityTokenResponse((string)$responseData["token"]);
}
/**
* Not supported.
*/
public function fetchProjectID(): string {
throw new \BadMethodCallException(__CLASS__ . " does not support " . __FUNCTION__);
}
/**
* Returns the impersonated service account email.
*
* @return string
*/
public function fetchServiceAccountEmail(): string {
return $this->target;
}
/**
* Generates a signature using the IAM Credentials REST API
* {@link https://cloud.google.com/iam/docs/reference/credentials/rest/v1/projects.serviceAccounts/signBlob
* signBlob} endpoint.
*
* @param string $toSign The bytes to sign. The string is sent base64 encoded.
*
* @return GenerateSignatureResponse
*/
public function generateSignature(string $toSign): GenerateSignatureResponse {
$params = [
"payload" => \base64_encode($toSign)
];
if (!empty($this->delegates)) {
$params["delegates"] = $this->delegates;
}
$responseData = $this->sendIAMCredentialsRequest(
\sprintf(self::SIGN_BLOB_URI, $this->target),
$params,
);
return new GenerateSignatureResponse(
(string)$responseData["keyId"],
(string)$responseData["signedBlob"],
);
}
/**
* Returns true if this class supports the given capability.
*/
public function supportsCapability(string $capability): bool {
switch ($capability) {
case Credentials::CAN_FETCH_PROJECT_ID:
return false;
case Credentials::CAN_FETCH_SERVICE_ACCOUNT_EMAIL:
return true;
case Credentials::CAN_GENERATE_SIGNATURE:
return true;
}
}
private function sendIAMCredentialsRequest(string $uri, array $params): array {
$sourceAccessToken = $this->source
->fetchAccessToken(self::IAM_CREDENTIALS_SCOPES)
->getAccessToken();
$response = $this->httpClient->send(new Request(
"POST",
self::SERVICE_ENDPOINT . $uri,
[
"Accept" => "application/json",
"Authorization" => "Bearer {$sourceAccessToken}",
"Content-Type" => "application/json",
],
\json_encode($params),
));
$responseBody = (string)$response->getBody();
return (array)\json_decode($responseBody, true, 16, JSON_THROW_ON_ERROR);
}
/**
* Returns additional data about this particular instance to avoid cache collisions for other impersonated accounts.
*
* @return string[]
*/
public function extendCacheKey(): array {
return [
\get_class($this->source),
$this->target,
...$this->delegates,
];
}
}