-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.go
63 lines (54 loc) · 1.68 KB
/
cli.go
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
package main
import (
"flag"
"fmt"
"os"
"github.com/dorsha/go2oo/actions"
"github.com/dorsha/go2oo/restUtil"
)
// consts for all cli commands
const (
getConfigItems = "get-config-items"
getContentPacks = "show-content-packs"
trigger = "trigger"
)
const (
restURI = "/rest/latest/"
)
var (
url = flag.String("url", "http://localhost:8080/oo", "The URL of Central (i.e. http://localhost:8080/oo)")
user = flag.String("user", "", "User name for Central")
password = flag.String("password", "", "Password for Central")
action = flag.String("action", "", "What do you want to do? Avialble actions: "+getConfigItems+","+getContentPacks+","+trigger)
uuid = flag.String("uuid", "", "Flow uuid")
)
func main() {
flag.Parse()
if len(*action) == 0 {
fmt.Println("Action must be specified")
}
client := restUtil.CreateHTTPClient()
restURL := *url + restURI
switch {
case *action == getConfigItems:
fmt.Println("Getting configuration items from: " + *url)
ci := &actions.ConfigItem{}
restUtil.Get(*client, restURL+"/config", &ci.Props, *user, *password)
ci.HandleResponse()
case *action == getContentPacks:
fmt.Println("Getting content packs items from: " + *url)
cps := &actions.ContentPacks{}
restUtil.Get(*client, restURL+"/content-packs", cps, *user, *password)
cps.HandleResponse()
case *action == trigger:
if len(*uuid) == 0 {
fmt.Println("UUID must be specified (--uuid)")
os.Exit(1)
}
fmt.Println("Triggering flow: " + *uuid)
trigger := &actions.Trigger{FlowUUID: *uuid}
triggerResp := new(actions.TriggerResponse)
restUtil.Post(*client, restURL+"executions", trigger, triggerResp, *user, *password)
triggerResp.HandleResponse()
}
}