forked from krujos/cfcurl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cfcurl.go
65 lines (49 loc) · 1.51 KB
/
cfcurl.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
65
package cfcurl
import (
"encoding/json"
"errors"
"strings"
"github.com/cloudfoundry/cli/plugin"
)
func callAndValidateCLI(cli plugin.CliConnection, path string) ([]string, error) {
output, err := cli.CliCommandWithoutTerminalOutput("curl", path)
if nil != err {
return nil, err
}
if nil == output || 0 == len(output) {
return nil, errors.New("CF API returned no output")
}
return output, nil
}
func parseOutput(output []string) (map[string]interface{}, error) {
if nil == output || 0 == len(output) {
return nil, errors.New("CF API returned no output")
}
data := strings.Join(output, "\n")
if 0 == len(data) || "" == data {
return nil, errors.New("Failed to join output")
}
var f interface{}
err := json.Unmarshal([]byte(data), &f)
return f.(map[string]interface{}), err
}
// Curl calls cf curl and return the resulting json. This method will panic if
// the api is depricated
func Curl(cli plugin.CliConnection, path string) (map[string]interface{}, error) {
output, err := cli.CliCommandWithoutTerminalOutput("curl", path)
if nil != err {
return nil, err
}
return parseOutput(output)
}
// CurlDepricated calls cf curl and return the resulting json, even if the api is depricated
func CurlDepricated(cli plugin.CliConnection, path string) (map[string]interface{}, error) {
output, err := callAndValidateCLI(cli, path)
if nil != err {
return nil, err
}
if strings.Contains(output[len(output)-1], "Endpoint deprecated") {
output = output[:len(output)-1]
}
return parseOutput(output)
}