98 lines
2.5 KiB
Go
98 lines
2.5 KiB
Go
// Copyright (c) 2026 Probo Inc <hello@probo.com>.
|
|
//
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
// copyright notice and this permission notice appear in all copies.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
// PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
package coredata
|
|
|
|
import (
|
|
"encoding"
|
|
"fmt"
|
|
)
|
|
|
|
type OAuth2Claim string
|
|
|
|
const (
|
|
OAuth2ClaimIssuer OAuth2Claim = "iss"
|
|
OAuth2ClaimSubject OAuth2Claim = "sub"
|
|
OAuth2ClaimAudience OAuth2Claim = "aud"
|
|
OAuth2ClaimExpiration OAuth2Claim = "exp"
|
|
OAuth2ClaimIssuedAt OAuth2Claim = "iat"
|
|
OAuth2ClaimAuthTime OAuth2Claim = "auth_time"
|
|
OAuth2ClaimNonce OAuth2Claim = "nonce"
|
|
OAuth2ClaimAtHash OAuth2Claim = "at_hash"
|
|
OAuth2ClaimEmail OAuth2Claim = "email"
|
|
OAuth2ClaimEmailVerified OAuth2Claim = "email_verified"
|
|
OAuth2ClaimName OAuth2Claim = "name"
|
|
)
|
|
|
|
var (
|
|
_ fmt.Stringer = OAuth2Claim("")
|
|
_ encoding.TextMarshaler = OAuth2Claim("")
|
|
_ encoding.TextUnmarshaler = (*OAuth2Claim)(nil)
|
|
)
|
|
|
|
func OAuth2Claims() []OAuth2Claim {
|
|
return []OAuth2Claim{
|
|
OAuth2ClaimIssuer,
|
|
OAuth2ClaimSubject,
|
|
OAuth2ClaimAudience,
|
|
OAuth2ClaimExpiration,
|
|
OAuth2ClaimIssuedAt,
|
|
OAuth2ClaimAuthTime,
|
|
OAuth2ClaimNonce,
|
|
OAuth2ClaimAtHash,
|
|
OAuth2ClaimEmail,
|
|
OAuth2ClaimEmailVerified,
|
|
OAuth2ClaimName,
|
|
}
|
|
}
|
|
|
|
func (v OAuth2Claim) IsValid() bool {
|
|
switch v {
|
|
case
|
|
OAuth2ClaimIssuer,
|
|
OAuth2ClaimSubject,
|
|
OAuth2ClaimAudience,
|
|
OAuth2ClaimExpiration,
|
|
OAuth2ClaimIssuedAt,
|
|
OAuth2ClaimAuthTime,
|
|
OAuth2ClaimNonce,
|
|
OAuth2ClaimAtHash,
|
|
OAuth2ClaimEmail,
|
|
OAuth2ClaimEmailVerified,
|
|
OAuth2ClaimName:
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func (v OAuth2Claim) String() string {
|
|
return string(v)
|
|
}
|
|
|
|
func (v OAuth2Claim) MarshalText() ([]byte, error) {
|
|
return []byte(v.String()), nil
|
|
}
|
|
|
|
func (v *OAuth2Claim) UnmarshalText(text []byte) error {
|
|
val := OAuth2Claim(text)
|
|
if !val.IsValid() {
|
|
return fmt.Errorf("invalid OAuth2Claim value: %q", string(text))
|
|
}
|
|
|
|
*v = val
|
|
|
|
return nil
|
|
}
|