-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature(install tool): add install tool command
Signed-off-by: 0fatal <[email protected]>
- Loading branch information
Showing
7 changed files
with
209 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package install | ||
|
||
import ( | ||
"github.com/opencurve/curveadm/cli/cli" | ||
cliutil "github.com/opencurve/curveadm/internal/utils" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
func NewInstallCommand(curveadm *cli.CurveAdm) *cobra.Command { | ||
cmd := &cobra.Command{ | ||
Use: "install", | ||
Short: "Manage install", | ||
Args: cliutil.NoArgs, | ||
RunE: cliutil.ShowHelp(curveadm.Err()), | ||
} | ||
|
||
cmd.AddCommand( | ||
NewInstallToolCommand(curveadm), | ||
) | ||
return cmd | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
package install | ||
|
||
import ( | ||
"github.com/fatih/color" | ||
"github.com/opencurve/curveadm/cli/cli" | ||
comm "github.com/opencurve/curveadm/internal/common" | ||
"github.com/opencurve/curveadm/internal/configure/topology" | ||
"github.com/opencurve/curveadm/internal/errno" | ||
"github.com/opencurve/curveadm/internal/playbook" | ||
cliutil "github.com/opencurve/curveadm/internal/utils" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
var ( | ||
INSTALL_TOOL_PLAYBOOK_STEPS = []int{ | ||
playbook.INSTALL_TOOL, | ||
} | ||
) | ||
|
||
type installOptions struct { | ||
host string | ||
path string | ||
confPath string | ||
} | ||
|
||
func NewInstallToolCommand(curveadm *cli.CurveAdm) *cobra.Command { | ||
var options installOptions | ||
|
||
cmd := &cobra.Command{ | ||
Use: "tool [OPTIONS]", | ||
Short: "Install tool v2 on the specified host", | ||
Args: cliutil.NoArgs, | ||
RunE: func(cmd *cobra.Command, args []string) error { | ||
return runInstallTool(curveadm, options) | ||
}, | ||
DisableFlagsInUseLine: true, | ||
} | ||
|
||
flags := cmd.Flags() | ||
flags.StringVar(&options.host, "host", "localhost", "Specify target host") | ||
flags.StringVar(&options.path, "path", "/usr/local/bin/curve", "Specify target install path of tool v2") | ||
flags.StringVar(&options.confPath, "confPath", "/etc/curve/curve.yaml", "Specify target config path of tool v2") | ||
|
||
return cmd | ||
} | ||
|
||
func genInstallToolPlaybook(curveadm *cli.CurveAdm, | ||
dcs []*topology.DeployConfig, | ||
options installOptions, | ||
) (*playbook.Playbook, error) { | ||
configs := curveadm.FilterDeployConfig(dcs, topology.FilterOption{Id: "*", Role: "*", Host: options.host})[:1] | ||
if len(configs) == 0 { | ||
return nil, errno.ERR_NO_SERVICES_MATCHED | ||
} | ||
steps := INSTALL_TOOL_PLAYBOOK_STEPS | ||
pb := playbook.NewPlaybook(curveadm) | ||
for _, step := range steps { | ||
pb.AddStep(&playbook.PlaybookStep{ | ||
Type: step, | ||
Configs: configs, | ||
Options: map[string]interface{}{ | ||
comm.KEY_INSTALL_PATH: options.path, | ||
comm.KEY_INSTALL_CONF_PATH: options.confPath, | ||
}, | ||
}) | ||
} | ||
return pb, nil | ||
} | ||
|
||
func runInstallTool(curveadm *cli.CurveAdm, options installOptions) error { | ||
dcs, err := curveadm.ParseTopology() | ||
if err != nil { | ||
return err | ||
} | ||
|
||
pb, err := genInstallToolPlaybook(curveadm, dcs, options) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
err = pb.Run() | ||
if err != nil { | ||
return err | ||
} | ||
|
||
curveadm.WriteOutln(color.GreenString("Install %s to %s success."), | ||
"curve tool v2", options.host) | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
package install | ||
|
||
import ( | ||
"fmt" | ||
"github.com/opencurve/curveadm/cli/cli" | ||
comm "github.com/opencurve/curveadm/internal/common" | ||
"github.com/opencurve/curveadm/internal/configure/topology" | ||
"github.com/opencurve/curveadm/internal/errno" | ||
"github.com/opencurve/curveadm/internal/task/step" | ||
"github.com/opencurve/curveadm/internal/task/task" | ||
tui "github.com/opencurve/curveadm/internal/tui/common" | ||
"github.com/opencurve/curveadm/pkg/module" | ||
"path/filepath" | ||
) | ||
|
||
func checkPathExist(path string, sshConfig *module.SSHConfig, curveadm *cli.CurveAdm) error { | ||
sshClient, err := module.NewSSHClient(*sshConfig) | ||
if err != nil { | ||
return errno.ERR_SSH_CONNECT_FAILED.E(err) | ||
} | ||
|
||
module := module.NewModule(sshClient) | ||
cmd := module.Shell().Stat(path) | ||
if _, err := cmd.Execute(curveadm.ExecOptions()); err == nil { | ||
if pass := tui.ConfirmYes(tui.PromptPathExist(path)); !pass { | ||
return errno.ERR_CANCEL_OPERATION | ||
} | ||
} | ||
return nil | ||
} | ||
|
||
func NewInstallToolTask(curveadm *cli.CurveAdm, dc *topology.DeployConfig) (*task.Task, error) { | ||
layout := dc.GetProjectLayout() | ||
path := curveadm.MemStorage().Get(comm.KEY_INSTALL_PATH).(string) | ||
confPath := curveadm.MemStorage().Get(comm.KEY_INSTALL_CONF_PATH).(string) | ||
hc, err := curveadm.GetHost(dc.GetHost()) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
serviceId := curveadm.GetServiceId(dc.GetId()) | ||
containerId, err := curveadm.GetContainerId(serviceId) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
if err = checkPathExist(path, hc.GetSSHConfig(), curveadm); err != nil { | ||
return nil, err | ||
} | ||
if err = checkPathExist(confPath, hc.GetSSHConfig(), curveadm); err != nil { | ||
return nil, err | ||
} | ||
|
||
subname := fmt.Sprintf("host=%s", dc.GetHost()) | ||
t := task.NewTask("Install tool v2", subname, hc.GetSSHConfig()) | ||
|
||
t.AddStep(&step.CreateDirectory{ | ||
Paths: []string{filepath.Dir(path)}, | ||
ExecOptions: curveadm.ExecOptions(), | ||
}) | ||
t.AddStep(&step.CopyFromContainer{ | ||
ContainerSrcPath: layout.ToolsV2BinaryPath, | ||
ContainerId: containerId, | ||
HostDestPath: path, | ||
ExecOptions: curveadm.ExecOptions(), | ||
}) | ||
t.AddStep(&step.CreateDirectory{ | ||
Paths: []string{filepath.Dir(confPath)}, | ||
ExecOptions: curveadm.ExecOptions(), | ||
}) | ||
t.AddStep(&step.CopyFromContainer{ | ||
ContainerSrcPath: layout.ToolsV2ConfSystemPath, | ||
ContainerId: containerId, | ||
HostDestPath: confPath, | ||
ExecOptions: curveadm.ExecOptions(), | ||
}) | ||
|
||
return t, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters