forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
delete.go
103 lines (87 loc) · 3 KB
/
delete.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
package application
import (
"github.com/cloudfoundry/cli/cf/api"
"github.com/cloudfoundry/cli/cf/api/applications"
"github.com/cloudfoundry/cli/cf/command_registry"
"github.com/cloudfoundry/cli/cf/configuration/core_config"
"github.com/cloudfoundry/cli/cf/errors"
. "github.com/cloudfoundry/cli/cf/i18n"
"github.com/cloudfoundry/cli/cf/requirements"
"github.com/cloudfoundry/cli/cf/terminal"
"github.com/cloudfoundry/cli/flags"
)
type DeleteApp struct {
ui terminal.UI
config core_config.Reader
appRepo applications.ApplicationRepository
routeRepo api.RouteRepository
appReq requirements.ApplicationRequirement
}
func init() {
command_registry.Register(&DeleteApp{})
}
func (cmd *DeleteApp) MetaData() command_registry.CommandMetadata {
fs := make(map[string]flags.FlagSet)
fs["f"] = &flags.BoolFlag{ShortName: "f", Usage: T("Force deletion without confirmation")}
fs["r"] = &flags.BoolFlag{ShortName: "r", Usage: T("Also delete any mapped routes")}
return command_registry.CommandMetadata{
Name: "delete",
ShortName: "d",
Description: T("Delete an app"),
Usage: T("CF_NAME delete APP_NAME [-f -r]"),
Flags: fs,
}
}
func (cmd *DeleteApp) Requirements(requirementsFactory requirements.Factory, fc flags.FlagContext) (reqs []requirements.Requirement, err error) {
if len(fc.Args()) != 1 {
cmd.ui.Failed(T("Incorrect Usage. Requires app name as argument\n\n") + command_registry.Commands.CommandUsage("delete"))
}
reqs = []requirements.Requirement{requirementsFactory.NewLoginRequirement(),
requirementsFactory.NewTargetedSpaceRequirement()}
return
}
func (cmd *DeleteApp) SetDependency(deps command_registry.Dependency, pluginCall bool) command_registry.Command {
cmd.ui = deps.Ui
cmd.config = deps.Config
cmd.appRepo = deps.RepoLocator.GetApplicationRepository()
cmd.routeRepo = deps.RepoLocator.GetRouteRepository()
return cmd
}
func (cmd *DeleteApp) Execute(c flags.FlagContext) {
appName := c.Args()[0]
if !c.Bool("f") {
response := cmd.ui.ConfirmDelete(T("app"), appName)
if !response {
return
}
}
cmd.ui.Say(T("Deleting app {{.AppName}} in org {{.OrgName}} / space {{.SpaceName}} as {{.Username}}...",
map[string]interface{}{
"AppName": terminal.EntityNameColor(appName),
"OrgName": terminal.EntityNameColor(cmd.config.OrganizationFields().Name),
"SpaceName": terminal.EntityNameColor(cmd.config.SpaceFields().Name),
"Username": terminal.EntityNameColor(cmd.config.Username())}))
app, apiErr := cmd.appRepo.Read(appName)
switch apiErr.(type) {
case nil: // no error
case *errors.ModelNotFoundError:
cmd.ui.Ok()
cmd.ui.Warn(T("App {{.AppName}} does not exist.", map[string]interface{}{"AppName": appName}))
return
default:
cmd.ui.Failed(apiErr.Error())
}
if c.Bool("r") {
for _, route := range app.Routes {
apiErr = cmd.routeRepo.Delete(route.Guid)
if apiErr != nil {
cmd.ui.Failed(apiErr.Error())
}
}
}
apiErr = cmd.appRepo.Delete(app.Guid)
if apiErr != nil {
cmd.ui.Failed(apiErr.Error())
}
cmd.ui.Ok()
}