forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stacks.go
85 lines (70 loc) · 2.28 KB
/
stacks.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
73
74
75
76
77
78
79
80
81
82
83
84
85
package stacks
import (
"fmt"
"net/url"
"github.com/cloudfoundry/cli/cf/api/resources"
"github.com/cloudfoundry/cli/cf/configuration/coreconfig"
"github.com/cloudfoundry/cli/cf/errors"
"github.com/cloudfoundry/cli/cf/models"
"github.com/cloudfoundry/cli/cf/net"
. "github.com/cloudfoundry/cli/cf/i18n"
)
//go:generate counterfeiter . StackRepository
type StackRepository interface {
FindByName(name string) (stack models.Stack, apiErr error)
FindByGUID(guid string) (models.Stack, error)
FindAll() (stacks []models.Stack, apiErr error)
}
type CloudControllerStackRepository struct {
config coreconfig.Reader
gateway net.Gateway
}
func NewCloudControllerStackRepository(config coreconfig.Reader, gateway net.Gateway) (repo CloudControllerStackRepository) {
repo.config = config
repo.gateway = gateway
return
}
func (repo CloudControllerStackRepository) FindByGUID(guid string) (models.Stack, error) {
stackRequest := resources.StackResource{}
path := fmt.Sprintf("%s/v2/stacks/%s", repo.config.APIEndpoint(), guid)
err := repo.gateway.GetResource(path, &stackRequest)
if err != nil {
if errNotFound, ok := err.(*errors.HTTPNotFoundError); ok {
return models.Stack{}, errNotFound
}
return models.Stack{}, fmt.Errorf(T("Error retrieving stacks: {{.Error}}", map[string]interface{}{
"Error": err.Error(),
}))
}
return *stackRequest.ToFields(), nil
}
func (repo CloudControllerStackRepository) FindByName(name string) (stack models.Stack, apiErr error) {
path := fmt.Sprintf("/v2/stacks?q=%s", url.QueryEscape("name:"+name))
stacks, apiErr := repo.findAllWithPath(path)
if apiErr != nil {
return
}
if len(stacks) == 0 {
apiErr = errors.NewModelNotFoundError("Stack", name)
return
}
stack = stacks[0]
return
}
func (repo CloudControllerStackRepository) FindAll() (stacks []models.Stack, apiErr error) {
return repo.findAllWithPath("/v2/stacks")
}
func (repo CloudControllerStackRepository) findAllWithPath(path string) ([]models.Stack, error) {
var stacks []models.Stack
apiErr := repo.gateway.ListPaginatedResources(
repo.config.APIEndpoint(),
path,
resources.StackResource{},
func(resource interface{}) bool {
if sr, ok := resource.(resources.StackResource); ok {
stacks = append(stacks, *sr.ToFields())
}
return true
})
return stacks, apiErr
}