@@ -12,42 +12,50 @@ import (
12
12
)
13
13
14
14
var (
15
+ // ErrOrgNotFound -
15
16
ErrOrgNotFound = errors .New ("organization not found" )
16
17
)
17
18
18
- //Organization representation
19
+ // Organization -
19
20
type Organization struct {
20
21
URL string
21
22
Name string
22
23
QuotaURL string
23
24
SpacesURL string
24
25
}
25
26
26
- //Space representation
27
+ // Space -
27
28
type Space struct {
28
29
Name string
29
30
SummaryURL string
30
31
}
31
32
32
- //App representation
33
+ // App -
33
34
type App struct {
34
35
Actual float64
35
36
Desire float64
36
37
RAM float64
37
38
}
38
39
39
- //Service representation
40
+ // Service -
40
41
type Service struct {
41
42
Label string
42
43
ServicePlan string
43
44
}
44
45
46
+ // Orgs -
45
47
type Orgs []Organization
48
+
49
+ // Spaces -
46
50
type Spaces []Space
51
+
52
+ // Apps -
47
53
type Apps []App
54
+
55
+ // Services -
48
56
type Services []Service
49
57
50
- //CFAPIHelper to wrap cf curl results
58
+ // CFAPIHelper wraps cf curl results
51
59
type CFAPIHelper interface {
52
60
GetTarget () string
53
61
GetOrgs () (Orgs , error )
@@ -58,15 +66,17 @@ type CFAPIHelper interface {
58
66
GetSpaceAppsAndServices (string ) (Apps , Services , error )
59
67
}
60
68
61
- //APIHelper implementation
69
+ // APIHelper -
62
70
type APIHelper struct {
63
71
cli plugin.CliConnection
64
72
}
65
73
74
+ // New -
66
75
func New (cli plugin.CliConnection ) CFAPIHelper {
67
76
return & APIHelper {cli }
68
77
}
69
78
79
+ // GetTarget -
70
80
func (api * APIHelper ) GetTarget () string {
71
81
envInfo , err := cfcurl .Curl (api .cli , "/v2/info" )
72
82
if nil != err {
@@ -81,7 +91,7 @@ func (api *APIHelper) GetTarget() string {
81
91
return host
82
92
}
83
93
84
- //GetOrgs returns a struct that represents critical fields in the JSON
94
+ // GetOrgs -
85
95
func (api * APIHelper ) GetOrgs () (Orgs , error ) {
86
96
orgsJSON , err := cfcurl .Curl (api .cli , "/v2/organizations" )
87
97
if nil != err {
@@ -113,7 +123,7 @@ func (api *APIHelper) GetOrgs() (Orgs, error) {
113
123
return orgs , nil
114
124
}
115
125
116
- //GetOrg returns a struct that represents critical fields in the JSON
126
+ // GetOrg -
117
127
func (api * APIHelper ) GetOrg (name string ) (Organization , error ) {
118
128
query := fmt .Sprintf ("name:%s" , name )
119
129
path := fmt .Sprintf ("/v2/organizations?q=%s" , url .QueryEscape (query ))
@@ -145,7 +155,7 @@ func (api *APIHelper) orgResourceToOrg(o interface{}) Organization {
145
155
}
146
156
}
147
157
148
- //GetQuotaMemoryLimit retruns the amount of memory (in MB) that the org is allowed
158
+ // GetQuotaMemoryLimit returns memory quota (in MB) of a given org
149
159
func (api * APIHelper ) GetQuotaMemoryLimit (quotaURL string ) (float64 , error ) {
150
160
quotaJSON , err := cfcurl .Curl (api .cli , quotaURL )
151
161
if nil != err {
@@ -154,7 +164,7 @@ func (api *APIHelper) GetQuotaMemoryLimit(quotaURL string) (float64, error) {
154
164
return quotaJSON ["entity" ].(map [string ]interface {})["memory_limit" ].(float64 ), nil
155
165
}
156
166
157
- //GetOrgMemoryUsage returns the amount of memory (in MB) that the org is consuming
167
+ // GetOrgMemoryUsage returns amount of memory (in MB) a given org is currently using
158
168
func (api * APIHelper ) GetOrgMemoryUsage (org Organization ) (float64 , error ) {
159
169
usageJSON , err := cfcurl .Curl (api .cli , org .URL + "/memory_usage" )
160
170
if nil != err {
@@ -163,7 +173,7 @@ func (api *APIHelper) GetOrgMemoryUsage(org Organization) (float64, error) {
163
173
return usageJSON ["memory_usage_in_mb" ].(float64 ), nil
164
174
}
165
175
166
- //GetOrgSpaces returns the spaces in an org.
176
+ // GetOrgSpaces returns the spaces in an org
167
177
func (api * APIHelper ) GetOrgSpaces (spacesURL string ) (Spaces , error ) {
168
178
nextURL := spacesURL
169
179
spaces := []Space {}
@@ -191,7 +201,7 @@ func (api *APIHelper) GetOrgSpaces(spacesURL string) (Spaces, error) {
191
201
return spaces , nil
192
202
}
193
203
194
- //GetSpaceAppsAndServices returns the apps and the services in a space
204
+ // GetSpaceAppsAndServices returns the apps and the services in a space
195
205
func (api * APIHelper ) GetSpaceAppsAndServices (summaryURL string ) (Apps , Services , error ) {
196
206
apps := []App {}
197
207
services := []Service {}
0 commit comments