Improve user context

This commit is contained in:
世界 2022-07-17 14:30:50 +08:00
parent bd79d31e3b
commit 6795d518e1
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
6 changed files with 23 additions and 52 deletions

View file

@ -36,6 +36,9 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
userPassword, _ := base64.URLEncoding.DecodeString(authorization[6:])
userPswdArr := strings.SplitN(string(userPassword), ":", 2)
authOk = authenticator.Verify(userPswdArr[0], userPswdArr[1])
if authOk {
ctx = auth.ContextWithUser(ctx, userPswdArr[0])
}
}
if !authOk {
err = responseWith(request, http.StatusProxyAuthRequired).Write(conn)