Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
270 changes: 270 additions & 0 deletions core/packages/google-auth-library-nodejs/src/auth/gdchclient.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,270 @@
// Copyright 2026 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.

import * as crypto from 'crypto';
import * as fs from 'fs';
import * as https from 'https';
import {GaxiosOptions} from 'gaxios';
import {
GetTokenResponse,
OAuth2Client,
OAuth2ClientOptions,
} from './oauth2client';
import {CredentialRequest, Credentials} from './credentials';

const DEFAULT_LIFETIME_IN_SECONDS = 3600;
export const GDCH_CREDENTIALS_TYPE = 'gdch_credentials';

export interface GdchClientOptions extends OAuth2ClientOptions {
projectId?: string | null;
privateKeyId?: string;
privateKey?: string;
serviceIdentityName?: string;
tokenServerUri?: string;
caCertPath?: string;
apiAudience?: string;
lifetime?: number;
}

export interface GdchCredentialsInput {
type: 'gdch_credentials';
format_version: string;
project: string;
private_key_id: string;
private_key: string;
name: string;
token_uri: string;
ca_cert_path?: string;
}

export class GdchClient extends OAuth2Client {
projectId?: string;
privateKeyId?: string;
privateKey?: string;
serviceIdentityName?: string;
tokenServerUri?: string;
caCertPath?: string;
apiAudience?: string;
lifetime: number;
private gdchOptions: GdchClientOptions;

constructor(options: GdchClientOptions = {}) {
super(options);
this.gdchOptions = options;
this.projectId = options.projectId || undefined;
this.privateKeyId = options.privateKeyId;
this.privateKey = options.privateKey;
this.serviceIdentityName = options.serviceIdentityName;
this.tokenServerUri = options.tokenServerUri;
this.caCertPath = options.caCertPath;
this.apiAudience = options.apiAudience;
this.lifetime = options.lifetime || DEFAULT_LIFETIME_IN_SECONDS;

// Start with an expired refresh token, which will automatically be
// refreshed before the first API call is made.
this.credentials = {refresh_token: 'gdch-placeholder', expiry_date: 1};
}

createWithGdchAudience(apiAudience: string): GdchClient {
if (!apiAudience) {
throw new Error(
'Audience cannot be null or empty for GDCH service account credentials.'
);
}
return new GdchClient({
...this.gdchOptions,
projectId: this.projectId,
privateKeyId: this.privateKeyId,
privateKey: this.privateKey,
serviceIdentityName: this.serviceIdentityName,
tokenServerUri: this.tokenServerUri,
caCertPath: this.caCertPath,
lifetime: this.lifetime,
apiAudience,
});
}

fromJSON(json: GdchCredentialsInput): void {
if (!json) {
throw new Error(
'Must pass in a JSON object containing the GDCH credentials settings.'
);
}
if (json.type !== GDCH_CREDENTIALS_TYPE) {
throw new Error(
`The incoming JSON object does not have the "${GDCH_CREDENTIALS_TYPE}" type`
);
}
if (json.format_version !== '1') {
throw new Error('Only format version 1 is supported.');
}
if (!json.project) {
throw new Error('The incoming JSON object does not contain a project field');
}
if (!json.private_key_id) {
throw new Error(
'The incoming JSON object does not contain a private_key_id field'
);
}
if (!json.private_key) {
throw new Error('The incoming JSON object does not contain a private_key field');
}
if (!json.name) {
throw new Error('The incoming JSON object does not contain a name field');
}
if (!json.token_uri) {
throw new Error('The incoming JSON object does not contain a token_uri field');
}

this.projectId = json.project;
this.privateKeyId = json.private_key_id;
this.privateKey = json.private_key;
this.serviceIdentityName = json.name;
this.tokenServerUri = json.token_uri;
this.caCertPath = json.ca_cert_path;

this.gdchOptions = {
...this.gdchOptions,
projectId: json.project,
privateKeyId: json.private_key_id,
privateKey: json.private_key,
serviceIdentityName: json.name,
tokenServerUri: json.token_uri,
caCertPath: json.ca_cert_path,
};
}

protected async refreshTokenNoCache(): Promise<GetTokenResponse> {
if (!this.apiAudience) {
throw new Error(
'Audience cannot be null or empty for GDCH service account credentials. ' +
'Specify the audience by calling createWithGdchAudience.'
);
}
if (!this.privateKey) {
throw new Error('Private key is not configured for GDCH credentials.');
}
if (!this.privateKeyId) {
throw new Error('Private key ID is not configured for GDCH credentials.');
}
if (!this.projectId) {
throw new Error('Project is not configured for GDCH credentials.');
}
if (!this.serviceIdentityName) {
throw new Error('Service identity name is not configured for GDCH credentials.');
}
if (!this.tokenServerUri) {
throw new Error('Token server URI is not configured for GDCH credentials.');
}

const assertion = this.createAssertion();

const data = {
audience: this.apiAudience,
grant_type: 'urn:ietf:params:oauth:grant-type:token-exchange',
requested_token_type: 'urn:ietf:params:oauth:token-type:access_token',
subject_token: assertion,
subject_token_type: 'urn:k8s:params:oauth:token-type:serviceaccount',
};

const requestOpts: GaxiosOptions = {
url: this.tokenServerUri,
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
data,
responseType: 'json',
};

if (this.caCertPath) {
try {
const ca = await fs.promises.readFile(this.caCertPath);
requestOpts.agent = new https.Agent({ ca });
} catch (err) {
if (err instanceof Error) {
err.message = `Error reading certificate file from CA cert path, value '${this.caCertPath}': ${err.message}`;
}
throw err;
}
}

try {
const res = await this.transporter.request<CredentialRequest>(requestOpts);
const tokenResponse = res.data;
if (!tokenResponse.access_token) {
throw new Error('Token response did not contain an access_token.');
}
const tokens: Credentials = {
access_token: tokenResponse.access_token,
token_type: 'Bearer',
};

if (tokenResponse.expires_in) {
tokens.expiry_date = new Date().getTime() + tokenResponse.expires_in * 1000;
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Use Date.now() instead of new Date().getTime() for better performance and consistency with other parts of the file (e.g., line 223).

Suggested change
tokens.expiry_date = new Date().getTime() + tokenResponse.expires_in * 1000;
tokens.expiry_date = Date.now() + tokenResponse.expires_in * 1000;

}

this.emit('tokens', tokens);
return {res, tokens};
} catch (e) {
if (e instanceof Error) {
e.message = `Error getting access token for GDCH service account: ${e.message}, iss: ${this.serviceIdentityName}`;
}
throw e;
}
}

private createAssertion(): string {
const header = {
alg: 'ES256',
typ: 'JWT',
kid: this.privateKeyId,
};

const issSub = `system:serviceaccount:${this.projectId}:${this.serviceIdentityName}`;
const currentTime = Math.floor(Date.now() / 1000);
const payload = {
iss: issSub,
sub: issSub,
iat: currentTime,
exp: currentTime + this.lifetime,
aud: this.tokenServerUri,
};

const encodedHeader = this.base64UrlEncode(JSON.stringify(header));
const encodedPayload = this.base64UrlEncode(JSON.stringify(payload));
const signingInput = `${encodedHeader}.${encodedPayload}`;

const signature = crypto.sign(
'sha256',
Buffer.from(signingInput),
{
key: this.privateKey!,
dsaEncoding: 'ieee-p1363',
}
);

const encodedSignature = this.base64UrlEncode(signature);
return `${signingInput}.${encodedSignature}`;
}

private base64UrlEncode(str: string | Buffer): string {
const buffer = typeof str === 'string' ? Buffer.from(str) : str;
return buffer
.toString('base64')
.replace(/=/g, '')
.replace(/\+/g, '-')
.replace(/\//g, '_');
}
}
15 changes: 12 additions & 3 deletions core/packages/google-auth-library-nodejs/src/auth/googleauth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ import {
ExternalAccountAuthorizedUserClient,
ExternalAccountAuthorizedUserClientOptions,
} from './externalAccountAuthorizedUserClient';
import {
GdchClient,
GDCH_CREDENTIALS_TYPE,
GdchCredentialsInput,
} from './gdchclient';
import {originalOrCamelOptions} from '../util';
import {AnyAuthClient, AnyAuthClientConstructor} from '..';

Expand All @@ -54,7 +59,8 @@ export type JSONClient =
| UserRefreshClient
| BaseExternalAccountClient
| ExternalAccountAuthorizedUserClient
| Impersonated;
| Impersonated
| GdchClient;

export interface ProjectIdCallback {
(err?: Error | null, projectId?: string | null): void;
Expand Down Expand Up @@ -764,7 +770,7 @@ export class GoogleAuth<T extends AuthClient = AuthClient> {
* @returns JWT or UserRefresh Client with data
*/
fromJSON(
json: JWTInput | ImpersonatedJWTInput,
json: JWTInput | ImpersonatedJWTInput | GdchCredentialsInput,
options: AuthClientOptions = {},
): JSONClient {
let client: JSONClient;
Expand All @@ -789,11 +795,14 @@ export class GoogleAuth<T extends AuthClient = AuthClient> {
...json,
...options,
} as ExternalAccountAuthorizedUserClientOptions);
} else if (json.type === GDCH_CREDENTIALS_TYPE) {
client = new GdchClient(options);
client.fromJSON(json as GdchCredentialsInput);
} else {
(options as JWTOptions).scopes = this.scopes;
client = new JWT(options);
this.setGapicJWTValues(client);
client.fromJSON(json);
client.fromJSON(json as JWTInput);
}

if (preferredUniverseDomain) {
Expand Down
4 changes: 4 additions & 0 deletions core/packages/google-auth-library-nodejs/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ export {
ExternalAccountAuthorizedUserClientOptions,
} from './auth/externalAccountAuthorizedUserClient';
export {PassThroughClient} from './auth/passthrough';
export {
GdchClient,
GdchClientOptions,
} from './auth/gdchclient';
export * from './gtoken/googleToken';

type ALL_EXPORTS = (typeof import('./'))[keyof typeof import('./')];
Expand Down
Loading
Loading