/
opt
/
canhelp
/
node_modules
/
google-auth-library
/
build
/
src
/
auth
/
/opt/canhelp/node_modules/google-auth-library/build/src/auth
mkdir
upload
Name
Size
Mode
Actions
authclient.d.ts
10764
0644
edit
dl
rm
authclient.js
11247
0644
edit
dl
rm
awsclient.d.ts
5315
0644
edit
dl
rm
awsclient.js
7556
0644
edit
dl
rm
awsrequestsigner.d.ts
1626
0644
edit
dl
rm
awsrequestsigner.js
9442
0644
edit
dl
rm
baseexternalclient.d.ts
13020
0644
edit
dl
rm
baseexternalclient.js
20857
0644
edit
dl
rm
certificatesubjecttokensupplier.d.ts
2202
0644
edit
dl
rm
certificatesubjecttokensupplier.js
10619
0644
edit
dl
rm
computeclient.d.ts
1359
0644
edit
dl
rm
computeclient.js
4497
0644
edit
dl
rm
credentials.d.ts
2359
0644
edit
dl
rm
credentials.js
704
0644
edit
dl
rm
defaultawssecuritycredentialssupplier.d.ts
3795
0644
edit
dl
rm
defaultawssecuritycredentialssupplier.js
9330
0644
edit
dl
rm
downscopedclient.d.ts
6693
0644
edit
dl
rm
downscopedclient.js
12353
0644
edit
dl
rm
envDetect.d.ts
363
0644
edit
dl
rm
envDetect.js
2831
0644
edit
dl
rm
executable-response.d.ts
4489
0644
edit
dl
rm
executable-response.js
7519
0644
edit
dl
rm
externalAccountAuthorizedUserClient.d.ts
3173
0644
edit
dl
rm
externalAccountAuthorizedUserClient.js
10005
0644
edit
dl
rm
externalclient.d.ts
1528
0644
edit
dl
rm
externalclient.js
3048
0644
edit
dl
rm
filesubjecttokensupplier.d.ts
1608
0644
edit
dl
rm
filesubjecttokensupplier.js
3515
0644
edit
dl
rm
googleauth.d.ts
23574
0644
edit
dl
rm
googleauth.js
36374
0644
edit
dl
rm
iam.d.ts
623
0644
edit
dl
rm
iam.js
1373
0644
edit
dl
rm
identitypoolclient.d.ts
5626
0644
edit
dl
rm
identitypoolclient.js
6775
0644
edit
dl
rm
idtokenclient.d.ts
938
0644
edit
dl
rm
idtokenclient.js
2106
0644
edit
dl
rm
impersonated.d.ts
5687
0644
edit
dl
rm
impersonated.js
8654
0644
edit
dl
rm
jwtaccess.d.ts
2336
0644
edit
dl
rm
jwtaccess.js
7213
0644
edit
dl
rm
jwtclient.d.ts
5122
0644
edit
dl
rm
jwtclient.js
11256
0644
edit
dl
rm
loginticket.d.ts
5367
0644
edit
dl
rm
loginticket.js
1795
0644
edit
dl
rm
oauth2client.d.ts
25326
0644
edit
dl
rm
oauth2client.js
33662
0644
edit
dl
rm
oauth2common.d.ts
4094
0644
edit
dl
rm
oauth2common.js
8080
0644
edit
dl
rm
passthrough.d.ts
1097
0644
edit
dl
rm
passthrough.js
1842
0644
edit
dl
rm
pluggable-auth-client.d.ts
5485
0644
edit
dl
rm
pluggable-auth-client.js
10002
0644
edit
dl
rm
pluggable-auth-handler.d.ts
2109
0644
edit
dl
rm
pluggable-auth-handler.js
7260
0644
edit
dl
rm
refreshclient.d.ts
3436
0644
edit
dl
rm
refreshclient.js
6650
0644
edit
dl
rm
stscredentials.d.ts
5261
0644
edit
dl
rm
stscredentials.js
4738
0644
edit
dl
rm
urlsubjecttokensupplier.d.ts
2186
0644
edit
dl
rm
urlsubjecttokensupplier.js
2859
0644
edit
dl
rm
Edit:
/opt/canhelp/node_modules/google-auth-library/build/src/auth/identitypoolclient.js
(6775B)
"use strict"; // Copyright 2021 Google LLC // // 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. Object.defineProperty(exports, "__esModule", { value: true }); exports.IdentityPoolClient = void 0; const baseexternalclient_1 = require("./baseexternalclient"); const util_1 = require("../util"); const filesubjecttokensupplier_1 = require("./filesubjecttokensupplier"); const urlsubjecttokensupplier_1 = require("./urlsubjecttokensupplier"); const certificatesubjecttokensupplier_1 = require("./certificatesubjecttokensupplier"); const stscredentials_1 = require("./stscredentials"); const gaxios_1 = require("gaxios"); /** * Defines the Url-sourced and file-sourced external account clients mainly * used for K8s and Azure workloads. */ class IdentityPoolClient extends baseexternalclient_1.BaseExternalAccountClient { subjectTokenSupplier; /** * Instantiate an IdentityPoolClient instance using the provided JSON * object loaded from an external account credentials file. * An error is thrown if the credential is not a valid file-sourced or * url-sourced credential or a workforce pool user project is provided * with a non workforce audience. * @param options The external account options object typically loaded * from the external account JSON credential file. The camelCased options * are aliases for the snake_cased options. */ constructor(options) { super(options); const opts = (0, util_1.originalOrCamelOptions)(options); const credentialSource = opts.get('credential_source'); const subjectTokenSupplier = opts.get('subject_token_supplier'); // Validate credential sourcing configuration. if (!credentialSource && !subjectTokenSupplier) { throw new Error('A credential source or subject token supplier must be specified.'); } if (credentialSource && subjectTokenSupplier) { throw new Error('Only one of credential source or subject token supplier can be specified.'); } if (subjectTokenSupplier) { this.subjectTokenSupplier = subjectTokenSupplier; this.credentialSourceType = 'programmatic'; } else { const credentialSourceOpts = (0, util_1.originalOrCamelOptions)(credentialSource); const formatOpts = (0, util_1.originalOrCamelOptions)(credentialSourceOpts.get('format')); // Text is the default format type. const formatType = formatOpts.get('type') || 'text'; const formatSubjectTokenFieldName = formatOpts.get('subject_token_field_name'); if (formatType !== 'json' && formatType !== 'text') { throw new Error(`Invalid credential_source format "${formatType}"`); } if (formatType === 'json' && !formatSubjectTokenFieldName) { throw new Error('Missing subject_token_field_name for JSON credential_source format'); } const file = credentialSourceOpts.get('file'); const url = credentialSourceOpts.get('url'); const certificate = credentialSourceOpts.get('certificate'); const headers = credentialSourceOpts.get('headers'); if ((file && url) || (url && certificate) || (file && certificate)) { throw new Error('No valid Identity Pool "credential_source" provided, must be either file, url, or certificate.'); } else if (file) { this.credentialSourceType = 'file'; this.subjectTokenSupplier = new filesubjecttokensupplier_1.FileSubjectTokenSupplier({ filePath: file, formatType: formatType, subjectTokenFieldName: formatSubjectTokenFieldName, }); } else if (url) { this.credentialSourceType = 'url'; this.subjectTokenSupplier = new urlsubjecttokensupplier_1.UrlSubjectTokenSupplier({ url: url, formatType: formatType, subjectTokenFieldName: formatSubjectTokenFieldName, headers: headers, additionalGaxiosOptions: IdentityPoolClient.RETRY_CONFIG, }); } else if (certificate) { this.credentialSourceType = 'certificate'; const certificateSubjecttokensupplier = new certificatesubjecttokensupplier_1.CertificateSubjectTokenSupplier({ useDefaultCertificateConfig: certificate.use_default_certificate_config, certificateConfigLocation: certificate.certificate_config_location, trustChainPath: certificate.trust_chain_path, }); this.subjectTokenSupplier = certificateSubjecttokensupplier; } else { throw new Error('No valid Identity Pool "credential_source" provided, must be either file, url, or certificate.'); } } } /** * Triggered when a external subject token is needed to be exchanged for a GCP * access token via GCP STS endpoint. Gets a subject token by calling * the configured {@link SubjectTokenSupplier} * @return A promise that resolves with the external subject token. */ async retrieveSubjectToken() { const subjectToken = await this.subjectTokenSupplier.getSubjectToken(this.supplierContext); if (this.subjectTokenSupplier instanceof certificatesubjecttokensupplier_1.CertificateSubjectTokenSupplier) { const mtlsAgent = await this.subjectTokenSupplier.createMtlsHttpsAgent(); this.stsCredential = new stscredentials_1.StsCredentials({ tokenExchangeEndpoint: this.getTokenUrl(), clientAuthentication: this.clientAuth, transporter: new gaxios_1.Gaxios({ agent: mtlsAgent }), }); this.transporter = new gaxios_1.Gaxios({ ...(this.transporter.defaults || {}), agent: mtlsAgent, }); } return subjectToken; } } exports.IdentityPoolClient = IdentityPoolClient; //# sourceMappingURL=identitypoolclient.js.map
Save
cmd:
run