mirror of https://github.com/actions/toolkit
Merge pull request #893 from actions/users/tihuang/oidcupdate
react to OIDC service change.pull/919/head
commit
5c3e1c231d
File diff suppressed because it is too large
Load Diff
|
@ -4,11 +4,6 @@ import {IRequestOptions} from '@actions/http-client/interfaces'
|
|||
import {HttpClient} from '@actions/http-client'
|
||||
import {BearerCredentialHandler} from '@actions/http-client/auth'
|
||||
import {debug, setSecret} from './core'
|
||||
|
||||
interface TokenRequest {
|
||||
aud?: string
|
||||
}
|
||||
|
||||
interface TokenResponse {
|
||||
value?: string
|
||||
}
|
||||
|
@ -25,19 +20,17 @@ export class OidcClient {
|
|||
|
||||
return new HttpClient(
|
||||
'actions/oidc-client',
|
||||
[new BearerCredentialHandler(OidcClient.getRuntimeToken())],
|
||||
[new BearerCredentialHandler(OidcClient.getRequestToken())],
|
||||
requestOptions
|
||||
)
|
||||
}
|
||||
|
||||
private static getApiVersion(): string {
|
||||
return '2.0'
|
||||
}
|
||||
|
||||
private static getRuntimeToken(): string {
|
||||
const token = process.env['ACTIONS_RUNTIME_TOKEN']
|
||||
private static getRequestToken(): string {
|
||||
const token = process.env['ACTIONS_ID_TOKEN_REQUEST_TOKEN']
|
||||
if (!token) {
|
||||
throw new Error('Unable to get ACTIONS_RUNTIME_TOKEN env variable')
|
||||
throw new Error(
|
||||
'Unable to get ACTIONS_ID_TOKEN_REQUEST_TOKEN env variable'
|
||||
)
|
||||
}
|
||||
return token
|
||||
}
|
||||
|
@ -47,17 +40,14 @@ export class OidcClient {
|
|||
if (!runtimeUrl) {
|
||||
throw new Error('Unable to get ACTIONS_ID_TOKEN_REQUEST_URL env variable')
|
||||
}
|
||||
return `${runtimeUrl}?api-version=${OidcClient.getApiVersion()}`
|
||||
return runtimeUrl
|
||||
}
|
||||
|
||||
private static async postCall(
|
||||
id_token_url: string,
|
||||
data: TokenRequest
|
||||
): Promise<string> {
|
||||
private static async getCall(id_token_url: string): Promise<string> {
|
||||
const httpclient = OidcClient.createHttpClient()
|
||||
|
||||
const res = await httpclient
|
||||
.postJson<TokenResponse>(id_token_url, data)
|
||||
.getJson<TokenResponse>(id_token_url)
|
||||
.catch(error => {
|
||||
throw new Error(
|
||||
`Failed to get ID Token. \n
|
||||
|
@ -76,15 +66,15 @@ export class OidcClient {
|
|||
static async getIDToken(audience?: string): Promise<string> {
|
||||
try {
|
||||
// New ID Token is requested from action service
|
||||
const id_token_url: string = OidcClient.getIDTokenUrl()
|
||||
let id_token_url: string = OidcClient.getIDTokenUrl()
|
||||
if (audience) {
|
||||
const encodedAudience = encodeURIComponent(audience)
|
||||
id_token_url = `${id_token_url}&audience=${encodedAudience}`
|
||||
}
|
||||
|
||||
debug(`ID token url is ${id_token_url}`)
|
||||
|
||||
const data: TokenRequest = {aud: audience}
|
||||
|
||||
debug(`audience is ${audience ? audience : 'not defined'}`)
|
||||
|
||||
const id_token = await OidcClient.postCall(id_token_url, data)
|
||||
const id_token = await OidcClient.getCall(id_token_url)
|
||||
setSecret(id_token)
|
||||
return id_token
|
||||
} catch (error) {
|
||||
|
|
Loading…
Reference in New Issue