-
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathimportURL.go
More file actions
159 lines (135 loc) · 4.44 KB
/
Copy pathimportURL.go
File metadata and controls
159 lines (135 loc) · 4.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/*
* Copyright The Microcks Authors.
*
* 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.
*/
package cmd
import (
"fmt"
"os"
"strconv"
"strings"
"github.com/microcks/microcks-cli/pkg/config"
"github.com/microcks/microcks-cli/pkg/connectors"
"github.com/spf13/cobra"
)
func NewImportURLCommand(globalClientOpts *connectors.ClientOptions) *cobra.Command {
var importURLCmd = &cobra.Command{
Use: "import-url",
Short: "import API artifacts from URL on Microcks server",
Long: `import API artifacts from URL on Microcks server`,
Run: func(cmd *cobra.Command, args []string) {
// Parse subcommand args first.
if len(args) == 0 {
fmt.Println("import-url command require <specificationFile1URL[:primary],specificationFile2URL[:primary]> args")
os.Exit(1)
}
specificationFiles := args[0]
config.InsecureTLS = globalClientOpts.InsecureTLS
config.CaCertPaths = globalClientOpts.CaCertPaths
config.Verbose = globalClientOpts.Verbose
var mc connectors.MicrocksClient
if globalClientOpts.ServerAddr != "" && globalClientOpts.ClientId != "" && globalClientOpts.ClientSecret != "" {
// create client with server address
mc = connectors.NewMicrocksClient(globalClientOpts.ServerAddr)
keycloakURL, err := mc.GetKeycloakURL()
if err != nil {
fmt.Printf("Got error when invoking Microcks client retrieving config: %s", err)
os.Exit(1)
}
var oauthToken string = "unauthenticated-token"
if keycloakURL != "null" {
// If Keycloak is enabled, retrieve an OAuth token using Keycloak Client.
kc := connectors.NewKeycloakClient(keycloakURL, globalClientOpts.ClientId, globalClientOpts.ClientSecret)
oauthToken, err = kc.ConnectAndGetToken()
if err != nil {
fmt.Printf("Got error when invoking Keycloak client: %s", err)
os.Exit(1)
}
//fmt.Printf("Retrieve OAuthToken: %s", oauthToken)
}
//Set Auth token
mc.SetOAuthToken(oauthToken)
} else {
localConfig, err := config.ReadLocalConfig(globalClientOpts.ConfigPath)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
if localConfig == nil {
fmt.Println("Please login to perform operation...")
os.Exit(1)
}
if globalClientOpts.Context == "" {
globalClientOpts.Context = localConfig.CurrentContext
}
mc, err = connectors.NewClient(*globalClientOpts)
if err != nil {
fmt.Printf("error %v", err)
os.Exit(1)
}
}
sepSpecificationFiles := strings.Split(specificationFiles, ",")
for _, f := range sepSpecificationFiles {
var mainArtifact bool
var secret string
f, mainArtifact, secret = parseImportURLArg(f)
// Try downloading the artifcat
msg, err := mc.DownloadArtifact(f, mainArtifact, secret)
if err != nil {
fmt.Printf("Got error when invoking Microcks client importing Artifact: %s", err)
os.Exit(1)
}
fmt.Printf("Microcks has discovered '%s'\n", msg)
}
},
}
return importURLCmd
}
func parseImportURLArg(f string) (string, bool, string) {
mainArtifact := true
secret := ""
// Check if URL starts with https or http
if strings.HasPrefix(f, "https://") || strings.HasPrefix(f, "http://") {
parts := strings.Split(f, ":")
n := len(parts)
hasSecret := false
hasMain := false
if n >= 3 {
// Check if parts[n-2] is a boolean. If it is, then parts[n-1] is the secret,
// and parts[n-2] is mainArtifact.
if val, err := strconv.ParseBool(parts[n-2]); err == nil {
mainArtifact = val
secret = parts[n-1]
hasSecret = true
hasMain = true
}
}
if !hasSecret && n >= 2 {
// Check if parts[n-1] is a boolean. If it is, then parts[n-1] is mainArtifact.
if val, err := strconv.ParseBool(parts[n-1]); err == nil {
mainArtifact = val
hasMain = true
}
}
// Reconstruct the URL
if hasSecret {
f = strings.Join(parts[:n-2], ":")
} else if hasMain {
f = strings.Join(parts[:n-1], ":")
} else {
f = strings.Join(parts, ":")
}
}
return f, mainArtifact, secret
}