Skip to content

Commit 3aebe04

Browse files
authored
Formatting modifications based on personal preferences (#2)
* rename root to main.go * remove unused flagval * no longer export parseFlags * silencing uncommented models * formatting fixup of cfcurl and apihelper * task for doing super basic test against cf Former-commit-id: 124c616 [formerly 4c9fb56] Former-commit-id: bb1110c Former-commit-id: f1b8f5c
1 parent 9efef17 commit 3aebe04

File tree

7 files changed

+76
-31
lines changed

7 files changed

+76
-31
lines changed

Taskfile.yml

+5
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,8 @@ tasks:
1919
- cmd: go mod init github.com/aegershman/cf-trueup-plugin
2020
ignore_error: true
2121
- go mod tidy
22+
23+
# I know, not the best solution, but it'll work while I'm hacking away at stuff
24+
test:
25+
cmds:
26+
- cf trueup-report -o groundworks

apihelper/apihelper.go

+22-12
Original file line numberDiff line numberDiff line change
@@ -12,42 +12,50 @@ import (
1212
)
1313

1414
var (
15+
// ErrOrgNotFound -
1516
ErrOrgNotFound = errors.New("organization not found")
1617
)
1718

18-
//Organization representation
19+
// Organization -
1920
type Organization struct {
2021
URL string
2122
Name string
2223
QuotaURL string
2324
SpacesURL string
2425
}
2526

26-
//Space representation
27+
// Space -
2728
type Space struct {
2829
Name string
2930
SummaryURL string
3031
}
3132

32-
//App representation
33+
// App -
3334
type App struct {
3435
Actual float64
3536
Desire float64
3637
RAM float64
3738
}
3839

39-
//Service representation
40+
// Service -
4041
type Service struct {
4142
Label string
4243
ServicePlan string
4344
}
4445

46+
// Orgs -
4547
type Orgs []Organization
48+
49+
// Spaces -
4650
type Spaces []Space
51+
52+
// Apps -
4753
type Apps []App
54+
55+
// Services -
4856
type Services []Service
4957

50-
//CFAPIHelper to wrap cf curl results
58+
// CFAPIHelper wraps cf curl results
5159
type CFAPIHelper interface {
5260
GetTarget() string
5361
GetOrgs() (Orgs, error)
@@ -58,15 +66,17 @@ type CFAPIHelper interface {
5866
GetSpaceAppsAndServices(string) (Apps, Services, error)
5967
}
6068

61-
//APIHelper implementation
69+
// APIHelper -
6270
type APIHelper struct {
6371
cli plugin.CliConnection
6472
}
6573

74+
// New -
6675
func New(cli plugin.CliConnection) CFAPIHelper {
6776
return &APIHelper{cli}
6877
}
6978

79+
// GetTarget -
7080
func (api *APIHelper) GetTarget() string {
7181
envInfo, err := cfcurl.Curl(api.cli, "/v2/info")
7282
if nil != err {
@@ -81,7 +91,7 @@ func (api *APIHelper) GetTarget() string {
8191
return host
8292
}
8393

84-
//GetOrgs returns a struct that represents critical fields in the JSON
94+
// GetOrgs -
8595
func (api *APIHelper) GetOrgs() (Orgs, error) {
8696
orgsJSON, err := cfcurl.Curl(api.cli, "/v2/organizations")
8797
if nil != err {
@@ -113,7 +123,7 @@ func (api *APIHelper) GetOrgs() (Orgs, error) {
113123
return orgs, nil
114124
}
115125

116-
//GetOrg returns a struct that represents critical fields in the JSON
126+
// GetOrg -
117127
func (api *APIHelper) GetOrg(name string) (Organization, error) {
118128
query := fmt.Sprintf("name:%s", name)
119129
path := fmt.Sprintf("/v2/organizations?q=%s", url.QueryEscape(query))
@@ -145,7 +155,7 @@ func (api *APIHelper) orgResourceToOrg(o interface{}) Organization {
145155
}
146156
}
147157

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
149159
func (api *APIHelper) GetQuotaMemoryLimit(quotaURL string) (float64, error) {
150160
quotaJSON, err := cfcurl.Curl(api.cli, quotaURL)
151161
if nil != err {
@@ -154,7 +164,7 @@ func (api *APIHelper) GetQuotaMemoryLimit(quotaURL string) (float64, error) {
154164
return quotaJSON["entity"].(map[string]interface{})["memory_limit"].(float64), nil
155165
}
156166

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
158168
func (api *APIHelper) GetOrgMemoryUsage(org Organization) (float64, error) {
159169
usageJSON, err := cfcurl.Curl(api.cli, org.URL+"/memory_usage")
160170
if nil != err {
@@ -163,7 +173,7 @@ func (api *APIHelper) GetOrgMemoryUsage(org Organization) (float64, error) {
163173
return usageJSON["memory_usage_in_mb"].(float64), nil
164174
}
165175

166-
//GetOrgSpaces returns the spaces in an org.
176+
// GetOrgSpaces returns the spaces in an org
167177
func (api *APIHelper) GetOrgSpaces(spacesURL string) (Spaces, error) {
168178
nextURL := spacesURL
169179
spaces := []Space{}
@@ -191,7 +201,7 @@ func (api *APIHelper) GetOrgSpaces(spacesURL string) (Spaces, error) {
191201
return spaces, nil
192202
}
193203

194-
//GetSpaceAppsAndServices returns the apps and the services in a space
204+
// GetSpaceAppsAndServices returns the apps and the services in a space
195205
func (api *APIHelper) GetSpaceAppsAndServices(summaryURL string) (Apps, Services, error) {
196206
apps := []App{}
197207
services := []Service{}

cfcurl/cfcurl.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ func parseOutput(output []string) (map[string]interface{}, error) {
3838
return f.(map[string]interface{}), err
3939
}
4040

41-
// Curl calls cf curl and return the resulting json. This method will panic if
42-
// the api is depricated
41+
// Curl calls cf curl and returns the resulting json
42+
// This method will panic if the api is depricated
4343
func Curl(cli plugin.CliConnection, path string) (map[string]interface{}, error) {
4444
output, err := cli.CliCommandWithoutTerminalOutput("curl", path)
4545

@@ -50,7 +50,7 @@ func Curl(cli plugin.CliConnection, path string) (map[string]interface{}, error)
5050
return parseOutput(output)
5151
}
5252

53-
// CurlDepricated calls cf curl and return the resulting json, even if the api is depricated
53+
// CurlDepricated calls cf curl and returns the resulting json, even if the api is deprecated
5454
func CurlDepricated(cli plugin.CliConnection, path string) (map[string]interface{}, error) {
5555
output, err := callAndValidateCLI(cli, path)
5656
if nil != err {

go.mod

+2
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ require (
77
github.com/cloudfoundry/cli v6.47.2+incompatible
88
github.com/onsi/ginkgo v1.10.3 // indirect
99
github.com/onsi/gomega v1.7.1 // indirect
10+
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3 // indirect
11+
golang.org/x/sys v0.0.0-20191008105621-543471e840be // indirect
1012
)

go.sum

+6
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,18 @@ github.com/onsi/ginkgo v1.10.3 h1:OoxbjfXVZyod1fmWYhI7SEyaD8B00ynP3T+D5GiyHOY=
1313
github.com/onsi/ginkgo v1.10.3/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
1414
github.com/onsi/gomega v1.7.1 h1:K0jcRCwNQM3vFGh1ppMtDh/+7ApJrjldlX8fA0jDTLQ=
1515
github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY=
16+
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
1617
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd h1:nTDtHvHSdCn1m6ITfMRqtOd/9+7a3s8RBNOZ3eYZzJA=
1718
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
19+
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3 h1:0GoQqolDA55aaLxZyTzK/Y2ePZzZTUrRacwib7cNsYQ=
20+
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
1821
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f h1:wMNYb4v58l5UBM7MYRLPG6ZhfOqbKu7X5eyFl8ZhKvA=
1922
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
2023
golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e h1:o3PsSEY8E4eXWkXrIP9YJALUkVZqzHJT5DOasTyn8Vs=
2124
golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
25+
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
26+
golang.org/x/sys v0.0.0-20191008105621-543471e840be h1:QAcqgptGM8IQBC9K/RC4o+O9YmqEm0diQn9QmZw/0mU=
27+
golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
2228
golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=
2329
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
2430
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=

trueupreport.go main.go

+11-14
Original file line numberDiff line numberDiff line change
@@ -10,41 +10,38 @@ import (
1010
"github.com/cloudfoundry/cli/plugin"
1111
)
1212

13-
//UsageReportCmd the plugin
13+
// UsageReportCmd -
1414
type UsageReportCmd struct {
1515
apiHelper apihelper.CFAPIHelper
1616
}
1717

18-
// contains CLI flag values
19-
type flagVal struct {
18+
type flags struct {
2019
OrgName string
21-
Format string
2220
}
2321

24-
func ParseFlags(args []string) flagVal {
22+
func parseFlags(args []string) flags {
2523
flagSet := flag.NewFlagSet(args[0], flag.ContinueOnError)
2624

27-
// Create flags
2825
orgName := flagSet.String("o", "", "-o orgName")
2926

3027
err := flagSet.Parse(args[1:])
3128
if err != nil {
3229

3330
}
3431

35-
return flagVal{
32+
return flags{
3633
OrgName: string(*orgName),
3734
}
3835
}
3936

40-
//GetMetadata returns metatada
37+
// GetMetadata -
4138
func (cmd *UsageReportCmd) GetMetadata() plugin.PluginMetadata {
4239
return plugin.PluginMetadata{
4340
Name: "trueup-report",
4441
Version: plugin.VersionType{
4542
Major: 2,
4643
Minor: 4,
47-
Build: 0,
44+
Build: 1,
4845
},
4946
Commands: []plugin.Command{
5047
{
@@ -61,16 +58,16 @@ func (cmd *UsageReportCmd) GetMetadata() plugin.PluginMetadata {
6158
}
6259
}
6360

64-
//UsageReportCommand doer
61+
// UsageReportCommand -
6562
func (cmd *UsageReportCmd) UsageReportCommand(args []string) {
66-
flagVals := ParseFlags(args)
63+
flagss := parseFlags(args)
6764

6865
var orgs []models.Org
6966
var err error
7067
var report models.Report
7168

72-
if flagVals.OrgName != "" {
73-
org, err := cmd.getOrg(flagVals.OrgName)
69+
if flagss.OrgName != "" {
70+
org, err := cmd.getOrg(flagss.OrgName)
7471
if nil != err {
7572
fmt.Println(err)
7673
os.Exit(1)
@@ -183,7 +180,7 @@ func (cmd *UsageReportCmd) getAppsAndServices(summaryURL string) ([]models.App,
183180
return apps, services, nil
184181
}
185182

186-
//Run runs the plugin
183+
// Run -
187184
func (cmd *UsageReportCmd) Run(cli plugin.CliConnection, args []string) {
188185
if args[0] == "trueup-report" {
189186
cmd.apiHelper = apihelper.New(cli)

0 commit comments

Comments
 (0)