Commit 0fe3b12b authored by Eric's avatar Eric

[Bugfix] fix regex or no system user panic err

parent 23952a5f
...@@ -7,6 +7,7 @@ import ( ...@@ -7,6 +7,7 @@ import (
"path/filepath" "path/filepath"
"strings" "strings"
"sync" "sync"
"time"
"github.com/LeeEirc/elfinder" "github.com/LeeEirc/elfinder"
"github.com/pkg/sftp" "github.com/pkg/sftp"
...@@ -300,17 +301,24 @@ func (u *UserVolume) Paste(dir, filename, suffix string, reader io.ReadCloser) ( ...@@ -300,17 +301,24 @@ func (u *UserVolume) Paste(dir, filename, suffix string, reader io.ReadCloser) (
func (u *UserVolume) RootFileDir() elfinder.FileDir { func (u *UserVolume) RootFileDir() elfinder.FileDir {
logger.Debug("Root File Dir") logger.Debug("Root File Dir")
fInfo, _ := u.UserSftp.Stat(u.basePath) var (
size int64
)
tz := time.Now().UnixNano()
if fInfo, err := u.UserSftp.Stat(u.basePath); err == nil {
size = fInfo.Size()
tz = fInfo.ModTime().Unix()
}
var rest elfinder.FileDir var rest elfinder.FileDir
rest.Name = u.Homename rest.Name = u.Homename
rest.Hash = hashPath(u.Uuid, "/") rest.Hash = hashPath(u.Uuid, "/")
rest.Size = fInfo.Size() rest.Size = size
rest.Volumeid = u.Uuid rest.Volumeid = u.Uuid
rest.Mime = "directory" rest.Mime = "directory"
rest.Dirs = 1 rest.Dirs = 1
rest.Read, rest.Write = 1, 1 rest.Read, rest.Write = 1, 1
rest.Locked = 1 rest.Locked = 1
rest.Ts = fInfo.ModTime().Unix() rest.Ts = tz
return rest return rest
} }
......
...@@ -116,7 +116,10 @@ func (p *ProxyServer) getSSHConn() (srvConn *srvconn.ServerSSHConnection, err er ...@@ -116,7 +116,10 @@ func (p *ProxyServer) getSSHConn() (srvConn *srvconn.ServerSSHConnection, err er
func (p *ProxyServer) getTelnetConn() (srvConn *srvconn.ServerTelnetConnection, err error) { func (p *ProxyServer) getTelnetConn() (srvConn *srvconn.ServerTelnetConnection, err error) {
conf := config.GetConf() conf := config.GetConf()
cusString := conf.TelnetRegex cusString := conf.TelnetRegex
pattern, _ := regexp.Compile(cusString) pattern, err := regexp.Compile(cusString)
if err != nil {
logger.Errorf("compile telnet Regex %s err %s", cusString, err)
}
srvConn = &srvconn.ServerTelnetConnection{ srvConn = &srvconn.ServerTelnetConnection{
User: p.User, User: p.User,
Asset: p.Asset, Asset: p.Asset,
......
...@@ -132,7 +132,7 @@ func (tc *ServerTelnetConnection) login(data []byte) AuthStatus { ...@@ -132,7 +132,7 @@ func (tc *ServerTelnetConnection) login(data []byte) AuthStatus {
return AuthSuccess return AuthSuccess
} }
if tc.CustomString != "" { if tc.CustomString != "" {
if tc.CustomSuccessPattern.Match(data) { if tc.CustomSuccessPattern != nil && tc.CustomSuccessPattern.Match(data) {
return AuthSuccess return AuthSuccess
} }
} }
......
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