forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
routes.go
72 lines (60 loc) · 1.93 KB
/
routes.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 route
import (
. "github.com/cloudfoundry/cli/cf/i18n"
"strings"
"github.com/cloudfoundry/cli/cf/api"
"github.com/cloudfoundry/cli/cf/command_metadata"
"github.com/cloudfoundry/cli/cf/configuration"
"github.com/cloudfoundry/cli/cf/models"
"github.com/cloudfoundry/cli/cf/requirements"
"github.com/cloudfoundry/cli/cf/terminal"
"github.com/codegangsta/cli"
)
type ListRoutes struct {
ui terminal.UI
routeRepo api.RouteRepository
config configuration.Reader
}
func NewListRoutes(ui terminal.UI, config configuration.Reader, routeRepo api.RouteRepository) (cmd ListRoutes) {
cmd.ui = ui
cmd.config = config
cmd.routeRepo = routeRepo
return
}
func (cmd ListRoutes) Metadata() command_metadata.CommandMetadata {
return command_metadata.CommandMetadata{
Name: "routes",
ShortName: "r",
Description: T("List all routes in the current space"),
Usage: "CF_NAME routes",
}
}
func (cmd ListRoutes) GetRequirements(requirementsFactory requirements.Factory, c *cli.Context) ([]requirements.Requirement, error) {
return []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
requirementsFactory.NewTargetedSpaceRequirement(),
}, nil
}
func (cmd ListRoutes) Run(c *cli.Context) {
cmd.ui.Say(T("Getting routes as {{.Username}} ...\n",
map[string]interface{}{"Username": terminal.EntityNameColor(cmd.config.Username())}))
table := cmd.ui.Table([]string{T("host"), T("domain"), T("apps")})
noRoutes := true
apiErr := cmd.routeRepo.ListRoutes(func(route models.Route) bool {
noRoutes = false
appNames := []string{}
for _, app := range route.Apps {
appNames = append(appNames, app.Name)
}
table.Add(route.Host, route.Domain.Name, strings.Join(appNames, ","))
return true
})
table.Print()
if apiErr != nil {
cmd.ui.Failed(T("Failed fetching routes.\n{{.Err}}", map[string]interface{}{"Err": apiErr.Error()}))
return
}
if noRoutes {
cmd.ui.Say(T("No routes found"))
}
}