Class: Sidekiq::WebAction
- Inherits:
-
Object
- Object
- Sidekiq::WebAction
- Defined in:
- lib/sidekiq/web/action.rb
Constant Summary collapse
- RACK_SESSION =
"rack.session"
Instance Attribute Summary collapse
-
#block ⇒ Object
Returns the value of attribute block.
-
#env ⇒ Object
Returns the value of attribute env.
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
- #erb(content, options = {}) ⇒ Object
- #halt(res) ⇒ Object
-
#initialize(env, block) ⇒ WebAction
constructor
A new instance of WebAction.
- #json(payload) ⇒ Object
- #params ⇒ Object
- #redirect(location) ⇒ Object
- #reload_page ⇒ Object
- #render(engine, content, options = {}) ⇒ Object
- #request ⇒ Object
- #route_params ⇒ Object
- #session ⇒ Object
- #settings ⇒ Object
Constructor Details
#initialize(env, block) ⇒ WebAction
Returns a new instance of WebAction.
84 85 86 87 88 89 |
# File 'lib/sidekiq/web/action.rb', line 84 def initialize(env, block) @_erb = false @env = env @block = block @files ||= {} end |
Instance Attribute Details
#block ⇒ Object
Returns the value of attribute block.
7 8 9 |
# File 'lib/sidekiq/web/action.rb', line 7 def block @block end |
#env ⇒ Object
Returns the value of attribute env.
7 8 9 |
# File 'lib/sidekiq/web/action.rb', line 7 def env @env end |
#type ⇒ Object
Returns the value of attribute type.
7 8 9 |
# File 'lib/sidekiq/web/action.rb', line 7 def type @type end |
Instance Method Details
#erb(content, options = {}) ⇒ Object
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/sidekiq/web/action.rb', line 47 def erb(content, = {}) if content.is_a? Symbol unless respond_to?(:"_erb_#{content}") views = [:views] || Web.settings.views filename = "#{views}/#{content}.erb" src = ERB.new(File.read(filename)).src # Need to use lineno less by 1 because erb generates a # comment before the source code. WebAction.class_eval <<-RUBY, filename, -1 # standard:disable Style/EvalWithLocation def _erb_#{content} #{src} end RUBY end end if @_erb _erb(content, [:locals]) else @_erb = true content = _erb(content, [:locals]) _render { content } end end |
#halt(res) ⇒ Object
17 18 19 |
# File 'lib/sidekiq/web/action.rb', line 17 def halt(res) throw :halt, [res, {Rack::CONTENT_TYPE => "text/plain"}, [res.to_s]] end |
#json(payload) ⇒ Object
80 81 82 |
# File 'lib/sidekiq/web/action.rb', line 80 def json(payload) [200, {Rack::CONTENT_TYPE => "application/json", Rack::CACHE_CONTROL => "private, no-store"}, [Sidekiq.dump_json(payload)]] end |
#params ⇒ Object
30 31 32 33 34 35 36 37 |
# File 'lib/sidekiq/web/action.rb', line 30 def params indifferent_hash = Hash.new { |hash, key| hash[key.to_s] if Symbol === key } indifferent_hash.merge! request.params route_params.each { |k, v| indifferent_hash[k.to_s] = v } indifferent_hash end |
#redirect(location) ⇒ Object
21 22 23 |
# File 'lib/sidekiq/web/action.rb', line 21 def redirect(location) throw :halt, [302, {Web::LOCATION => "#{request.base_url}#{location}"}, []] end |
#reload_page ⇒ Object
25 26 27 28 |
# File 'lib/sidekiq/web/action.rb', line 25 def reload_page current_location = request.referer.gsub(request.base_url, "") redirect current_location end |
#render(engine, content, options = {}) ⇒ Object
74 75 76 77 78 |
# File 'lib/sidekiq/web/action.rb', line 74 def render(engine, content, = {}) raise "Only erb templates are supported" if engine != :erb erb(content, ) end |
#request ⇒ Object
13 14 15 |
# File 'lib/sidekiq/web/action.rb', line 13 def request @request ||= ::Rack::Request.new(env) end |
#route_params ⇒ Object
39 40 41 |
# File 'lib/sidekiq/web/action.rb', line 39 def route_params env[WebRouter::ROUTE_PARAMS] end |
#session ⇒ Object
43 44 45 |
# File 'lib/sidekiq/web/action.rb', line 43 def session env[RACK_SESSION] end |