forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
space.go
43 lines (35 loc) · 863 Bytes
/
space.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
package requirements
import (
"github.com/cloudfoundry/cli/cf/api"
"github.com/cloudfoundry/cli/cf/models"
"github.com/cloudfoundry/cli/cf/terminal"
)
type SpaceRequirement interface {
Requirement
GetSpace() models.Space
}
type spaceApiRequirement struct {
name string
ui terminal.UI
spaceRepo api.SpaceRepository
space models.Space
}
func NewSpaceRequirement(name string, ui terminal.UI, sR api.SpaceRepository) (req *spaceApiRequirement) {
req = new(spaceApiRequirement)
req.name = name
req.ui = ui
req.spaceRepo = sR
return
}
func (req *spaceApiRequirement) Execute() (success bool) {
var apiErr error
req.space, apiErr = req.spaceRepo.FindByName(req.name)
if apiErr != nil {
req.ui.Failed(apiErr.Error())
return false
}
return true
}
func (req *spaceApiRequirement) GetSpace() models.Space {
return req.space
}