aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/new_base/renderer.rb
blob: f21fd746b7f60efb701e7355c512542773ada521 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
module ActionController
  module Renderer
    depends_on AbstractController::Renderer
    
    def initialize(*)
      self.formats = [:html]
      super
    end
    
    def render(options = {})
      _process_options(options)
      
      super(options)
    end

    def render_to_body(options)
      if options.key?(:text)
        options[:_template] = ActionView::TextTemplate.new(_text(options))
        template = nil
      elsif options.key?(:template)
        options[:_template_name] = options[:template]
      elsif options.key?(:action)
        options[:_template_name] = options[:action].to_s
        options[:_prefix] = _prefix 
      end
      
      ret = super(options)
      response.content_type ||= options[:_template].mime_type
      ret
    end
    
  private
  
    def _prefix
      controller_path
    end  
  
    def _text(options)
      text = options[:text]

      case text
      when nil then " "
      else text.to_s
      end
    end
  
    def _process_options(options)
      status, content_type = options.values_at(:status, :content_type)
      response.status = status.to_i if status
      response.content_type = content_type if content_type
    end
  end
end