forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildpack.go
44 lines (36 loc) · 918 Bytes
/
buildpack.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
package requirements
import (
"cf/api"
"cf/models"
"cf/net"
"cf/terminal"
)
type BuildpackRequirement interface {
Requirement
GetBuildpack() models.Buildpack
}
type buildpackApiRequirement struct {
name string
ui terminal.UI
buildpackRepo api.BuildpackRepository
buildpack models.Buildpack
}
func NewBuildpackRequirement(name string, ui terminal.UI, bR api.BuildpackRepository) (req *buildpackApiRequirement) {
req = new(buildpackApiRequirement)
req.name = name
req.ui = ui
req.buildpackRepo = bR
return
}
func (req *buildpackApiRequirement) Execute() (success bool) {
var apiResponse net.ApiResponse
req.buildpack, apiResponse = req.buildpackRepo.FindByName(req.name)
if apiResponse.IsNotSuccessful() {
req.ui.Failed(apiResponse.Message)
return false
}
return true
}
func (req *buildpackApiRequirement) GetBuildpack() models.Buildpack {
return req.buildpack
}