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 +4 -4
- data/app/models/panda_pal/platform.rb +2 -2
- data/lib/panda_pal/helpers/controller_helper.rb +5 -1
- data/lib/panda_pal/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 11384f7b7e5a2e3421c2e467f780d30bc6ba5cefd37eb9ca6cbed4c9b0fecd77
|
4
|
+
data.tar.gz: ff120eb68167ac47123cf13803c652bfed0e58dffe6914f1637f4d28ba5567c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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
|
|
data/lib/panda_pal/version.rb
CHANGED
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.
|
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:
|
11
|
+
date: 2025-01-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|