mirror of https://github.com/golang-jwt/jwt.git
Unexported some functions and types
This commit is contained in:
parent
3a9ee81ba3
commit
66e2e01a4f
|
@ -10,38 +10,38 @@ type MapClaims map[string]interface{}
|
||||||
|
|
||||||
// GetExpirationTime implements the Claims interface.
|
// GetExpirationTime implements the Claims interface.
|
||||||
func (m MapClaims) GetExpirationTime() (*NumericDate, error) {
|
func (m MapClaims) GetExpirationTime() (*NumericDate, error) {
|
||||||
return m.ParseNumericDate("exp")
|
return m.parseNumericDate("exp")
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetNotBefore implements the Claims interface.
|
// GetNotBefore implements the Claims interface.
|
||||||
func (m MapClaims) GetNotBefore() (*NumericDate, error) {
|
func (m MapClaims) GetNotBefore() (*NumericDate, error) {
|
||||||
return m.ParseNumericDate("nbf")
|
return m.parseNumericDate("nbf")
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetIssuedAt implements the Claims interface.
|
// GetIssuedAt implements the Claims interface.
|
||||||
func (m MapClaims) GetIssuedAt() (*NumericDate, error) {
|
func (m MapClaims) GetIssuedAt() (*NumericDate, error) {
|
||||||
return m.ParseNumericDate("iat")
|
return m.parseNumericDate("iat")
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetAudience implements the Claims interface.
|
// GetAudience implements the Claims interface.
|
||||||
func (m MapClaims) GetAudience() (ClaimStrings, error) {
|
func (m MapClaims) GetAudience() (ClaimStrings, error) {
|
||||||
return m.ParseClaimsString("aud")
|
return m.parseClaimsString("aud")
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetIssuer implements the Claims interface.
|
// GetIssuer implements the Claims interface.
|
||||||
func (m MapClaims) GetIssuer() (string, error) {
|
func (m MapClaims) GetIssuer() (string, error) {
|
||||||
return m.ParseString("iss")
|
return m.parseString("iss")
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetSubject implements the Claims interface.
|
// GetSubject implements the Claims interface.
|
||||||
func (m MapClaims) GetSubject() (string, error) {
|
func (m MapClaims) GetSubject() (string, error) {
|
||||||
return m.ParseString("sub")
|
return m.parseString("sub")
|
||||||
}
|
}
|
||||||
|
|
||||||
// ParseNumericDate tries to parse a key in the map claims type as a number
|
// parseNumericDate tries to parse a key in the map claims type as a number
|
||||||
// date. This will succeed, if the underlying type is either a [float64] or a
|
// date. This will succeed, if the underlying type is either a [float64] or a
|
||||||
// [json.Number]. Otherwise, nil will be returned.
|
// [json.Number]. Otherwise, nil will be returned.
|
||||||
func (m MapClaims) ParseNumericDate(key string) (*NumericDate, error) {
|
func (m MapClaims) parseNumericDate(key string) (*NumericDate, error) {
|
||||||
v, ok := m[key]
|
v, ok := m[key]
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, nil
|
return nil, nil
|
||||||
|
@ -63,9 +63,9 @@ func (m MapClaims) ParseNumericDate(key string) (*NumericDate, error) {
|
||||||
return nil, ErrInvalidType
|
return nil, ErrInvalidType
|
||||||
}
|
}
|
||||||
|
|
||||||
// ParseClaimsString tries to parse a key in the map claims type as a
|
// parseClaimsString tries to parse a key in the map claims type as a
|
||||||
// [ClaimsStrings] type, which can either be a string or an array of string.
|
// [ClaimsStrings] type, which can either be a string or an array of string.
|
||||||
func (m MapClaims) ParseClaimsString(key string) (ClaimStrings, error) {
|
func (m MapClaims) parseClaimsString(key string) (ClaimStrings, error) {
|
||||||
var cs []string
|
var cs []string
|
||||||
switch v := m[key].(type) {
|
switch v := m[key].(type) {
|
||||||
case string:
|
case string:
|
||||||
|
@ -85,10 +85,10 @@ func (m MapClaims) ParseClaimsString(key string) (ClaimStrings, error) {
|
||||||
return cs, nil
|
return cs, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// ParseString tries to parse a key in the map claims type as a [string] type.
|
// parseString tries to parse a key in the map claims type as a [string] type.
|
||||||
// If the key does not exist, an empty string is returned. If the key has the
|
// If the key does not exist, an empty string is returned. If the key has the
|
||||||
// wrong type, an error is returned.
|
// wrong type, an error is returned.
|
||||||
func (m MapClaims) ParseString(key string) (string, error) {
|
func (m MapClaims) parseString(key string) (string, error) {
|
||||||
var (
|
var (
|
||||||
ok bool
|
ok bool
|
||||||
raw interface{}
|
raw interface{}
|
||||||
|
|
|
@ -38,9 +38,9 @@ type validator struct {
|
||||||
expectedSub string
|
expectedSub string
|
||||||
}
|
}
|
||||||
|
|
||||||
// CustomClaims represents a custom claims interface, which can be built upon the integrated
|
// customClaims represents a custom claims interface, which can be built upon the integrated
|
||||||
// claim types, such as map claims or registered claims.
|
// claim types, such as map claims or registered claims.
|
||||||
type CustomClaims interface {
|
type customClaims interface {
|
||||||
// CustomValidation can be implemented by a user-specific claim to support
|
// CustomValidation can be implemented by a user-specific claim to support
|
||||||
// additional validation steps in addition to the regular validation.
|
// additional validation steps in addition to the regular validation.
|
||||||
CustomValidation() error
|
CustomValidation() error
|
||||||
|
@ -106,7 +106,7 @@ func (v *validator) Validate(claims Claims) error {
|
||||||
|
|
||||||
// Finally, we want to give the claim itself some possibility to do some
|
// Finally, we want to give the claim itself some possibility to do some
|
||||||
// additional custom validation based on a custom function
|
// additional custom validation based on a custom function
|
||||||
cvt, ok := claims.(CustomClaims)
|
cvt, ok := claims.(customClaims)
|
||||||
if ok {
|
if ok {
|
||||||
if err := cvt.CustomValidation(); err != nil {
|
if err := cvt.CustomValidation(); err != nil {
|
||||||
vErr.Inner = err
|
vErr.Inner = err
|
||||||
|
|
Loading…
Reference in New Issue