2012-04-18 03:49:21 +04:00
|
|
|
package jwt
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/base64"
|
|
|
|
"encoding/json"
|
2012-04-18 23:18:31 +04:00
|
|
|
"net/http"
|
2012-04-18 23:59:37 +04:00
|
|
|
"strings"
|
|
|
|
"time"
|
2012-04-18 03:49:21 +04:00
|
|
|
)
|
|
|
|
|
2014-02-11 05:27:59 +04:00
|
|
|
// TimeFunc provides the current time when parsing token to validate "exp" claim (expiration time).
|
|
|
|
// You can override it to use another time value. This is useful for testing or if your
|
|
|
|
// server uses a different time zone than your tokens.
|
2014-02-06 03:07:40 +04:00
|
|
|
var TimeFunc = time.Now
|
|
|
|
|
2012-07-07 03:16:34 +04:00
|
|
|
// Parse methods use this callback function to supply
|
|
|
|
// the key for verification. The function receives the parsed,
|
|
|
|
// but unverified Token. This allows you to use propries in the
|
|
|
|
// Header of the token (such as `kid`) to identify which key to use.
|
2014-08-04 22:26:53 +04:00
|
|
|
type Keyfunc func(*Token) (interface{}, error)
|
2012-07-07 03:16:34 +04:00
|
|
|
|
2014-06-16 06:40:38 +04:00
|
|
|
// A JWT Token. Different fields will be used depending on whether you're
|
|
|
|
// creating or parsing/verifying a token.
|
2012-04-18 03:49:21 +04:00
|
|
|
type Token struct {
|
2014-06-16 06:39:12 +04:00
|
|
|
Raw string // The raw token. Populated when you Parse a token
|
|
|
|
Method SigningMethod // The signing method used or to be used
|
|
|
|
Header map[string]interface{} // The first segment of the token
|
|
|
|
Claims map[string]interface{} // The second segment of the token
|
|
|
|
Signature string // The third segment of the token. Populated when you Parse a token
|
|
|
|
Valid bool // Is the token valid? Populated when you Parse/Verify a token
|
2012-04-18 03:49:21 +04:00
|
|
|
}
|
|
|
|
|
2014-06-16 06:39:12 +04:00
|
|
|
// Create a new Token. Takes a signing method
|
2012-07-07 04:02:20 +04:00
|
|
|
func New(method SigningMethod) *Token {
|
2012-07-07 02:43:17 +04:00
|
|
|
return &Token{
|
|
|
|
Header: map[string]interface{}{
|
|
|
|
"typ": "JWT",
|
|
|
|
"alg": method.Alg(),
|
|
|
|
},
|
|
|
|
Claims: make(map[string]interface{}),
|
2012-07-07 23:12:49 +04:00
|
|
|
Method: method,
|
2012-07-07 02:43:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-07 03:12:33 +04:00
|
|
|
// Get the complete, signed token
|
2014-09-29 22:00:25 +04:00
|
|
|
func (t *Token) SignedString(key interface{}) (string, error) {
|
2012-07-07 03:07:55 +04:00
|
|
|
var sig, sstr string
|
|
|
|
var err error
|
|
|
|
if sstr, err = t.SigningString(); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
if sig, err = t.Method.Sign(sstr, key); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return strings.Join([]string{sstr, sig}, "."), nil
|
2012-07-07 02:43:17 +04:00
|
|
|
}
|
|
|
|
|
2012-07-07 03:12:33 +04:00
|
|
|
// Generate the signing string. This is the
|
|
|
|
// most expensive part of the whole deal. Unless you
|
|
|
|
// need this for something special, just go straight for
|
|
|
|
// the SignedString.
|
2012-07-07 04:02:20 +04:00
|
|
|
func (t *Token) SigningString() (string, error) {
|
2012-07-07 03:07:55 +04:00
|
|
|
var err error
|
|
|
|
parts := make([]string, 2)
|
|
|
|
for i, _ := range parts {
|
|
|
|
var source map[string]interface{}
|
|
|
|
if i == 0 {
|
|
|
|
source = t.Header
|
|
|
|
} else {
|
|
|
|
source = t.Claims
|
|
|
|
}
|
2012-07-07 04:02:20 +04:00
|
|
|
|
2012-07-07 03:07:55 +04:00
|
|
|
var jsonValue []byte
|
|
|
|
if jsonValue, err = json.Marshal(source); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2012-07-07 04:02:20 +04:00
|
|
|
|
2012-07-07 03:07:55 +04:00
|
|
|
parts[i] = EncodeSegment(jsonValue)
|
|
|
|
}
|
|
|
|
return strings.Join(parts, "."), nil
|
2012-07-07 02:43:17 +04:00
|
|
|
}
|
|
|
|
|
2012-04-18 10:25:22 +04:00
|
|
|
// Parse, validate, and return a token.
|
|
|
|
// keyFunc will receive the parsed token and should return the key for validating.
|
|
|
|
// If everything is kosher, err will be nil
|
2014-03-08 02:43:11 +04:00
|
|
|
func Parse(tokenString string, keyFunc Keyfunc) (*Token, error) {
|
2015-10-29 21:45:16 +03:00
|
|
|
return new(Parser).Parse(tokenString, keyFunc)
|
2014-03-08 02:43:11 +04:00
|
|
|
}
|
|
|
|
|
2012-07-07 03:12:33 +04:00
|
|
|
// Try to find the token in an http.Request.
|
2012-07-07 23:38:18 +04:00
|
|
|
// This method will call ParseMultipartForm if there's no token in the header.
|
|
|
|
// Currently, it looks in the Authorization header as well as
|
|
|
|
// looking for an 'access_token' request parameter in req.Form.
|
2012-07-07 03:16:34 +04:00
|
|
|
func ParseFromRequest(req *http.Request, keyFunc Keyfunc) (token *Token, err error) {
|
2012-04-18 23:18:31 +04:00
|
|
|
|
2012-04-18 23:35:16 +04:00
|
|
|
// Look for an Authorization header
|
|
|
|
if ah := req.Header.Get("Authorization"); ah != "" {
|
|
|
|
// Should be a bearer token
|
2015-12-20 01:49:37 +03:00
|
|
|
if len(ah) > 6 && strings.ToUpper(ah[0:7]) == "BEARER " {
|
2015-12-23 11:43:00 +03:00
|
|
|
return Parse(ah, keyFunc)
|
2012-04-18 23:35:16 +04:00
|
|
|
}
|
|
|
|
}
|
2012-04-18 23:59:37 +04:00
|
|
|
|
2012-07-07 23:38:18 +04:00
|
|
|
// Look for "access_token" parameter
|
2012-07-07 23:40:24 +04:00
|
|
|
req.ParseMultipartForm(10e6)
|
2012-07-07 23:38:18 +04:00
|
|
|
if tokStr := req.Form.Get("access_token"); tokStr != "" {
|
|
|
|
return Parse(tokStr, keyFunc)
|
|
|
|
}
|
|
|
|
|
2014-10-20 09:09:02 +04:00
|
|
|
return nil, ErrNoTokenInRequest
|
2012-04-18 23:59:37 +04:00
|
|
|
|
2012-04-18 23:18:31 +04:00
|
|
|
}
|
|
|
|
|
2012-07-07 03:12:33 +04:00
|
|
|
// Encode JWT specific base64url encoding with padding stripped
|
2012-07-07 04:02:20 +04:00
|
|
|
func EncodeSegment(seg []byte) string {
|
2012-07-07 02:43:17 +04:00
|
|
|
return strings.TrimRight(base64.URLEncoding.EncodeToString(seg), "=")
|
|
|
|
}
|
|
|
|
|
2012-07-07 03:12:33 +04:00
|
|
|
// Decode JWT specific base64url encoding with padding stripped
|
2012-04-18 23:59:37 +04:00
|
|
|
func DecodeSegment(seg string) ([]byte, error) {
|
2014-06-03 18:15:11 +04:00
|
|
|
if l := len(seg) % 4; l > 0 {
|
|
|
|
seg += strings.Repeat("=", 4-l)
|
2012-04-18 23:18:31 +04:00
|
|
|
}
|
2012-04-18 23:59:37 +04:00
|
|
|
|
2012-04-18 23:18:31 +04:00
|
|
|
return base64.URLEncoding.DecodeString(seg)
|
2012-04-18 23:59:37 +04:00
|
|
|
}
|