forked from ECSTeam/cf_get_events
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsearch_serviceinstance.go
65 lines (55 loc) · 2.4 KB
/
search_serviceinstance.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"
)
// ServiceInstanceSearchResults represents top level attributes of JSON response from Cloud Foundry API
type ServiceInstanceSearchResults struct {
TotalResults int `json:"total_results"`
TotalPages int `json:"total_pages"`
Resources []ServiceInstanceSearchResources `json:"resources"`
}
// ServiceInstanceSearchResources represents resources attribute of JSON response from Cloud Foundry API
type ServiceInstanceSearchResources struct {
Entity ServiceInstanceSearchEntity `json:"entity"`
Metadata Metadata `json:"metadata"`
}
// ServiceInstanceSearchEntity represents entity attribute of resources attribute within JSON response from Cloud Foundry API
type ServiceInstanceSearchEntity struct {
Name string `json:"name"`
SpaceGuid string `json:"space_guid"`
ServicePlanGuid string `json:"service_plan_guid"`
Type string `json:"type"`
}
// GetServiceInstanceData requests all of the Service Instance data from Cloud Foundry
func (c Events) GetServiceInstances(cli plugin.CliConnection) map[string]ServiceInstanceSearchEntity {
var data = make(map[string]ServiceInstanceSearchEntity)
services := c.GetServiceInstanceData(cli)
for _, val := range services.Resources {
data[val.Metadata.GUID] = val.Entity
}
return data
}
// GetServiceInstanceData requests all of the Service Instance data from Cloud Foundry
func (c Events) GetServiceInstanceData(cli plugin.CliConnection) ServiceInstanceSearchResults {
var res ServiceInstanceSearchResults
res = c.UnmarshallServiceInstanceSearchResults("/v2/service_instances?order-direction=asc&results-per-page=100", cli)
if res.TotalPages > 1 {
for i := 2; i <= res.TotalPages; i++ {
apiUrl := fmt.Sprintf("/v2/service_instances?order-direction=asc&page=%v&results-per-page=100", strconv.Itoa(i))
tRes := c.UnmarshallServiceInstanceSearchResults(apiUrl, cli)
res.Resources = append(res.Resources, tRes.Resources...)
}
}
return res
}
func (c Events) UnmarshallServiceInstanceSearchResults(apiUrl string, cli plugin.CliConnection) ServiceInstanceSearchResults {
var tRes ServiceInstanceSearchResults
cmd := []string{"curl", apiUrl}
output, _ := cli.CliCommandWithoutTerminalOutput(cmd...)
json.Unmarshal([]byte(strings.Join(output, "")), &tRes)
return tRes
}