forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
enable_ssh.go
84 lines (69 loc) · 2.25 KB
/
enable_ssh.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
package application
import (
"errors"
"fmt"
"github.com/cloudfoundry/cli/cf/api/applications"
"github.com/cloudfoundry/cli/cf/commandregistry"
"github.com/cloudfoundry/cli/cf/configuration/coreconfig"
. "github.com/cloudfoundry/cli/cf/i18n"
"github.com/cloudfoundry/cli/cf/models"
"github.com/cloudfoundry/cli/cf/requirements"
"github.com/cloudfoundry/cli/cf/terminal"
"github.com/cloudfoundry/cli/flags"
)
type EnableSSH struct {
ui terminal.UI
config coreconfig.Reader
appReq requirements.ApplicationRequirement
appRepo applications.Repository
}
func init() {
commandregistry.Register(&EnableSSH{})
}
func (cmd *EnableSSH) MetaData() commandregistry.CommandMetadata {
return commandregistry.CommandMetadata{
Name: "enable-ssh",
Description: T("Enable ssh for the application"),
Usage: []string{
T("CF_NAME enable-ssh APP_NAME"),
},
}
}
func (cmd *EnableSSH) Requirements(requirementsFactory requirements.Factory, fc flags.FlagContext) []requirements.Requirement {
if len(fc.Args()) != 1 {
cmd.ui.Failed(T("Incorrect Usage. Requires APP_NAME as argument\n\n") + commandregistry.Commands.CommandUsage("enable-ssh"))
}
cmd.appReq = requirementsFactory.NewApplicationRequirement(fc.Args()[0])
reqs := []requirements.Requirement{
requirementsFactory.NewLoginRequirement(),
requirementsFactory.NewTargetedSpaceRequirement(),
cmd.appReq,
}
return reqs
}
func (cmd *EnableSSH) SetDependency(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command {
cmd.ui = deps.UI
cmd.config = deps.Config
cmd.appRepo = deps.RepoLocator.GetApplicationRepository()
return cmd
}
func (cmd *EnableSSH) Execute(fc flags.FlagContext) error {
app := cmd.appReq.GetApplication()
if app.EnableSSH {
cmd.ui.Say(fmt.Sprintf(T("ssh support is already enabled")+" for '%s'", app.Name))
return nil
}
cmd.ui.Say(fmt.Sprintf(T("Enabling ssh support for '%s'..."), app.Name))
cmd.ui.Say("")
enable := true
updatedApp, err := cmd.appRepo.Update(app.GUID, models.AppParams{EnableSSH: &enable})
if err != nil {
return errors.New(T("Error enabling ssh support for ") + app.Name + ": " + err.Error())
}
if updatedApp.EnableSSH {
cmd.ui.Ok()
} else {
return errors.New(T("ssh support is not enabled for ") + app.Name)
}
return nil
}