-
Notifications
You must be signed in to change notification settings - Fork 4.4k
/
helpers.go
64 lines (54 loc) · 1.66 KB
/
helpers.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
64
package intention
import (
"fmt"
"strings"
"github.com/hashicorp/consul/api"
)
// ParseIntentionTarget parses a target of the form <partition>/<namespace>/<name> and returns
// the distinct parts. In some cases the partition and namespace may be elided and this function
// will return the empty string for them then.
// If two parts are present, it is assumed they are namespace/name and not partition/name.
func ParseIntentionTarget(input string) (name string, ns string, partition string, err error) {
ss := strings.Split(input, "/")
switch len(ss) {
case 1: // Name only
name = ss[0]
return
case 2: // namespace/name
ns = ss[0]
name = ss[1]
return
case 3: // partition/namespace/name
partition = ss[0]
ns = ss[1]
name = ss[2]
return
default:
return "", "", "", fmt.Errorf("input can contain at most two '/'")
}
}
func GetFromArgs(client *api.Client, args []string) (*api.Intention, error) {
switch len(args) {
case 1:
id := args[0]
//nolint:staticcheck
ixn, _, err := client.Connect().IntentionGet(id, nil)
if err != nil {
return nil, fmt.Errorf("Error reading the intention: %s", err)
} else if ixn == nil {
return nil, fmt.Errorf("Intention not found with ID %q", id)
}
return ixn, nil
case 2:
source, destination := args[0], args[1]
ixn, _, err := client.Connect().IntentionGetExact(source, destination, nil)
if err != nil {
return nil, fmt.Errorf("Error reading the intention: %s", err)
} else if ixn == nil {
return nil, fmt.Errorf("Intention not found with source %q and destination %q", source, destination)
}
return ixn, nil
default:
return nil, fmt.Errorf("command requires exactly 1 or 2 arguments")
}
}