forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stacks.go
62 lines (53 loc) · 1.45 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
package api
import (
"cf/api/resources"
"cf/configuration"
"cf/errors"
"cf/models"
"cf/net"
"fmt"
"net/url"
)
type StackRepository interface {
FindByName(name string) (stack models.Stack, apiErr error)
FindAll() (stacks []models.Stack, apiErr error)
}
type CloudControllerStackRepository struct {
config configuration.Reader
gateway net.Gateway
}
func NewCloudControllerStackRepository(config configuration.Reader, gateway net.Gateway) (repo CloudControllerStackRepository) {
repo.config = config
repo.gateway = gateway
return
}
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
}