-
Notifications
You must be signed in to change notification settings - Fork 24
feat: Add Azure DevOps adapter #4963
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+79
−1
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
3bd9e4c
chore: Add Azure DevOps adapter
JorTurFer 9a89bbf
chore: Add Azure DevOps adapter
JorTurFer c1e0812
chore: Add Azure DevOps adapter
JorTurFer 89bc44e
chore: Add Azure DevOps adapter
JorTurFer 0eade06
chore: Add Azure DevOps adapter
JorTurFer 3f219dc
chore: Add Azure DevOps adapter
JorTurFer df72fd3
Merge branch 'main' into support-azdo
cgoetz-inovex File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| v0.21.1 | ||
| v0.22.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| package oidcadapters | ||
|
|
||
| import ( | ||
| "context" | ||
| "encoding/json" | ||
| "fmt" | ||
| "io" | ||
| "net/http" | ||
| "net/url" | ||
| ) | ||
|
|
||
| const ( | ||
| adoPipelineOIDCAPIVersion = "7.1" | ||
| adoAudience = "api://AzureADTokenExchange" | ||
| ) | ||
|
|
||
| func RequestAzureDevOpsOIDCToken(oidcRequestUrl, oidcRequestToken, serviceConnectionID string) OIDCTokenFunc { | ||
| return func(ctx context.Context) (string, error) { | ||
| req, err := http.NewRequestWithContext(ctx, http.MethodPost, oidcRequestUrl, http.NoBody) | ||
| if err != nil { | ||
| return "", fmt.Errorf("azureDevOpsAssertion: failed to build request: %w", err) | ||
| } | ||
|
|
||
| query, err := url.ParseQuery(req.URL.RawQuery) | ||
| if err != nil { | ||
| return "", fmt.Errorf("azureDevOpsAssertion: cannot parse URL query") | ||
| } | ||
|
|
||
| if query.Get("api-version") == "" { | ||
| query.Add("api-version", adoPipelineOIDCAPIVersion) | ||
| } | ||
|
|
||
| if query.Get("serviceConnectionId") == "" && serviceConnectionID != "" { | ||
| query.Add("serviceConnectionId", serviceConnectionID) | ||
| } | ||
|
|
||
| if query.Get("audience") == "" { | ||
| query.Set("audience", adoAudience) // Azure DevOps requires this specific audience for OIDC tokens | ||
cgoetz-inovex marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
|
|
||
| req.URL.RawQuery = query.Encode() | ||
|
|
||
| req.Header.Set("Accept", "application/json") | ||
| req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", oidcRequestToken)) | ||
| req.Header.Set("Content-Type", "application/json") | ||
|
|
||
| resp, err := http.DefaultClient.Do(req) | ||
| if err != nil { | ||
| return "", fmt.Errorf("azureDevOpsAssertion: cannot request token: %w", err) | ||
| } | ||
|
|
||
| defer func() { | ||
| _ = resp.Body.Close() | ||
| }() | ||
| body, err := io.ReadAll(io.LimitReader(resp.Body, 1<<20)) | ||
| if err != nil { | ||
| return "", fmt.Errorf("azureDevOpsAssertion: cannot parse response: %w", err) | ||
| } | ||
|
|
||
| if c := resp.StatusCode; c < 200 || c > 299 { | ||
| return "", fmt.Errorf("azureDevOpsAssertion: received HTTP status %d with response: %s", resp.StatusCode, body) | ||
| } | ||
|
|
||
| var tokenRes struct { | ||
| Value *string `json:"oidcToken"` | ||
| } | ||
| if err := json.Unmarshal(body, &tokenRes); err != nil || tokenRes.Value == nil { | ||
| return "", fmt.Errorf("azureDevOpsAssertion: cannot unmarshal response: %w", err) | ||
| } | ||
|
|
||
| return *tokenRes.Value, nil | ||
| } | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.