mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-02 03:46:29 +02:00
* sessions: support bearer tokens in authorization * wip * remove dead code * refactor signed jwt code * use function * update per comments * fix test
70 lines
1.8 KiB
Go
70 lines
1.8 KiB
Go
// Package header provides a request header based implementation of a
|
|
// session loader.
|
|
package header
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/pomerium/pomerium/internal/encoding"
|
|
"github.com/pomerium/pomerium/internal/sessions"
|
|
)
|
|
|
|
var _ sessions.SessionLoader = &Store{}
|
|
|
|
const (
|
|
defaultAuthHeader = "Authorization"
|
|
defaultAuthType = "Bearer"
|
|
)
|
|
|
|
// Store implements the load session store interface using http
|
|
// authorization headers.
|
|
type Store struct {
|
|
authHeader string
|
|
authType string
|
|
encoder encoding.Unmarshaler
|
|
}
|
|
|
|
// NewStore returns a new header store for loading sessions from
|
|
// authorization header as defined in as defined in rfc2617
|
|
//
|
|
// NOTA BENE: While most servers do not log Authorization headers by default,
|
|
// you should ensure no other services are logging or leaking your auth headers.
|
|
func NewStore(enc encoding.Unmarshaler, headerType string) *Store {
|
|
if headerType == "" {
|
|
headerType = defaultAuthType
|
|
}
|
|
return &Store{
|
|
authHeader: defaultAuthHeader,
|
|
authType: headerType,
|
|
encoder: enc,
|
|
}
|
|
}
|
|
|
|
// LoadSession tries to retrieve the token string from the Authorization header.
|
|
func (as *Store) LoadSession(r *http.Request) (string, error) {
|
|
jwt := TokenFromHeader(r, as.authHeader, as.authType)
|
|
if jwt == "" {
|
|
return "", sessions.ErrNoSessionFound
|
|
}
|
|
return jwt, nil
|
|
}
|
|
|
|
// TokenFromHeader retrieves the value of the authorization header from a given
|
|
// request, header key, and authentication type.
|
|
func TokenFromHeader(r *http.Request, authHeader, authType string) string {
|
|
bearer := r.Header.Get(authHeader)
|
|
// Authorization: Pomerium <JWT>
|
|
prefix := authType + " "
|
|
if strings.HasPrefix(bearer, prefix) {
|
|
return bearer[len(prefix):]
|
|
}
|
|
|
|
// Authorization: Bearer Pomerium-<JWT>
|
|
prefix = "Bearer " + authType + "-"
|
|
if strings.HasPrefix(bearer, prefix) {
|
|
return bearer[len(prefix):]
|
|
}
|
|
|
|
return ""
|
|
}
|