panda_pal 5.3.7 → 5.3.13

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e3454f04c4cbf7a07dc7a041118bb3b60db681c531ebf228115de69f1114d50
4
- data.tar.gz: bc600d9940213278b6a0b9e908df51c24012a75ac120746758719faa91e8abbc
3
+ metadata.gz: c8eb58ee2c4df4d91c08b20c3ea717a1227ebbc212500b6f5a0abad01855fd8c
4
+ data.tar.gz: ba0b60f6ee46634a554ac779b6cadf671edb922bc33201ac762de4fa9263ec45
5
5
  SHA512:
6
- metadata.gz: 507728d1f3dbe751125f4bd7fbda5a2245c20eee20ea8d446f12d5b701007ab1fbee5cfe81d741d400966db2f526d484e4f8ffde1c82f5db43a1e685f96362cc
7
- data.tar.gz: c97afd8ec0a896f46a5b63a6eb8d9b9f13d31d995d448d29800f88f23c6fd4897877e7958e54d5d47e23dab04277c1eba7c73b852dc61704d197f3ec47ed27aa
6
+ metadata.gz: 1337a89241f5a12bc0f5d202197f17f6ea4478be3e44786e68cd2b2161fc8df0cc2338418c4cdacbaa99cb1ec9e07a06446bac3a9a9a965285f35b4cbdce91cb
7
+ data.tar.gz: 83c6c892aad41adc5fd7ec2709dd8f5b5a70c238764b9caad989f5a2021ee92d81c64ac05e6ce7a3e72d321d2abfa8b1aba3b1298b2225fff4d476b57d4bd3c6
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`,
@@ -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(k.to_sym, host: parsed_request_url, launch_handler: v1p3_resource_link_request_path),
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
@@ -86,7 +86,12 @@ module LtiXml
86
86
 
87
87
  def ext_params(options, k)
88
88
  options = PandaPal::LaunchUrlHelpers.normalize_lti_launch_desc(options)
89
- options[:url] = PandaPal::LaunchUrlHelpers.absolute_launch_url(k.to_sym, host: parsed_request_url, launch_handler: nil)
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
@@ -0,0 +1,41 @@
1
+ module PandaPal
2
+ # An array that "processes" after so many items are added.
3
+ #
4
+ # Example Usage:
5
+ # batches = BatchProcessor.new(of: 1000) do |batch|
6
+ # # Process the batch somehow
7
+ # end
8
+ # enumerator_of_some_kind.each { |item| batches << item }
9
+ # batches.flush
10
+ class BatchProcessor
11
+ attr_reader :batch_size
12
+
13
+ def initialize(of: 1000, &blk)
14
+ @batch_size = of
15
+ @block = blk
16
+ @current_batch = []
17
+ end
18
+
19
+ def <<(item)
20
+ @current_batch << item
21
+ process_batch if @current_batch.count >= batch_size
22
+ end
23
+
24
+ def add_all(items)
25
+ items.each do |i|
26
+ self << i
27
+ end
28
+ end
29
+
30
+ def flush
31
+ process_batch if @current_batch.present?
32
+ end
33
+
34
+ protected
35
+
36
+ def process_batch
37
+ @block.call(@current_batch)
38
+ @current_batch = []
39
+ end
40
+ end
41
+ 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
- is_direct = opts[:no_redirect] || !launch_handler.present?
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 is_direct
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(:no_redirect)
23
+ opts.delete(:auto_launch)
23
24
  opts
24
25
  end
25
26
 
@@ -8,8 +8,16 @@ module PandaPal
8
8
  end
9
9
 
10
10
  class_methods do
11
+ def define_setting(*args, &blk)
12
+ @_injected_settings_definitions ||= []
13
+ @_injected_settings_definitions << {
14
+ args: args,
15
+ block: blk,
16
+ }
17
+ end
18
+
11
19
  def settings_structure
12
- if PandaPal.lti_options&.[](:settings_structure).present?
20
+ struc = if PandaPal.lti_options&.[](:settings_structure).present?
13
21
  normalize_settings_structure(PandaPal.lti_options[:settings_structure])
14
22
  else
15
23
  {
@@ -18,6 +26,32 @@ module PandaPal
18
26
  properties: {},
19
27
  }
20
28
  end
29
+
30
+ (@_injected_settings_definitions || []).each do |sub|
31
+ args = [*sub[:args]]
32
+ path = args.shift || []
33
+ path = path.split('.') if path.is_a?(String)
34
+ path = Array(path)
35
+
36
+ if path.present?
37
+ key = path.pop
38
+
39
+ root = struc
40
+ path.each do |p|
41
+ root = root[:properties][p.to_sym]
42
+ end
43
+
44
+ if sub[:block]
45
+ root[:properties][key.to_sym] = sub[:block].call
46
+ else
47
+ root[:properties][key.to_sym] = args.shift
48
+ end
49
+ else
50
+ sub[:block].call(struc)
51
+ end
52
+ end
53
+
54
+ struc
21
55
  end
22
56
 
23
57
  def normalize_settings_structure(struc)
@@ -69,7 +103,7 @@ module PandaPal
69
103
  any_match = norm_types.any? do |t|
70
104
  if t == 'Boolean'
71
105
  settings == true || settings == false
72
- else
106
+ elsif t.is_a?(Class)
73
107
  settings.is_a?(t)
74
108
  end
75
109
  end
@@ -11,6 +11,31 @@ module PandaPal
11
11
  included do
12
12
  after_commit :sync_schedule, on: [:create, :update]
13
13
  after_commit :unschedule_tasks, on: :destroy
14
+
15
+ define_setting do |struc|
16
+ next unless _schedule_descriptors.present?
17
+
18
+ struc[:properties][:timezone] ||= {
19
+ type: 'String',
20
+ required: false,
21
+ validate: ->(timezone, *args) {
22
+ ActiveSupport::TimeZone[timezone].present? ? nil : "<path> Invalid Timezone '#{timezone}'"
23
+ },
24
+ }
25
+
26
+ struc[:properties][:task_schedules] = {
27
+ type: 'Hash',
28
+ required: false,
29
+ properties: _schedule_descriptors.keys.reduce({}) do |hash, k|
30
+ desc = _schedule_descriptors[k]
31
+
32
+ hash.tap do |hash|
33
+ kl = ' ' * (k.to_s.length - 4)
34
+ hash[k.to_sym] = hash[k.to_s] = PandaPal::OrganizationConcerns::TaskScheduling.build_settings_entry(desc)
35
+ end
36
+ end,
37
+ }
38
+ end
14
39
  end
15
40
 
16
41
  class_methods do
@@ -18,69 +43,6 @@ module PandaPal
18
43
  @_schedule_descriptors ||= {}
19
44
  end
20
45
 
21
- def settings_structure
22
- return super unless _schedule_descriptors.present?
23
-
24
- super.tap do |struc|
25
- struc[:properties] ||= {}
26
-
27
- struc[:properties][:timezone] ||= {
28
- type: 'String',
29
- required: false,
30
- validate: ->(timezone, *args) {
31
- ActiveSupport::TimeZone[timezone].present? ? nil : "<path> Invalid Timezone '#{timezone}'"
32
- },
33
- }
34
-
35
- struc[:properties][:task_schedules] = {
36
- type: 'Hash',
37
- required: false,
38
- properties: _schedule_descriptors.keys.reduce({}) do |hash, k|
39
- desc = _schedule_descriptors[k]
40
-
41
- hash.tap do |hash|
42
- kl = ' ' * (k.to_s.length - 4)
43
- hash[k.to_sym] = hash[k.to_s] = {
44
- required: false,
45
- description: <<~MARKDOWN,
46
- Override schedule for '#{k.to_s}' task.
47
-
48
- **Default**: #{desc[:schedule].is_a?(String) ? desc[:schedule] : '<Computed>'}
49
-
50
- Set to `false` to disable or supply a Cron string:
51
- ```yaml
52
- #{k.to_s}: 0 0 0 * * * America/Denver
53
- ##{kl} │ │ │ │ │ │ └── Timezone (Optional)
54
- ##{kl} │ │ │ │ │ └── Day of Week
55
- ##{kl} │ │ │ │ └── Month
56
- ##{kl} │ │ │ └── Day of Month
57
- ##{kl} │ │ └── Hour
58
- ##{kl} │ └── Minute
59
- ##{kl} └── Second (Optional)
60
- ````
61
- MARKDOWN
62
- json_schema: {
63
- oneOf: [
64
- { type: 'string', pattern: '^((((\d+,)+\d+|(\d+(\/|-)\d+)|\d+|\*) ?){5,6})(\w+\/\w+)?$' },
65
- { enum: [false] },
66
- ],
67
- default: desc[:schedule].is_a?(String) ? desc[:schedule] : '0 0 3 * * * America/Denver',
68
- },
69
- validate: ->(value, *args, errors:, **kwargs) {
70
- begin
71
- Rufus::Scheduler.parse(value) if value
72
- nil
73
- rescue ArgumentError
74
- errors << "<path> must be false or a Crontab string"
75
- end
76
- }
77
- }
78
- end
79
- end,
80
- }
81
- end
82
- end
83
-
84
46
  def scheduled_task(cron_time, name_or_method = nil, worker: nil, queue: nil, &block)
