Module: PandaPal::LaunchUrlHelpers
- Defined in:
- app/lib/panda_pal/launch_url_helpers.rb
Class Method Summary collapse
- .absolute_launch_url(launch_type, host: uri_host, launch_handler: nil, default_auto_launch: false) ⇒ Object
- .add_url_params(url, params) ⇒ Object
- .launch_route(opts, launch_type: nil) ⇒ Object
- .launch_url(opts, launch_type: nil) ⇒ Object
- .normalize_lti_launch_desc(opts) ⇒ Object
- .resolve_route(key, *arguments, engine: 'PandaPal', **kwargs) ⇒ Object
- .resolve_url_symbol(sym, **opts) ⇒ Object
- .uri_host ⇒ Object
- .url_for(options) ⇒ Object
- .with_uri_host(uri) ⇒ Object
Class Method Details
.absolute_launch_url(launch_type, host: uri_host, launch_handler: nil, default_auto_launch: false) ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'app/lib/panda_pal/launch_url_helpers.rb', line 3 def self.absolute_launch_url(launch_type, host: uri_host, launch_handler: nil, default_auto_launch: false) opts = PandaPal.lti_paths[launch_type] auto_launch = opts[:auto_launch] != nil ? opts[:auto_launch] : default_auto_launch auto_launch = auto_launch && launch_handler.present? if auto_launch launch_handler = resolve_route(launch_handler) if launch_handler.is_a?(Symbol) return add_url_params([host.to_s, launch_handler].join, { launch_type: launch_type, }) else final_url = launch_url(opts, launch_type: launch_type) return final_url if URI.parse(final_url).absolute? return [host.to_s, final_url].join end end |
.add_url_params(url, params) ⇒ Object
65 66 67 68 69 70 71 72 73 |
# File 'app/lib/panda_pal/launch_url_helpers.rb', line 65 def self.add_url_params(url, params) uri = URI(url) decoded_params = URI.decode_www_form(uri.query || "") params.each do |k, v| decoded_params << [k, v] end uri.query = URI.encode_www_form(decoded_params) uri.to_s end |
.launch_route(opts, launch_type: nil) ⇒ Object
45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'app/lib/panda_pal/launch_url_helpers.rb', line 45 def self.launch_route(opts, launch_type: nil) if opts.is_a?(Symbol) || opts.is_a?(String) launch_type = opts.to_sym opts = PandaPal.lti_paths[launch_type] end if opts[:route_helper_key] opts[:route_helper_key].to_sym else opts[:url] ||= launch_type opts[:url] end end |
.launch_url(opts, launch_type: nil) ⇒ Object
39 40 41 42 43 |
# File 'app/lib/panda_pal/launch_url_helpers.rb', line 39 def self.launch_url(opts, launch_type: nil) url = launch_route(opts, launch_type: launch_type) url = resolve_url_symbol(url) if url.is_a?(Symbol) url end |
.normalize_lti_launch_desc(opts) ⇒ Object
29 30 31 32 33 34 35 36 37 |
# File 'app/lib/panda_pal/launch_url_helpers.rb', line 29 def self.normalize_lti_launch_desc(opts) opts = opts.dup opts.delete(:route_helper_key) opts.delete(:auto_launch) opts.each do |k, v| opts[k] = v.call if v.is_a?(Proc) end opts end |
.resolve_route(key, *arguments, engine: 'PandaPal', **kwargs) ⇒ Object
93 94 95 96 97 98 99 100 101 102 |
# File 'app/lib/panda_pal/launch_url_helpers.rb', line 93 def self.resolve_route(key, *arguments, engine: 'PandaPal', **kwargs) return key if key.is_a?(String) key_bits = key.to_s.split('/') key_bits.prepend(engine) if key_bits.count == 1 key_bits[0] = key_bits[0].classify engine = key_bits[0] == 'MainApp' ? Rails.application : (key_bits[0].constantize)::Engine engine.routes.url_helpers.send(key_bits[1], *arguments, **kwargs) end |
.resolve_url_symbol(sym, **opts) ⇒ Object
59 60 61 62 63 |
# File 'app/lib/panda_pal/launch_url_helpers.rb', line 59 def self.resolve_url_symbol(sym, **opts) sym = :"#{sym}_url" unless sym.to_s.ends_with?('_url') opts[:only_path] = true unless opts.key?(:only_path) resolve_route(:"MainApp/#{sym}", **opts) end |
.uri_host ⇒ Object
88 89 90 91 |
# File 'app/lib/panda_pal/launch_url_helpers.rb', line 88 def self.uri_host request = Thread.current[:controller]&.request Thread.current[:panda_pal_access_uri]&.to_s || "#{request.scheme}://#{request.host_with_port}" end |
.url_for(options) ⇒ Object
20 21 22 23 24 25 26 27 |
# File 'app/lib/panda_pal/launch_url_helpers.rb', line 20 def self.url_for() if .is_a?(Symbol) Rails.application.routes.url_helpers.send(, host: uri_host) else [:host] ||= uri_host Rails.application.routes.url_helpers.url_for() end end |
.with_uri_host(uri) ⇒ Object
75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'app/lib/panda_pal/launch_url_helpers.rb', line 75 def self.with_uri_host(uri) uri = URI.parse(uri) unless uri.is_a?(URI) raise "host: param must have a protocal and no path" if uri.path.present? initial = Thread.current[:panda_pal_access_uri] begin Thread.current[:panda_pal_access_uri] = uri yield ensure Thread.current[:panda_pal_access_uri] = initial end end |