forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
service_plan_visibility.go
72 lines (62 loc) · 2.52 KB
/
service_plan_visibility.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
66
67
68
69
70
71
72
package api
import (
"fmt"
"strings"
"code.cloudfoundry.org/cli/cf/api/resources"
"code.cloudfoundry.org/cli/cf/configuration/coreconfig"
"code.cloudfoundry.org/cli/cf/models"
"code.cloudfoundry.org/cli/cf/net"
)
//go:generate counterfeiter . ServicePlanVisibilityRepository
type ServicePlanVisibilityRepository interface {
Create(string, string) error
List() ([]models.ServicePlanVisibilityFields, error)
Delete(string) error
Search(map[string]string) ([]models.ServicePlanVisibilityFields, error)
}
type CloudControllerServicePlanVisibilityRepository struct {
config coreconfig.Reader
gateway net.Gateway
}
func NewCloudControllerServicePlanVisibilityRepository(config coreconfig.Reader, gateway net.Gateway) CloudControllerServicePlanVisibilityRepository {
return CloudControllerServicePlanVisibilityRepository{
config: config,
gateway: gateway,
}
}
func (repo CloudControllerServicePlanVisibilityRepository) Create(serviceGUID, orgGUID string) error {
url := "/v2/service_plan_visibilities"
data := fmt.Sprintf(`{"service_plan_guid":"%s", "organization_guid":"%s"}`, serviceGUID, orgGUID)
return repo.gateway.CreateResource(repo.config.APIEndpoint(), url, strings.NewReader(data))
}
func (repo CloudControllerServicePlanVisibilityRepository) List() (visibilities []models.ServicePlanVisibilityFields, err error) {
err = repo.gateway.ListPaginatedResources(
repo.config.APIEndpoint(),
"/v2/service_plan_visibilities",
resources.ServicePlanVisibilityResource{},
func(resource interface{}) bool {
if spv, ok := resource.(resources.ServicePlanVisibilityResource); ok {
visibilities = append(visibilities, spv.ToFields())
}
return true
})
return
}
func (repo CloudControllerServicePlanVisibilityRepository) Delete(servicePlanGUID string) error {
path := fmt.Sprintf("/v2/service_plan_visibilities/%s", servicePlanGUID)
return repo.gateway.DeleteResourceSynchronously(repo.config.APIEndpoint(), path)
}
func (repo CloudControllerServicePlanVisibilityRepository) Search(queryParams map[string]string) ([]models.ServicePlanVisibilityFields, error) {
var visibilities []models.ServicePlanVisibilityFields
err := repo.gateway.ListPaginatedResources(
repo.config.APIEndpoint(),
combineQueryParametersWithURI("/v2/service_plan_visibilities", queryParams),
resources.ServicePlanVisibilityResource{},
func(resource interface{}) bool {
if sp, ok := resource.(resources.ServicePlanVisibilityResource); ok {
visibilities = append(visibilities, sp.ToFields())
}
return true
})
return visibilities, err
}