Beef up example

This commit is contained in:
Matthew Dillon 2015-05-07 22:33:03 -08:00
parent 1d3c39bb49
commit e80c34437b
2 changed files with 22 additions and 4 deletions

View file

@ -9,6 +9,7 @@ your application:
package main package main
import ( import (
"encoding/json"
"errors" "errors"
"fmt" "fmt"
"net/http" "net/http"
@ -41,8 +42,16 @@ func setClaims(id string) (map[string]interface{}, error) {
}, nil }, nil
} }
func verifyClaims([]byte) error { func verifyClaims(claims []byte) error {
// We don't really care about the claims, just approve as-is currentTime := time.Now()
var c struct {
Iat int64
Exp int64
}
_ = json.Unmarshal(claims, &c)
if currentTime.After(time.Unix(c.Exp, 0)) {
return errors.New("this token has expired")
}
return nil return nil
} }

View file

@ -1,6 +1,7 @@
package main package main
import ( import (
"encoding/json"
"errors" "errors"
"fmt" "fmt"
"net/http" "net/http"
@ -33,8 +34,16 @@ func setClaims(id string) (map[string]interface{}, error) {
}, nil }, nil
} }
func verifyClaims([]byte) error { func verifyClaims(claims []byte) error {
// We don't really care about the claims, just approve as-is currentTime := time.Now()
var c struct {
Iat int64
Exp int64
}
_ = json.Unmarshal(claims, &c)
if currentTime.After(time.Unix(c.Exp, 0)) {
return errors.New("this token has expired")
}
return nil return nil
} }