http urls monitor.

map_claims.go 2.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package jwt
  2. import (
  3. "encoding/json"
  4. "errors"
  5. // "fmt"
  6. )
  7. // Claims type that uses the map[string]interface{} for JSON decoding
  8. // This is the default claims type if you don't supply one
  9. type MapClaims map[string]interface{}
  10. // Compares the aud claim against cmp.
  11. // If required is false, this method will return true if the value matches or is unset
  12. func (m MapClaims) VerifyAudience(cmp string, req bool) bool {
  13. aud, _ := m["aud"].(string)
  14. return verifyAud(aud, cmp, req)
  15. }
  16. // Compares the exp claim against cmp.
  17. // If required is false, this method will return true if the value matches or is unset
  18. func (m MapClaims) VerifyExpiresAt(cmp int64, req bool) bool {
  19. switch exp := m["exp"].(type) {
  20. case float64:
  21. return verifyExp(int64(exp), cmp, req)
  22. case json.Number:
  23. v, _ := exp.Int64()
  24. return verifyExp(v, cmp, req)
  25. }
  26. return req == false
  27. }
  28. // Compares the iat claim against cmp.
  29. // If required is false, this method will return true if the value matches or is unset
  30. func (m MapClaims) VerifyIssuedAt(cmp int64, req bool) bool {
  31. switch iat := m["iat"].(type) {
  32. case float64:
  33. return verifyIat(int64(iat), cmp, req)
  34. case json.Number:
  35. v, _ := iat.Int64()
  36. return verifyIat(v, cmp, req)
  37. }
  38. return req == false
  39. }
  40. // Compares the iss claim against cmp.
  41. // If required is false, this method will return true if the value matches or is unset
  42. func (m MapClaims) VerifyIssuer(cmp string, req bool) bool {
  43. iss, _ := m["iss"].(string)
  44. return verifyIss(iss, cmp, req)
  45. }
  46. // Compares the nbf claim against cmp.
  47. // If required is false, this method will return true if the value matches or is unset
  48. func (m MapClaims) VerifyNotBefore(cmp int64, req bool) bool {
  49. switch nbf := m["nbf"].(type) {
  50. case float64:
  51. return verifyNbf(int64(nbf), cmp, req)
  52. case json.Number:
  53. v, _ := nbf.Int64()
  54. return verifyNbf(v, cmp, req)
  55. }
  56. return req == false
  57. }
  58. // Validates time based claims "exp, iat, nbf".
  59. // There is no accounting for clock skew.
  60. // As well, if any of the above claims are not in the token, it will still
  61. // be considered a valid claim.
  62. func (m MapClaims) Valid() error {
  63. vErr := new(ValidationError)
  64. now := TimeFunc().Unix()
  65. if m.VerifyExpiresAt(now, false) == false {
  66. vErr.Inner = errors.New("Token is expired")
  67. vErr.Errors |= ValidationErrorExpired
  68. }
  69. if m.VerifyIssuedAt(now, false) == false {
  70. vErr.Inner = errors.New("Token used before issued")
  71. vErr.Errors |= ValidationErrorIssuedAt
  72. }
  73. if m.VerifyNotBefore(now, false) == false {
  74. vErr.Inner = errors.New("Token is not valid yet")
  75. vErr.Errors |= ValidationErrorNotValidYet
  76. }
  77. if vErr.valid() {
  78. return nil
  79. }
  80. return vErr
  81. }