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) ...@@ -32,7 +32,7 @@ func checkAuth(ctx ssh.Context, password, publicKey string) (res ssh.AuthResult)
} }
remoteAddr := strings.Split(ctx.RemoteAddr().String(), ":")[0] 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 { if err != nil {
action = actionFailed action = actionFailed
logger.Infof("%s %s for %s from %s", action, authMethod, username, remoteAddr) logger.Infof("%s %s for %s from %s", action, authMethod, username, remoteAddr)
......
...@@ -175,6 +175,9 @@ func (h *interactiveHandler) Dispatch(ctx cctx.Context) { ...@@ -175,6 +175,9 @@ func (h *interactiveHandler) Dispatch(ctx cctx.Context) {
} }
default: default:
switch { switch {
case line == "exit", line == "quit":
logger.Info("exit session")
return
case strings.Index(line, "/") == 0: case strings.Index(line, "/") == 0:
searchWord := strings.TrimSpace(line[1:]) searchWord := strings.TrimSpace(line[1:])
assets := h.searchAsset(searchWord) assets := h.searchAsset(searchWord)
......
...@@ -76,7 +76,6 @@ func (u *UserVolume) Info(path string) (elfinder.FileDir, error) { ...@@ -76,7 +76,6 @@ func (u *UserVolume) Info(path string) (elfinder.FileDir, error) {
} }
if filename == "." { if filename == "." {
filename = originFileInfo.Name() filename = originFileInfo.Name()
fmt.Println("askldkasdlala")
} }
rest.Name = filename rest.Name = filename
rest.Hash = hashPath(u.Uuid, filepath.Join(dirPath, filename)) rest.Hash = hashPath(u.Uuid, filepath.Join(dirPath, filename))
......
...@@ -65,7 +65,7 @@ func (sc *SSHClientConfig) Config() (config *gossh.ClientConfig, err error) { ...@@ -65,7 +65,7 @@ func (sc *SSHClientConfig) Config() (config *gossh.ClientConfig, err error) {
if sc.PrivateKey != "" { if sc.PrivateKey != "" {
if signer, err := gossh.ParsePrivateKeyWithPassphrase([]byte(sc.PrivateKey), []byte(sc.Password)); err != nil { if signer, err := gossh.ParsePrivateKeyWithPassphrase([]byte(sc.PrivateKey), []byte(sc.Password)); err != nil {
err = fmt.Errorf("parse private key error: %s", err) err = fmt.Errorf("parse private key error: %s", err)
return config, err logger.Error(err.Error())
} else { } else {
authMethods = append(authMethods, gossh.PublicKeys(signer)) authMethods = append(authMethods, gossh.PublicKeys(signer))
} }
...@@ -201,7 +201,7 @@ func GetClientFromCache(user *model.User, asset *model.Asset, systemUser *model. ...@@ -201,7 +201,7 @@ func GetClientFromCache(user *model.User, asset *model.Asset, systemUser *model.
if !ok { if !ok {
return return
} }
if systemUser.Username == ""{ if systemUser.Username == "" {
systemUser.Username = client.Username systemUser.Username = client.Username
} }
var u = user.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