85
47
  task_key = (name_or_method.presence || "scheduled_task_#{caller_locations[0].lineno}").to_s
86
48
  raise "Task key '#{task_key}' already taken!" if _schedule_descriptors.key?(task_key)
@@ -137,6 +99,51 @@ module PandaPal
137
99
  end
138
100
  end
139
101
 
102
+ def self.build_settings_entry(desc)
103
+ k = desc[:key]
104
+ kl = ' ' * (k.to_s.length - 4)
105
+
106
+ default_schedule = '<Computed>'
107
+ default_schedule = desc[:schedule] if desc[:schedule].is_a?(String)
108
+ default_schedule = '<Disabled>' unless desc[:schedule].present?
109
+
110
+ {
111
+ required: false,
112
+ description: <<~MARKDOWN,
113
+ Override schedule for '#{k.to_s}' task.
114
+
115
+ **Default**: #{default_schedule}
116
+
117
+ Set to `false` to disable or supply a Cron string:
118
+ ```yaml
119
+ #{k.to_s}: 0 0 0 * * * America/Denver
120
+ ##{kl} │ │ │ │ │ │ └── Timezone (Optional)
121
+ ##{kl} │ │ │ │ │ └── Day of Week
122
+ ##{kl} │ │ │ │ └── Month
123
+ ##{kl} │ │ │ └── Day of Month
124
+ ##{kl} │ │ └── Hour
125
+ ##{kl} │ └── Minute
126
+ ##{kl} └── Second (Optional)
127
+ ````
128
+ MARKDOWN
129
+ json_schema: {
130
+ oneOf: [
131
+ { type: 'string', pattern: '^((((\d+,)+\d+|(\d+(\/|-)\d+)|\d+|\*) ?){5,6})(\w+\/\w+)?$' },
132
+ { enum: [false] },
133
+ ],
134
+ default: desc[:schedule].is_a?(String) ? desc[:schedule] : '0 0 3 * * * America/Denver',
135
+ },
136
+ validate: ->(value, *args, errors:, **kwargs) {
137
+ begin
138
+ Rufus::Scheduler.parse(value) if value
139
+ nil
140
+ rescue ArgumentError
141
+ errors << "<path> must be false or a Crontab string"
142
+ end
143
+ }
144
+ }
145
+ end
146
+
140
147
  private
141
148
 
142
149
  def unschedule_tasks(new_task_keys = nil)
@@ -157,13 +164,17 @@ module PandaPal
157
164
  return nil unless cron_time.present?
158
165
 
159
166
  cron_time = instance_exec(&cron_time) if cron_time.is_a?(Proc)
160
- if !Rufus::Scheduler.parse(cron_time).zone.present? && settings && settings[:timezone]
161
- cron_time += " #{settings[:timezone]}"
167
+ if !Rufus::Scheduler.parse(cron_time).zone.present? && settings && settings_timezone
168
+ cron_time += " #{settings_timezone}"
162
169
  end
163
170
 
164
171
  cron_time
165
172
  end
166
173
 
174
+ def settings_timezone
175
+ settings[:timezone] || settings.dig(:canvas, :root_account_timezone).presence || nil
176
+ end
177
+
167
178
  class ScheduledTaskExecutor
168
179
  include Sidekiq::Worker
169
180
 
@@ -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|organizations)\/(\d+)/)
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
@@ -3,6 +3,7 @@ PandaPal::Engine.routes.draw do
3
3
 
4
4
  scope '/v1p0', as: 'v1p0' do
5
5
  get '/config' => 'lti_v1_p0#tool_config'
6
+ post '/launch' => 'lti_v1_p0#launch'
6
7
  end
7
8
 
8
9
  scope '/v1p3', as: 'v1p3' do
@@ -19,7 +19,6 @@ class RemoveOldOrganizationSettings < PandaPal::MiscHelper::MigrationClass
19
19
  #PandaPal::Organization.reset_column_information
20
20
  PandaPal::Organization.find_each do |o|
21
21
  # Would like to just be able to do this:
22
- # PandaPal::Organization.reset_column_information
23
22
  # o.settings = YAML.load(o.old_settings)
24
23
  # o.save!
25
24
  # but for some reason that is always making the settings null. Instead we will encrypt the settings manually.
@@ -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
- if @organization = params['oauth_consumer_key'] && PandaPal::Organization.find_by_key(params['oauth_consumer_key'])
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[:no_redirect] = options.delete(:no_redirect)
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)