Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
koko
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
koko
Commits
d2e789de
Commit
d2e789de
authored
Jul 23, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 支持exit,quit
parent
1fa2f748
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
4 deletions
+6
-4
server.go
pkg/auth/server.go
+1
-1
session.go
pkg/handler/session.go
+3
-0
sftpvolume.go
pkg/httpd/sftpvolume.go
+0
-1
connmanager.go
pkg/srvconn/connmanager.go
+2
-2
No files found.
pkg/auth/server.go
View file @
d2e789de
...
@@ -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
,
"
S
T"
)
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
)
...
...
pkg/handler/session.go
View file @
d2e789de
...
@@ -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
)
...
...
pkg/httpd/sftpvolume.go
View file @
d2e789de
...
@@ -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
))
...
...
pkg/srvconn/connmanager.go
View file @
d2e789de
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment