panda_pal 5.3.6 → 5.3.12
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/README.md +13 -1
- data/app/controllers/panda_pal/lti_v1_p0_controller.rb +1 -1
- data/app/controllers/panda_pal/lti_v1_p3_controller.rb +7 -2
- data/app/lib/lti_xml/base_platform.rb +7 -2
- data/app/lib/panda_pal/launch_url_helpers.rb +9 -8
- data/app/models/panda_pal/organization_concerns/task_scheduling.rb +6 -2
- data/config/initializers/apartment.rb +3 -1
- data/config/routes.rb +1 -0
- data/lib/panda_pal/engine.rb +8 -0
- data/lib/panda_pal/helpers/controller_helper.rb +5 -1
- data/lib/panda_pal/helpers/route_helper.rb +6 -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: 776a9f59c8500e45d110c3e672e8ec97a891e186687473f33d4561ea74f31902
|
4
|
+
data.tar.gz: b308adfeea7b3b5c15b2a023edd9a0e5eec8a0a768e1fc58c0ecc2c40891cbd0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81b794f8cb355eb4c1f2b3497062cf513e240349212a5b607edfcbe7e47074010cb3ef2fdb9da3025e492ed9c8f75b306270adefb59cc73919469f08a21ad664
|
7
|
+
data.tar.gz: a840a2ad126d6b06f54ec8786b964de3e1095f6f9243d0dcf8b3a18d694f1fa05994127969756678639aacf16849ed7c8528744fd01c7bcf89660c05c891aada
|
data/README.md
CHANGED
@@ -93,10 +93,22 @@ The following routes should be added to the routes.rb file of the implementing L
|
|
93
93
|
```ruby
|
94
94
|
# config/routes.rb
|
95
95
|
mount PandaPal::Engine, at: '/lti'
|
96
|
-
lti_nav account_navigation: 'accounts#launch' # Use lti_nav to provide a custom Launch implementation, otherwise use the url: param of stage_navigation to let PandaPal handle launch.
|
97
96
|
root to: 'panda_pal/lti#launch'
|
97
|
+
|
98
|
+
# Add Launch Endpoints:
|
99
|
+
lti_nav account_navigation: 'accounts#launch', auto_launch: false # (LTI <1.3 Default)
|
100
|
+
# -- OR --
|
101
|
+
scope '/organizations/:organization_id' do
|
102
|
+
lti_nav account_navigation: 'accounts#launch_landing', auto_launch: true # (LTI 1.3 Default)
|
103
|
+
lti_nav account_navigation: 'accounts#launch_landing' # Automatically sets auto_launch to true because :organization_id is part of the path
|
104
|
+
# ...
|
105
|
+
end
|
98
106
|
```
|
99
107
|
|
108
|
+
`auto_launch`: Setting to `true` will tell PandaPal to handle all of the launch details and session creation, and then pass off to
|
109
|
+
the defined action. Setting it to `false` indicates that the defined action handles launch validation and setup itself (this has been the legacy approach).
|
110
|
+
Because `auto_launch: false` is most similar to the previous behavior, it is the default for LTI 1.0/1.1 LTIs. For LTI 1.3 LTIs, `auto_launch: true` is the default. If not specified and `:organization_id` is detected in the Route Path, `auto_launch` will be set to `true`
|
111
|
+
|
100
112
|
## Implementating data segregation
|
101
113
|
This engine uses Apartment to keep data segregated between installations of the implementing LTI tool.
|
102
114
|
By default, it does this by inspecting the path of the request, and matching URLs containing `orgs` or `organizations`,
|
@@ -2,7 +2,7 @@ require_dependency "panda_pal/application_controller"
|
|
2
2
|
|
3
3
|
module PandaPal
|
4
4
|
class LtiV1P3Controller < ApplicationController
|
5
|
-
|
5
|
+
skip_before_action :verify_authenticity_token
|
6
6
|
before_action :validate_launch!, only: [:resource_link_request]
|
7
7
|
around_action :switch_tenant, only: [:resource_link_request]
|
8
8
|
|
@@ -58,7 +58,12 @@ module PandaPal
|
|
58
58
|
opts = LaunchUrlHelpers.normalize_lti_launch_desc(opts)
|
59
59
|
opts.merge!({
|
60
60
|
placement: k,
|
61
|
-
target_link_uri: LaunchUrlHelpers.absolute_launch_url(
|
61
|
+
target_link_uri: LaunchUrlHelpers.absolute_launch_url(
|
62
|
+
k.to_sym,
|
63
|
+
host: parsed_request_url,
|
64
|
+
launch_handler: v1p3_resource_link_request_path,
|
65
|
+
default_auto_launch: true
|
66
|
+
),
|
62
67
|
})
|
63
68
|
opts
|
64
69
|
end
|
@@ -85,8 +85,13 @@ module LtiXml
|
|
85
85
|
end
|
86
86
|
|
87
87
|
def ext_params(options, k)
|
88
|
-
options = LaunchUrlHelpers.normalize_lti_launch_desc(options)
|
89
|
-
options[:url] = PandaPal::LaunchUrlHelpers.absolute_launch_url(
|
88
|
+
options = PandaPal::LaunchUrlHelpers.normalize_lti_launch_desc(options)
|
89
|
+
options[:url] = PandaPal::LaunchUrlHelpers.absolute_launch_url(
|
90
|
+
k.to_sym,
|
91
|
+
host: parsed_request_url,
|
92
|
+
launch_handler: :v1p0_launch_path,
|
93
|
+
default_auto_launch: false
|
94
|
+
)
|
90
95
|
options
|
91
96
|
end
|
92
97
|
end
|
@@ -1,25 +1,26 @@
|
|
1
1
|
module PandaPal
|
2
2
|
module LaunchUrlHelpers
|
3
|
-
def self.absolute_launch_url(launch_type, host:, launch_handler: nil)
|
3
|
+
def self.absolute_launch_url(launch_type, host:, launch_handler: nil, default_auto_launch: false)
|
4
4
|
opts = PandaPal.lti_paths[launch_type]
|
5
|
-
|
5
|
+
auto_launch = opts[:auto_launch] != nil ? opts[:auto_launch] : default_auto_launch
|
6
|
+
auto_launch = auto_launch && launch_handler.present?
|
6
7
|
|
7
|
-
if
|
8
|
-
final_url = launch_url(opts, launch_type: launch_type)
|
9
|
-
return final_url if URI.parse(final_url).absolute?
|
10
|
-
return [host.to_s, final_url].join
|
11
|
-
else
|
8
|
+
if auto_launch
|
12
9
|
launch_handler = resolve_route(launch_handler) if launch_handler.is_a?(Symbol)
|
13
10
|
return add_url_params([host.to_s, launch_handler].join, {
|
14
11
|
launch_type: launch_type,
|
15
12
|
})
|
13
|
+
else
|
14
|
+
final_url = launch_url(opts, launch_type: launch_type)
|
15
|
+
return final_url if URI.parse(final_url).absolute?
|
16
|
+
return [host.to_s, final_url].join
|
16
17
|
end
|
17
18
|
end
|
18
19
|
|
19
20
|
def self.normalize_lti_launch_desc(opts)
|
20
21
|
opts = opts.dup
|
21
22
|
opts.delete(:route_helper_key)
|
22
|
-
opts.delete(:
|
23
|
+
opts.delete(:auto_launch)
|
23
24
|
opts
|
24
25
|
end
|
25
26
|
|
@@ -168,13 +168,17 @@ module PandaPal
|
|
168
168
|
return nil unless cron_time.present?
|
169
169
|
|
170
170
|
cron_time = instance_exec(&cron_time) if cron_time.is_a?(Proc)
|
171
|
-
if !Rufus::Scheduler.parse(cron_time).zone.present? && settings &&
|
172
|
-
cron_time += " #{
|
171
|
+
if !Rufus::Scheduler.parse(cron_time).zone.present? && settings && settings_timezone
|
172
|
+
cron_time += " #{settings_timezone}"
|
173
173
|
end
|
174
174
|
|
175
175
|
cron_time
|
176
176
|
end
|
177
177
|
|
178
|
+
def settings_timezone
|
179
|
+
settings[:timezone] || settings.dig(:canvas, :root_account_timezone).presence || nil
|
180
|
+
end
|
181
|
+
|
178
182
|
class ScheduledTaskExecutor
|
179
183
|
include Sidekiq::Worker
|
180
184
|
|
@@ -10,8 +10,10 @@ Apartment.configure do |config|
|
|
10
10
|
end
|
11
11
|
|
12
12
|
Rails.application.config.middleware.use Apartment::Elevators::Generic, lambda { |request|
|
13
|
-
if match = request.path.match(/\/(?:orgs
|
13
|
+
if match = request.path.match(/\/(?:orgs?|organizations?)\/(\d+)/)
|
14
14
|
PandaPal::Organization.find_by(id: match[1]).try(:name)
|
15
|
+
elsif request.path.starts_with?('/rails/active_storage/blobs/')
|
16
|
+
PandaPal::Organization.find_by(id: request.params['organization_id']).try(:name)
|
15
17
|
end
|
16
18
|
}
|
17
19
|
|
data/config/routes.rb
CHANGED
data/lib/panda_pal/engine.rb
CHANGED
@@ -24,6 +24,14 @@ module PandaPal
|
|
24
24
|
end
|
25
25
|
end
|
26
26
|
|
27
|
+
initializer 'Sidekiq Scheduler Hooks' do
|
28
|
+
ActiveSupport.on_load(:active_record) do
|
29
|
+
if Sidekiq.server? && PandaPal::Organization.respond_to?(:sync_schedules)
|
30
|
+
PandaPal::Organization.sync_schedules
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
27
35
|
initializer 'panda_pal.app_controller' do |app|
|
28
36
|
OAUTH_10_SUPPORT = true
|
29
37
|
ActiveSupport.on_load(:action_controller) do
|
@@ -39,7 +39,11 @@ module PandaPal::Helpers
|
|
39
39
|
|
40
40
|
def validate_v1p0_launch
|
41
41
|
authorized = false
|
42
|
-
|
42
|
+
# We should verify the timestamp is recent (within 5 minutes). The approved timestamp is part of the signature,
|
43
|
+
# so we don't need to worry about malicious users messing with it. We should deny requests that come too long
|
44
|
+
# after the approved timestamp.
|
45
|
+
good_timestamp = params['oauth_timestamp'] && params['oauth_timestamp'].to_i > Time.now.to_i - 300
|
46
|
+
if @organization = good_timestamp && params['oauth_consumer_key'] && PandaPal::Organization.find_by_key(params['oauth_consumer_key'])
|
43
47
|
sanitized_params = request.request_parameters
|
44
48
|
# These params come over with a safari-workaround launch. The authenticator doesn't like them, so clean them out.
|
45
49
|
safe_unexpected_params = ["full_win_launch_requested", "platform_redirect_url", "dummy_param"]
|
@@ -9,7 +9,12 @@ module PandaPal::Helpers::RouteHelper
|
|
9
9
|
path = "#{base_path}/#{nav.to_s}"
|
10
10
|
|
11
11
|
lti_options = options.delete(:lti_options) || {}
|
12
|
-
lti_options[:
|
12
|
+
lti_options[:auto_launch] = options.delete(:auto_launch)
|
13
|
+
|
14
|
+
if lti_options[:auto_launch].nil?
|
15
|
+
lti_options[:auto_launch] = (@scope[:path] || '').include?(':organization_id')
|
16
|
+
end
|
17
|
+
|
13
18
|
lti_options[:route_helper_key] = path.split('/').reject(&:empty?).join('_')
|
14
19
|
post(path, options.dup, &block)
|
15
20
|
get(path, options.dup, &block)
|
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.3.
|
4
|
+
version: 5.3.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Instructure ProServe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-02-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|