Skip to content

Commit f342a79

Browse files
committed
Added support for access token
1 parent 6aa0971 commit f342a79

File tree

4 files changed

+43
-6
lines changed

4 files changed

+43
-6
lines changed

cmd/azure/octolint.go

+3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ type AzureFunctionRequest struct {
2929
func octoterraHandler(w http.ResponseWriter, r *http.Request) {
3030
// Allow the more sensitive values to be passed as headers
3131
apiKey := r.Header.Get("X-Octopus-ApiKey")
32+
accessToken := r.Header.Get("X-Octopus-AccessToken")
3233
url := r.Header.Get("X-Octopus-Url")
3334

3435
respBytes, err := io.ReadAll(r.Body)
@@ -81,6 +82,8 @@ func octoterraHandler(w http.ResponseWriter, r *http.Request) {
8182

8283
if apiKey != "" {
8384
commandLineArgs = append(commandLineArgs, "-apiKey", apiKey)
85+
} else if accessToken != "" {
86+
commandLineArgs = append(commandLineArgs, "-accessToken", accessToken)
8487
}
8588

8689
if url != "" {

internal/args/args.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ func ParseArgs(args []string) (*config.OctolintConfig, error) {
2929
flags.StringVar(&octolintConfig.Url, "url", "", "The Octopus URL e.g. https://myinstance.octopus.app")
3030
flags.StringVar(&octolintConfig.Space, "space", "", "The Octopus space name or ID")
3131
flags.StringVar(&octolintConfig.ApiKey, "apiKey", "", "The Octopus api key")
32+
flags.StringVar(&octolintConfig.AccessToken, "accessToken", "", "The Octopus access token")
3233
flags.StringVar(&octolintConfig.SkipTests, "skipTests", "", "A comma separated list of tests to skip")
3334
flags.StringVar(&octolintConfig.OnlyTests, "onlyTests", "", "A comma separated list of tests to include")
3435
flags.StringVar(&octolintConfig.ConfigFile, "configFile", "octolint", "The name of the configuration file to use. Do not include the extension. Defaults to octolint")
@@ -98,7 +99,7 @@ func ParseArgs(args []string) (*config.OctolintConfig, error) {
9899
octolintConfig.Url = os.Getenv("OCTOPUS_CLI_SERVER")
99100
}
100101

101-
if octolintConfig.ApiKey == "" {
102+
if octolintConfig.ApiKey == "" && octolintConfig.AccessToken == "" {
102103
octolintConfig.ApiKey = os.Getenv("OCTOPUS_CLI_API_KEY")
103104
}
104105

internal/config/args.go

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ type OctolintConfig struct {
99
Url string
1010
Space string
1111
ApiKey string
12+
AccessToken string
1213
SkipTests string
1314
OnlyTests string
1415
VerboseErrors bool

internal/entry/entry.go

+37-5
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ import (
44
"encoding/json"
55
"errors"
66
"fmt"
7+
"github.com/OctopusDeploy/go-octopusdeploy/v2/pkg/client"
78
"github.com/OctopusDeploy/go-octopusdeploy/v2/pkg/resources"
89
"github.com/OctopusDeploy/go-octopusdeploy/v2/pkg/spaces"
910
"github.com/OctopusSolutionsEngineering/OctopusRecommendationEngine/internal/checks"
1011
"github.com/OctopusSolutionsEngineering/OctopusRecommendationEngine/internal/checks/factory"
1112
"github.com/OctopusSolutionsEngineering/OctopusRecommendationEngine/internal/config"
1213
"github.com/OctopusSolutionsEngineering/OctopusRecommendationEngine/internal/executor"
13-
"github.com/OctopusSolutionsEngineering/OctopusTerraformTestFramework/octoclient"
1414
"github.com/briandowns/spinner"
1515
"go.uber.org/zap"
1616
"go.uber.org/zap/zapcore"
@@ -51,7 +51,7 @@ func Entry(octolintConfig *config.OctolintConfig) ([]checks.OctopusCheckResult,
5151
return nil, errors.New("The URL \"" + octolintConfig.Url + "\" is not valid")
5252
}
5353

54-
if octolintConfig.ApiKey == "" {
54+
if octolintConfig.ApiKey == "" && octolintConfig.AccessToken == "" {
5555
return nil, errors.New("You must specify the API key with the -apiKey argument")
5656
}
5757

@@ -60,7 +60,7 @@ func Entry(octolintConfig *config.OctolintConfig) ([]checks.OctopusCheckResult,
6060
}
6161

6262
if !strings.HasPrefix(octolintConfig.Space, "Spaces-") {
63-
spaceId, err := lookupSpaceAsName(octolintConfig.Url, octolintConfig.Space, octolintConfig.ApiKey)
63+
spaceId, err := lookupSpaceAsName(octolintConfig.Url, octolintConfig.Space, octolintConfig.ApiKey, octolintConfig.AccessToken)
6464

6565
if err != nil {
6666
return nil, errors.New("Failed to create the Octopus client_wrapper. Check that the url, api key, and space are correct.\nThe error was: " + err.Error())
@@ -69,7 +69,7 @@ func Entry(octolintConfig *config.OctolintConfig) ([]checks.OctopusCheckResult,
6969
octolintConfig.Space = spaceId
7070
}
7171

72-
client, err := octoclient.CreateClient(octolintConfig.Url, octolintConfig.Space, octolintConfig.ApiKey)
72+
client, err := createClient(octolintConfig.Url, octolintConfig.Space, octolintConfig.ApiKey, octolintConfig.AccessToken)
7373

7474
if err != nil {
7575
return nil, errors.New("Failed to create the Octopus client_wrapper. Check that the url, api key, and space are correct.\nThe error was: " + err.Error())
@@ -109,12 +109,42 @@ func Entry(octolintConfig *config.OctolintConfig) ([]checks.OctopusCheckResult,
109109
return results, nil
110110
}
111111

112+
func createClient(octopusUrl string, spaceId string, apiKey string, accessToken string) (*client.Client, error) {
113+
url, err := url.Parse(octopusUrl)
114+
115+
if err != nil {
116+
return nil, err
117+
}
118+
119+
if apiKey != "" {
120+
return createClientApiKey(url, spaceId, apiKey)
121+
}
122+
123+
return createClientAccessToken(url, spaceId, accessToken)
124+
}
125+
126+
func createClientApiKey(apiURL *url.URL, spaceId string, apiKey string) (*client.Client, error) {
127+
apiKeyCredential, err := client.NewApiKey(apiKey)
128+
if err != nil {
129+
return nil, err
130+
}
131+
return client.NewClientWithCredentials(nil, apiURL, apiKeyCredential, spaceId, "")
132+
}
133+
134+
func createClientAccessToken(apiURL *url.URL, spaceId string, accessToken string) (*client.Client, error) {
135+
accessTokenCredential, err := client.NewAccessToken(accessToken)
136+
if err != nil {
137+
return nil, err
138+
}
139+
return client.NewClientWithCredentials(nil, apiURL, accessTokenCredential, spaceId, "")
140+
}
141+
112142
func ErrorExit(message string) {
113143
fmt.Println(message)
114144
os.Exit(1)
115145
}
116146

117-
func lookupSpaceAsName(octopusUrl string, spaceName string, apiKey string) (string, error) {
147+
func lookupSpaceAsName(octopusUrl string, spaceName string, apiKey string, accessToken string) (string, error) {
118148
if len(strings.TrimSpace(spaceName)) == 0 {
119149
return "", errors.New("space can not be empty")
120150
}
@@ -129,6 +159,8 @@ func lookupSpaceAsName(octopusUrl string, spaceName string, apiKey string) (stri
129159

130160
if apiKey != "" {
131161
req.Header.Set("X-Octopus-ApiKey", apiKey)
162+
} else if accessToken != "" {
163+
req.Header.Set("Authorization", "Bearer "+accessToken)
132164
}
133165

134166
res, err := http.DefaultClient.Do(req)

0 commit comments

Comments
 (0)