36 lines
829 B
Go
36 lines
829 B
Go
/*
|
|
* Copyright 2024 the KubeSphere Authors.
|
|
* Please refer to the LICENSE file in the root directory of the project.
|
|
* https://github.com/kubesphere/kubesphere/blob/master/LICENSE
|
|
*/
|
|
|
|
package anonymous
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
|
|
"k8s.io/apiserver/pkg/authentication/authenticator"
|
|
"k8s.io/apiserver/pkg/authentication/user"
|
|
)
|
|
|
|
type Authenticator struct{}
|
|
|
|
func NewAuthenticator() authenticator.Request {
|
|
return &Authenticator{}
|
|
}
|
|
|
|
func (a *Authenticator) AuthenticateRequest(req *http.Request) (*authenticator.Response, bool, error) {
|
|
auth := strings.TrimSpace(req.Header.Get("Authorization"))
|
|
if auth == "" {
|
|
return &authenticator.Response{
|
|
User: &user.DefaultInfo{
|
|
Name: user.Anonymous,
|
|
UID: "",
|
|
Groups: []string{user.AllUnauthenticated},
|
|
},
|
|
}, true, nil
|
|
}
|
|
return nil, false, nil
|
|
}
|