panda_pal 5.12.5 → 5.12.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 427b8c2fd4edd7d2f4e8e8ea329bb6a61aa1ca0c78623f18f0ebd77d14909cc0
4
- data.tar.gz: 85d633457678c235b6755bb56d8085ed6712e3be042acfffff1d2a29c0b39806
3
+ metadata.gz: 11384f7b7e5a2e3421c2e467f780d30bc6ba5cefd37eb9ca6cbed4c9b0fecd77
4
+ data.tar.gz: ff120eb68167ac47123cf13803c652bfed0e58dffe6914f1637f4d28ba5567c1
5
5
  SHA512:
6
- metadata.gz: 4752a6f25b0c938f32aa9ef3b15c24ec21418b7287d9ac7d55c5987de82d24369fd33bd7e95e9a2da26c7e35800402e439f6da55a339856ee0b1e9c542b1ce25
7
- data.tar.gz: d09935e4b817e371922553acf5bca5532b77b48c408c9d6fb9c83477e79b8731d794839bd8b661aaa68c796851b1445823048e398364540f4a9fba04b56dc1c7
6
+ metadata.gz: 3e62cb29c2b532f19bd23468cc8c9a3a84706f55758e7c73a674ea3efb970147f32989761bcbbfa23d337beae895c070ba99a1de747c952bff20bbce35b69b4b
7
+ data.tar.gz: d5472fdca2d586b14aebf5aedb575407a5711cddc5c2d6d340f7a4e4cfe7a1fa001adf5d95d8775d3ec0572ddf12318e4aa2ffc31871107397cbc08308127e02
@@ -5,10 +5,10 @@ module PandaPal
5
5
  class Platform
6
6
  require_relative "platform/canvas"
7
7
 
8
- def public_jwks
8
+ def public_jwks(force: false)
9
9
  require "json/jwt"
10
10
 
11
- jwk_json = Rails.cache.fetch("panda_pal/jwks/#{jwks_url}")
11
+ jwk_json = Rails.cache.fetch("panda_pal/jwks/#{jwks_url}").presence unless force
12
12
  jwk_json ||= begin
13
13
  response = HTTParty.get(jwks_url)
14
14
  response.success? ? response.body : nil
@@ -75,7 +75,11 @@ module PandaPal::Helpers
75
75
  raise JSON::JWT::VerificationFailed, 'Unrecognized Organization' unless @organization.present?
76
76
  raise JSON::JWT::VerificationFailed, 'Organization does not trust platform' unless @organization.trusted_platform?(current_lti_platform)
77
77
 
78
- decoded_jwt.verify!(current_lti_platform.public_jwks)
78
+ begin
79
+ decoded_jwt.verify!(current_lti_platform.public_jwks)
80
+ rescue JSON::JWK::Set::KidNotFound
81
+ decoded_jwt.verify!(current_lti_platform.public_jwks(force: true))
82
+ end
79
83
 
80
84
  raise JSON::JWT::VerificationFailed, 'State is invalid' unless current_session_data[:lti_oauth_nonce] == decoded_jwt['nonce']
81
85
 
@@ -1,3 +1,3 @@
1
1
  module PandaPal
2
- VERSION = "5.12.5"
2
+ VERSION = "5.12.7"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: panda_pal
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.12.5
4
+ version: 5.12.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Instructure CustomDev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-17 00:00:00.000000000 Z
11
+ date: 2025-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails