-
Notifications
You must be signed in to change notification settings - Fork 0
/
check_route.go
129 lines (108 loc) · 3.44 KB
/
check_route.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
package route
import (
"fmt"
"strings"
"code.cloudfoundry.org/cli/cf"
"code.cloudfoundry.org/cli/cf/api"
"code.cloudfoundry.org/cli/cf/commandregistry"
"code.cloudfoundry.org/cli/cf/configuration/coreconfig"
"code.cloudfoundry.org/cli/cf/flags"
. "code.cloudfoundry.org/cli/cf/i18n"
"code.cloudfoundry.org/cli/cf/requirements"
"code.cloudfoundry.org/cli/cf/terminal"
)
type CheckRoute struct {
ui terminal.UI
config coreconfig.Reader
routeRepo api.RouteRepository
domainRepo api.DomainRepository
}
func init() {
commandregistry.Register(&CheckRoute{})
}
func (cmd *CheckRoute) MetaData() commandregistry.CommandMetadata {
fs := make(map[string]flags.FlagSet)
fs["path"] = &flags.StringFlag{Name: "path", Usage: T("Path for the route")}
return commandregistry.CommandMetadata{
Name: "check-route",
Description: T("Perform a simple check to determine whether a route currently exists or not"),
Usage: []string{
T("CF_NAME check-route HOST DOMAIN [--path PATH]"),
},
Examples: []string{
"CF_NAME check-route myhost example.com # example.com",
"CF_NAME check-route myhost example.com --path foo # myhost.example.com/foo",
},
Flags: fs,
}
}
func (cmd *CheckRoute) Requirements(requirementsFactory requirements.Factory, fc flags.FlagContext) ([]requirements.Requirement, error) {
if len(fc.Args()) != 2 {
cmd.ui.Failed(T("Incorrect Usage. Requires host and domain as arguments\n\n") + commandregistry.Commands.CommandUsage("check-route"))
return nil, fmt.Errorf("Incorrect usage: %d arguments of %d required", len(fc.Args()), 2)
}
var reqs []requirements.Requirement
if fc.String("path") != "" {
reqs = append(reqs, requirementsFactory.NewMinAPIVersionRequirement("Option '--path'", cf.RoutePathMinimumAPIVersion))
}
reqs = append(reqs, []requirements.Requirement{
requirementsFactory.NewTargetedOrgRequirement(),
requirementsFactory.NewLoginRequirement(),
}...)
return reqs, nil
}
func (cmd *CheckRoute) SetDependency(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command {
cmd.ui = deps.UI
cmd.config = deps.Config
cmd.routeRepo = deps.RepoLocator.GetRouteRepository()
cmd.domainRepo = deps.RepoLocator.GetDomainRepository()
return cmd
}
func (cmd *CheckRoute) Execute(c flags.FlagContext) error {
hostName := c.Args()[0]
domainName := c.Args()[1]
path := c.String("path")
cmd.ui.Say(T("Checking for route..."))
exists, err := cmd.CheckRoute(hostName, domainName, path)
if err != nil {
return err
}
cmd.ui.Ok()
var existence string
if exists {
existence = "does exist"
} else {
existence = "does not exist"
}
if path != "" {
cmd.ui.Say(T("Route {{.HostName}}.{{.DomainName}}/{{.Path}} {{.Existence}}",
map[string]interface{}{
"HostName": hostName,
"DomainName": domainName,
"Existence": existence,
"Path": strings.TrimPrefix(path, `/`),
},
))
} else {
cmd.ui.Say(T("Route {{.HostName}}.{{.DomainName}} {{.Existence}}",
map[string]interface{}{
"HostName": hostName,
"DomainName": domainName,
"Existence": existence,
},
))
}
return nil
}
func (cmd *CheckRoute) CheckRoute(hostName, domainName, path string) (bool, error) {
orgGUID := cmd.config.OrganizationFields().GUID
domain, err := cmd.domainRepo.FindByNameInOrg(domainName, orgGUID)
if err != nil {
return false, err
}
found, err := cmd.routeRepo.CheckIfExists(hostName, domain, path)
if err != nil {
return false, err
}
return found, nil
}