@@ -4,13 +4,13 @@ import (
4
4
"encoding/json"
5
5
"errors"
6
6
"fmt"
7
+ "github.com/OctopusDeploy/go-octopusdeploy/v2/pkg/client"
7
8
"github.com/OctopusDeploy/go-octopusdeploy/v2/pkg/resources"
8
9
"github.com/OctopusDeploy/go-octopusdeploy/v2/pkg/spaces"
9
10
"github.com/OctopusSolutionsEngineering/OctopusRecommendationEngine/internal/checks"
10
11
"github.com/OctopusSolutionsEngineering/OctopusRecommendationEngine/internal/checks/factory"
11
12
"github.com/OctopusSolutionsEngineering/OctopusRecommendationEngine/internal/config"
12
13
"github.com/OctopusSolutionsEngineering/OctopusRecommendationEngine/internal/executor"
13
- "github.com/OctopusSolutionsEngineering/OctopusTerraformTestFramework/octoclient"
14
14
"github.com/briandowns/spinner"
15
15
"go.uber.org/zap"
16
16
"go.uber.org/zap/zapcore"
@@ -51,7 +51,7 @@ func Entry(octolintConfig *config.OctolintConfig) ([]checks.OctopusCheckResult,
51
51
return nil , errors .New ("The URL \" " + octolintConfig .Url + "\" is not valid" )
52
52
}
53
53
54
- if octolintConfig .ApiKey == "" {
54
+ if octolintConfig .ApiKey == "" && octolintConfig . AccessToken == "" {
55
55
return nil , errors .New ("You must specify the API key with the -apiKey argument" )
56
56
}
57
57
@@ -60,7 +60,7 @@ func Entry(octolintConfig *config.OctolintConfig) ([]checks.OctopusCheckResult,
60
60
}
61
61
62
62
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 )
64
64
65
65
if err != nil {
66
66
return nil , errors .New ("Failed to create the Octopus client_wrapper. Check that the url, api key, and space are correct.\n The error was: " + err .Error ())
@@ -69,7 +69,7 @@ func Entry(octolintConfig *config.OctolintConfig) ([]checks.OctopusCheckResult,
69
69
octolintConfig .Space = spaceId
70
70
}
71
71
72
- client , err := octoclient . CreateClient (octolintConfig .Url , octolintConfig .Space , octolintConfig .ApiKey )
72
+ client , err := createClient (octolintConfig .Url , octolintConfig .Space , octolintConfig .ApiKey , octolintConfig . AccessToken )
73
73
74
74
if err != nil {
75
75
return nil , errors .New ("Failed to create the Octopus client_wrapper. Check that the url, api key, and space are correct.\n The error was: " + err .Error ())
@@ -109,12 +109,42 @@ func Entry(octolintConfig *config.OctolintConfig) ([]checks.OctopusCheckResult,
109
109
return results , nil
110
110
}
111
111
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
+
112
142
func ErrorExit (message string ) {
113
143
fmt .Println (message )
114
144
os .Exit (1 )
115
145
}
116
146
117
- func lookupSpaceAsName (octopusUrl string , spaceName string , apiKey string ) (string , error ) {
147
+ func lookupSpaceAsName (octopusUrl string , spaceName string , apiKey string , accessToken string ) (string , error ) {
118
148
if len (strings .TrimSpace (spaceName )) == 0 {
119
149
return "" , errors .New ("space can not be empty" )
120
150
}
@@ -129,6 +159,8 @@ func lookupSpaceAsName(octopusUrl string, spaceName string, apiKey string) (stri
129
159
130
160
if apiKey != "" {
131
161
req .Header .Set ("X-Octopus-ApiKey" , apiKey )
162
+ } else if accessToken != "" {
163
+ req .Header .Set ("Authorization" , "Bearer " + accessToken )
132
164
}
133
165
134
166
res , err := http .DefaultClient .Do (req )
0 commit comments