Commit d2e789de authored by ibuler's avatar ibuler

[Update] 支持exit,quit

parent 1fa2f748
......@@ -32,7 +32,7 @@ func checkAuth(ctx ssh.Context, password, publicKey string) (res ssh.AuthResult)
}
remoteAddr := strings.Split(ctx.RemoteAddr().String(), ":")[0]
resp, err := service.Authenticate(username, password, publicKey, remoteAddr, "T")
resp, err := service.Authenticate(username, password, publicKey, remoteAddr, "ST")
if err != nil {
action = actionFailed
logger.Infof("%s %s for %s from %s", action, authMethod, username, remoteAddr)
......
......@@ -175,6 +175,9 @@ func (h *interactiveHandler) Dispatch(ctx cctx.Context) {
}
default:
switch {
case line == "exit", line == "quit":
logger.Info("exit session")
return
case strings.Index(line, "/") == 0:
searchWord := strings.TrimSpace(line[1:])
assets := h.searchAsset(searchWord)
......
......@@ -76,7 +76,6 @@ func (u *UserVolume) Info(path string) (elfinder.FileDir, error) {
}
if filename == "." {
filename = originFileInfo.Name()
fmt.Println("askldkasdlala")
}
rest.Name = filename
rest.Hash = hashPath(u.Uuid, filepath.Join(dirPath, filename))
......
......@@ -65,7 +65,7 @@ func (sc *SSHClientConfig) Config() (config *gossh.ClientConfig, err error) {
if sc.PrivateKey != "" {
if signer, err := gossh.ParsePrivateKeyWithPassphrase([]byte(sc.PrivateKey), []byte(sc.Password)); err != nil {
err = fmt.Errorf("parse private key error: %s", err)
return config, err
logger.Error(err.Error())
} else {
authMethods = append(authMethods, gossh.PublicKeys(signer))
}
......@@ -201,7 +201,7 @@ func GetClientFromCache(user *model.User, asset *model.Asset, systemUser *model.
if !ok {
return
}
if systemUser.Username == ""{
if systemUser.Username == "" {
systemUser.Username = client.Username
}
var u = user.Username
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment