Commit e33f75b0 authored by Eric's avatar Eric

[update] auth code

parent ad2a6587
...@@ -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)
......
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