FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
google-auth-library-php/src/CredentialsLoader.php at main · creativilization/google-auth-library-php · GitHub
creativilization
/
google-auth-library-php
Public
forked from
googleapis/google-auth-library-php
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
google-auth-library-php
/
src
/
CredentialsLoader.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
318 lines (291 loc) · 10.9 KB
Breadcrumbs
google-auth-library-php
/
src
/
CredentialsLoader.php
Copy path
File metadata and controls
318 lines (291 loc) · 10.9 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
<?php
/*
* Copyright 2015 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace
Google
\
Auth
;
use
Google
\
Auth
\
Credentials
\
ExternalAccountCredentials
;
use
Google
\
Auth
\
Credentials
\
ImpersonatedServiceAccountCredentials
;
use
Google
\
Auth
\
Credentials
\
InsecureCredentials
;
use
Google
\
Auth
\
Credentials
\
ServiceAccountCredentials
;
use
Google
\
Auth
\
Credentials
\
UserRefreshCredentials
;
use
RuntimeException
;
use
UnexpectedValueException
;
/**
* CredentialsLoader contains the behaviour used to locate and find default
* credentials files on the file system.
*/
abstract
class
CredentialsLoader
implements
GetUniverseDomainInterface,
FetchAuthTokenInterface,
UpdateMetadataInterface
{
use
UpdateMetadataTrait;
const
TOKEN_CREDENTIAL_URI
=
'
https://oauth2.googleapis.com/token
'
;
const
ENV_VAR
=
'
GOOGLE_APPLICATION_CREDENTIALS
'
;
const
QUOTA_PROJECT_ENV_VAR
=
'
GOOGLE_CLOUD_QUOTA_PROJECT
'
;
const
WELL_KNOWN_PATH
=
'
gcloud/application_default_credentials.json
'
;
const
NON_WINDOWS_WELL_KNOWN_PATH_BASE
=
'
.config
'
;
const
MTLS_WELL_KNOWN_PATH
=
'
.secureConnect/context_aware_metadata.json
'
;
const
MTLS_CERT_ENV_VAR
=
'
GOOGLE_API_USE_CLIENT_CERTIFICATE
'
;
/**
* @param string $cause
* @return string
*/
private
static
function
unableToReadEnv
(
$
cause
)
{
$
msg
=
'
Unable to read the credential file specified by
'
;
$
msg
.=
'
GOOGLE_APPLICATION_CREDENTIALS:
'
;
$
msg
.=
$
cause
;
return
$
msg
;
}
/**
* @return bool
*/
private
static
function
isOnWindows
()
{
return
strtoupper
(
substr
(
PHP_OS
,
0
,
3
)) ===
'
WIN
'
;
}
/**
* Load a JSON key from the path specified in the environment.
*
* Load a JSON key from the path specified in the environment
* variable GOOGLE_APPLICATION_CREDENTIALS. Return null if
* GOOGLE_APPLICATION_CREDENTIALS is not specified.
*
* @return array<mixed>|null JSON key | null
*/
public
static
function
fromEnv
()
{
$
path
=
self
::
getEnv
(
self
::
ENV_VAR
);
if
(
empty
(
$
path
)) {
return
null
;
}
if
(!
file_exists
(
$
path
)) {
$
cause
=
'
file
'
.
$
path
.
'
does not exist
'
;
throw
new
\
DomainException
(
self
::
unableToReadEnv
(
$
cause
));
}
$
jsonKey
=
file_get_contents
(
$
path
);
return
json_decode
((
string
)
$
jsonKey
,
true
);
}
/**
* Load a JSON key from a well known path.
*
* The well known path is OS dependent:
*
* * windows: %APPDATA%/gcloud/application_default_credentials.json
* * others: $HOME/.config/gcloud/application_default_credentials.json
*
* If the file does not exist, this returns null.
*
* @return array<mixed>|null JSON key | null
*/
public
static
function
fromWellKnownFile
()
{
$
rootEnv
=
self
::
isOnWindows
() ?
'
APPDATA
'
:
'
HOME
'
;
$
path
= [
self
::
getEnv
(
$
rootEnv
)];
if
(!
self
::
isOnWindows
()) {
$
path
[] =
self
::
NON_WINDOWS_WELL_KNOWN_PATH_BASE
;
}
$
path
[] =
self
::
WELL_KNOWN_PATH
;
$
path
=
implode
(
DIRECTORY_SEPARATOR
,
$
path
);
if
(!
file_exists
(
$
path
)) {
return
null
;
}
$
jsonKey
=
file_get_contents
(
$
path
);
return
json_decode
((
string
)
$
jsonKey
,
true
);
}
/**
* Create a new Credentials instance.
*
* @deprecated This method is being deprecated because of a potential security risk.
*
* This method does not validate the credential configuration. The security
* risk occurs when a credential configuration is accepted from a source
* that is not under your control and used without validation on your side.
*
* If you know that you will be loading credential configurations of a
* specific type, it is recommended to use a credential-type-specific
* method.
* This will ensure that an unexpected credential type with potential for
* malicious intent is not loaded unintentionally. You might still have to do
* validation for certain credential types. Please follow the recommendation
* for that method. For example, if you want to load only service accounts,
* you can create the {@see ServiceAccountCredentials} explicitly:
*
* ```
* use Google\Auth\Credentials\ServiceAccountCredentials;
* $creds = new ServiceAccountCredentials($scopes, $json);
* ```
*
* If you are loading your credential configuration from an untrusted source and have
* not mitigated the risks (e.g. by validating the configuration yourself), make
* these changes as soon as possible to prevent security risks to your environment.
*
* Regardless of the method used, it is always your responsibility to validate
* configurations received from external sources.
*
* @see https://cloud.google.com/docs/authentication/external/externally-sourced-credentials
*
* @param string|string[] $scope
* @param array<mixed> $jsonKey
* @param string|string[] $defaultScope
* @return ServiceAccountCredentials|UserRefreshCredentials|ImpersonatedServiceAccountCredentials|ExternalAccountCredentials
*/
public
static
function
makeCredentials
(
$
scope
,
array
$
jsonKey
,
$
defaultScope
=
null
) {
if
(!
array_key_exists
(
'
type
'
,
$
jsonKey
)) {
throw
new
\
InvalidArgumentException
(
'
json key is missing the type field
'
);
}
if
(
$
jsonKey
[
'
type
'
] ==
'
service_account
'
) {
// Do not pass $defaultScope to ServiceAccountCredentials
return
new
ServiceAccountCredentials
(
$
scope
,
$
jsonKey
);
}
if
(
$
jsonKey
[
'
type
'
] ==
'
authorized_user
'
) {
$
anyScope
=
$
scope
?:
$
defaultScope
;
return
new
UserRefreshCredentials
(
$
anyScope
,
$
jsonKey
);
}
if
(
$
jsonKey
[
'
type
'
] ==
'
impersonated_service_account
'
) {
return
new
ImpersonatedServiceAccountCredentials
(
$
scope
,
$
jsonKey
,
null
,
$
defaultScope
);
}
if
(
$
jsonKey
[
'
type
'
] ==
'
external_account
'
) {
$
anyScope
=
$
scope
?:
$
defaultScope
;
return
new
ExternalAccountCredentials
(
$
anyScope
,
$
jsonKey
);
}
throw
new
\
InvalidArgumentException
(
'
invalid value in the type field
'
);
}
/**
* Create an authorized HTTP Client from an instance of FetchAuthTokenInterface.
*
* @param FetchAuthTokenInterface $fetcher is used to fetch the auth token
* @param array<mixed> $httpClientOptions (optional) Array of request options to apply.
* @param callable|null $httpHandler (optional) http client to fetch the token.
* @param callable|null $tokenCallback (optional) function to be called when a new token is fetched.
* @return \GuzzleHttp\Client
*/
public
static
function
makeHttpClient
(
FetchAuthTokenInterface
$
fetcher
,
array
$
httpClientOptions
= [],
?
callable
$
httpHandler
=
null
,
?
callable
$
tokenCallback
=
null
) {
$
middleware
=
new
Middleware
\
AuthTokenMiddleware
(
$
fetcher
,
$
httpHandler
,
$
tokenCallback
);
$
stack
= \
GuzzleHttp
\HandlerStack::
create
();
$
stack
->
push
(
$
middleware
);
return
new
\
GuzzleHttp
\
Client
([
'
handler
'
=>
$
stack
,
'
auth
'
=>
'
google_auth
'
,
] +
$
httpClientOptions
);
}
/**
* Create a new instance of InsecureCredentials.
*
* @return InsecureCredentials
*/
public
static
function
makeInsecureCredentials
()
{
return
new
InsecureCredentials
();
}
/**
* Fetch a quota project from the environment variable
* GOOGLE_CLOUD_QUOTA_PROJECT. Return null if
* GOOGLE_CLOUD_QUOTA_PROJECT is not specified.
*
* @return string|null
*/
public
static
function
quotaProjectFromEnv
()
{
return
self
::
getEnv
(
self
::
QUOTA_PROJECT_ENV_VAR
) ?:
null
;
}
/**
* Gets a callable which returns the default device certification.
*
* @throws UnexpectedValueException
* @return callable|null
*/
public
static
function
getDefaultClientCertSource
()
{
if
(!
$
clientCertSourceJson
=
self
::
loadDefaultClientCertSourceFile
()) {
return
null
;
}
$
clientCertSourceCmd
=
$
clientCertSourceJson
[
'
cert_provider_command
'
];
return
function
()
use
(
$
clientCertSourceCmd
) {
$
cmd
=
array_map
(
'
escapeshellarg
'
,
$
clientCertSourceCmd
);
exec
(
implode
(
'
'
,
$
cmd
),
$
output
,
$
returnVar
);
if
(
0
===
$
returnVar
) {
return
implode
(
PHP_EOL
,
$
output
);
}
throw
new
RuntimeException
(
'
"cert_provider_command" failed with a nonzero exit code
'
);
};
}
/**
* Determines whether or not the default device certificate should be loaded.
*
* @return bool
*/
public
static
function
shouldLoadClientCertSource
()
{
return
filter_var
(
self
::
getEnv
(
self
::
MTLS_CERT_ENV_VAR
),
FILTER_VALIDATE_BOOLEAN
);
}
/**
* @return array{cert_provider_command:string[]}|null
*/
private
static
function
loadDefaultClientCertSourceFile
()
{
$
rootEnv
=
self
::
isOnWindows
() ?
'
APPDATA
'
:
'
HOME
'
;
$
path
=
sprintf
(
'
%s/%s
'
,
self
::
getEnv
(
$
rootEnv
),
self
::
MTLS_WELL_KNOWN_PATH
);
if
(!
file_exists
(
$
path
)) {
return
null
;
}
$
jsonKey
=
file_get_contents
(
$
path
);
$
clientCertSourceJson
=
json_decode
((
string
)
$
jsonKey
,
true
);
if
(!
$
clientCertSourceJson
) {
throw
new
UnexpectedValueException
(
'
Invalid client cert source JSON
'
);
}
if
(!
isset
(
$
clientCertSourceJson
[
'
cert_provider_command
'
])) {
throw
new
UnexpectedValueException
(
'
cert source requires "cert_provider_command"
'
);
}
if
(!
is_array
(
$
clientCertSourceJson
[
'
cert_provider_command
'
])) {
throw
new
UnexpectedValueException
(
'
cert source expects "cert_provider_command" to be an array
'
);
}
return
$
clientCertSourceJson
;
}
/**
* Get the universe domain from the credential. Defaults to "googleapis.com"
* for all credential types which do not support universe domain.
*
* @return string
*/
public
function
getUniverseDomain
():
string
{
return
self
::
DEFAULT_UNIVERSE_DOMAIN
;
}
private
static
function
getEnv
(
string
$
env
):
mixed
{
return
getenv
(
$
env
) ?:
$
_ENV
[
$
env
] ??
null
;
}
}
Back
|
FazBrowse Home
|
New Git URL