mirror of https://github.com/kubernetes/kops.git
52 lines
1.3 KiB
Go
52 lines
1.3 KiB
Go
package auth
|
|
|
|
import "net/http"
|
|
|
|
// Token is the pair accessKey + secretKey.
|
|
// This type is public because it's an internal package.
|
|
type Token struct {
|
|
AccessKey string
|
|
SecretKey string
|
|
}
|
|
|
|
// XAuthTokenHeader is Scaleway standard auth header
|
|
const XAuthTokenHeader = "X-Auth-Token" // #nosec G101
|
|
|
|
// NewToken create a token authentication from an
|
|
// access key and a secret key
|
|
func NewToken(accessKey, secretKey string) *Token {
|
|
return &Token{AccessKey: accessKey, SecretKey: secretKey}
|
|
}
|
|
|
|
// Headers returns headers that must be add to the http request
|
|
func (t *Token) Headers() http.Header {
|
|
headers := http.Header{}
|
|
headers.Set(XAuthTokenHeader, t.SecretKey)
|
|
return headers
|
|
}
|
|
|
|
func AnonymizeTokenHeaders(headers http.Header) http.Header {
|
|
key := headers.Get(XAuthTokenHeader)
|
|
if key != "" {
|
|
headers.Set(XAuthTokenHeader, HideSecretKey(key))
|
|
}
|
|
return headers
|
|
}
|
|
|
|
// AnonymizedHeaders returns an anonymized version of Headers()
|
|
// This method could be use for logging purpose.
|
|
func (t *Token) AnonymizedHeaders() http.Header {
|
|
return AnonymizeTokenHeaders(t.Headers())
|
|
}
|
|
|
|
func HideSecretKey(k string) string {
|
|
switch {
|
|
case len(k) == 0:
|
|
return ""
|
|
case len(k) > 8:
|
|
return k[0:8] + "-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
default:
|
|
return "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
}
|
|
}
|