mirror of https://github.com/minio/minio.git
81 lines
2.2 KiB
Go
81 lines
2.2 KiB
Go
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
//
|
|
// This file is part of MinIO Object Storage stack
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package condition
|
|
|
|
// JWT claims supported substitutions.
|
|
// https://www.iana.org/assignments/jwt/jwt.xhtml#claims
|
|
const (
|
|
// JWTSub - JWT subject claim substitution.
|
|
JWTSub Key = "jwt:sub"
|
|
|
|
// JWTIss issuer claim substitution.
|
|
JWTIss Key = "jwt:iss"
|
|
|
|
// JWTAud audience claim substitution.
|
|
JWTAud Key = "jwt:aud"
|
|
|
|
// JWTJti JWT unique identifier claim substitution.
|
|
JWTJti Key = "jwt:jti"
|
|
|
|
JWTUpn Key = "jwt:upn"
|
|
JWTName Key = "jwt:name"
|
|
JWTGroups Key = "jwt:groups"
|
|
JWTGivenName Key = "jwt:given_name"
|
|
JWTFamilyName Key = "jwt:family_name"
|
|
JWTMiddleName Key = "jwt:middle_name"
|
|
JWTNickName Key = "jwt:nickname"
|
|
JWTPrefUsername Key = "jwt:preferred_username"
|
|
JWTProfile Key = "jwt:profile"
|
|
JWTPicture Key = "jwt:picture"
|
|
JWTWebsite Key = "jwt:website"
|
|
JWTEmail Key = "jwt:email"
|
|
JWTGender Key = "jwt:gender"
|
|
JWTBirthdate Key = "jwt:birthdate"
|
|
JWTPhoneNumber Key = "jwt:phone_number"
|
|
JWTAddress Key = "jwt:address"
|
|
JWTScope Key = "jwt:scope"
|
|
JWTClientID Key = "jwt:client_id"
|
|
)
|
|
|
|
// JWTKeys - Supported JWT keys, non-exhaustive list please
|
|
// expand as new claims are standardized.
|
|
var JWTKeys = []Key{
|
|
JWTSub,
|
|
JWTIss,
|
|
JWTAud,
|
|
JWTJti,
|
|
JWTName,
|
|
JWTUpn,
|
|
JWTGroups,
|
|
JWTGivenName,
|
|
JWTFamilyName,
|
|
JWTMiddleName,
|
|
JWTNickName,
|
|
JWTPrefUsername,
|
|
JWTProfile,
|
|
JWTPicture,
|
|
JWTWebsite,
|
|
JWTEmail,
|
|
JWTGender,
|
|
JWTBirthdate,
|
|
JWTPhoneNumber,
|
|
JWTAddress,
|
|
JWTScope,
|
|
JWTClientID,
|
|
}
|