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
e33f75b0
Commit
e33f75b0
authored
Nov 08, 2019
by
Eric
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[update] auth code
parent
ad2a6587
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
server.go
pkg/auth/server.go
+10
-5
No files found.
pkg/auth/server.go
View file @
e33f75b0
...
@@ -30,12 +30,17 @@ func checkAuth(ctx ssh.Context, password, publicKey string) (res ssh.AuthResult)
...
@@ -30,12 +30,17 @@ func checkAuth(ctx ssh.Context, password, publicKey string) (res ssh.AuthResult)
if
password
!=
""
{
if
password
!=
""
{
authMethod
=
"password"
authMethod
=
"password"
}
}
remoteAddr
,
_
,
_
:=
net
.
SplitHostPort
(
ctx
.
RemoteAddr
()
.
String
())
userClient
,
ok
:=
ctx
.
Value
(
model
.
ContextKeyClient
)
.
(
*
service
.
SessionClient
)
userClient
:=
service
.
NewSessionClient
(
service
.
Username
(
username
),
if
!
ok
{
service
.
Password
(
password
),
service
.
PublicKey
(
publicKey
),
remoteAddr
,
_
,
_
:=
net
.
SplitHostPort
(
ctx
.
RemoteAddr
()
.
String
())
service
.
RemoteAddr
(
remoteAddr
),
service
.
LoginType
(
"T"
))
sessionClient
:=
service
.
NewSessionClient
(
service
.
Username
(
username
),
user
,
authStatus
:=
userClient
.
Authenticate
(
ctx
)
service
.
Password
(
password
),
service
.
PublicKey
(
publicKey
),
service
.
RemoteAddr
(
remoteAddr
),
service
.
LoginType
(
"T"
))
userClient
=
&
sessionClient
}
user
,
authStatus
:=
userClient
.
Authenticate
(
ctx
)
switch
authStatus
{
switch
authStatus
{
case
service
.
AuthMFARequired
:
case
service
.
AuthMFARequired
:
ctx
.
SetValue
(
model
.
ContextKeyClient
,
&
userClient
)
ctx
.
SetValue
(
model
.
ContextKeyClient
,
&
userClient
)
...
...
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