forked from ECSTeam/cf_get_events
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsearch_service.go
65 lines (52 loc) · 2.08 KB
/
search_service.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 main
import (
"encoding/json"
"fmt"
"strconv"
"strings"
"code.cloudfoundry.org/cli/plugin"
)
// ServiceSearchResults represents top level attributes of JSON response from Cloud Foundry API
type ServiceSearchResults struct {
TotalResults int `json:"total_results"`
TotalPages int `json:"total_pages"`
Resources []ServiceSearchResources `json:"resources"`
}
// ServiceSearchResources represents resources attribute of JSON response from Cloud Foundry API
type ServiceSearchResources struct {
Entity ServiceSearchEntity `json:"entity"`
Metadata Metadata `json:"metadata"`
}
// ServiceSearchEntity represents entity attribute of resources attribute within JSON response from Cloud Foundry API
type ServiceSearchEntity struct {
Label string `json:"label"`
}
// GetServiceData requests all of the Service data from Cloud Foundry
func (c Events) GetServices(cli plugin.CliConnection) map[string]ServiceSearchEntity {
var data = make(map[string]ServiceSearchEntity)
services := c.GetServiceData(cli)
for _, val := range services.Resources {
data[val.Metadata.GUID] = val.Entity //((ServiceSearchEntity)(val.Entity)) // Label
}
return data
}
// GetServiceData requests all of the Service data from Cloud Foundry
func (c Events) GetServiceData(cli plugin.CliConnection) ServiceSearchResults {
var res ServiceSearchResults
res = c.UnmarshallServiceSearchResults("/v2/services?order-direction=asc&results-per-page=100", cli)
if res.TotalPages > 1 {
for i := 2; i <= res.TotalPages; i++ {
apiUrl := fmt.Sprintf("/v2/services?order-direction=asc&page=%v&results-per-page=100", strconv.Itoa(i))
tRes := c.UnmarshallServiceSearchResults(apiUrl, cli)
res.Resources = append(res.Resources, tRes.Resources...)
}
}
return res
}
func (c Events) UnmarshallServiceSearchResults(apiUrl string, cli plugin.CliConnection) ServiceSearchResults {
var tRes ServiceSearchResults
cmd := []string{"curl", apiUrl}
output, _ := cli.CliCommandWithoutTerminalOutput(cmd...)
json.Unmarshal([]byte(strings.Join(output, "")), &tRes)
return tRes
}