forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
v3_create_app_command.go
78 lines (63 loc) · 2.17 KB
/
v3_create_app_command.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
package v3
import (
"code.cloudfoundry.org/cli/actor/sharedaction"
"code.cloudfoundry.org/cli/actor/v3action"
"code.cloudfoundry.org/cli/command"
"code.cloudfoundry.org/cli/command/flag"
"code.cloudfoundry.org/cli/command/v3/shared"
)
//go:generate counterfeiter . V3CreateAppActor
type V3CreateAppActor interface {
CreateApplicationByNameAndSpace(createApplicationInput v3action.CreateApplicationInput) (v3action.Application, v3action.Warnings, error)
}
type V3CreateAppCommand struct {
RequiredArgs flag.AppName `positional-args:"yes"`
usage interface{} `usage:"CF_NAME v3-create-app APP_NAME"`
UI command.UI
Config command.Config
SharedActor command.SharedActor
Actor V3CreateAppActor
}
func (cmd *V3CreateAppCommand) Setup(config command.Config, ui command.UI) error {
cmd.UI = ui
cmd.Config = config
cmd.SharedActor = sharedaction.NewActor()
client, _, err := shared.NewClients(config, ui, true)
if err != nil {
return err
}
cmd.Actor = v3action.NewActor(client, config)
return nil
}
func (cmd V3CreateAppCommand) Execute(args []string) error {
cmd.UI.DisplayText(command.ExperimentalWarning)
cmd.UI.DisplayNewline()
err := cmd.SharedActor.CheckTarget(cmd.Config, true, true)
if err != nil {
return shared.HandleError(err)
}
user, err := cmd.Config.CurrentUser()
if err != nil {
return err
}
cmd.UI.DisplayTextWithFlavor("Creating V3 app {{.AppName}} in org {{.CurrentOrg}} / space {{.CurrentSpace}} as {{.CurrentUser}}...", map[string]interface{}{
"AppName": cmd.RequiredArgs.AppName,
"CurrentSpace": cmd.Config.TargetedSpace().Name,
"CurrentOrg": cmd.Config.TargetedOrganization().Name,
"CurrentUser": user.Name,
})
_, warnings, err := cmd.Actor.CreateApplicationByNameAndSpace(v3action.CreateApplicationInput{
AppName: cmd.RequiredArgs.AppName,
SpaceGUID: cmd.Config.TargetedSpace().GUID,
})
cmd.UI.DisplayWarnings(warnings)
if _, ok := err.(v3action.ApplicationAlreadyExistsError); ok {
cmd.UI.DisplayWarning("App {{.AppName}} already exists.", map[string]interface{}{
"AppName": cmd.RequiredArgs.AppName,
})
} else if err != nil {
return shared.HandleError(err)
}
cmd.UI.DisplayOK()
return nil
}