Class: Brakeman::Report::HTML
- Defined in:
- lib/brakeman/report/report_html.rb
Constant Summary collapse
- HTML_CONFIDENCE =
[ "<span class='high-confidence'>High</span>", "<span class='med-confidence'>Medium</span>", "<span class='weak-confidence'>Weak</span>" ]
Constants inherited from Base
Constants included from Util
Util::ALL_COOKIES, Util::ALL_PARAMETERS, Util::COOKIES, Util::COOKIES_SEXP, Util::PARAMETERS, Util::PARAMS_SEXP, Util::PATH_PARAMETERS, Util::QUERY_PARAMETERS, Util::REQUEST_COOKIES, Util::REQUEST_ENV, Util::REQUEST_PARAMETERS, Util::REQUEST_PARAMS, Util::SESSION, Util::SESSION_SEXP
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
- #convert_ignored_warning(warning, original) ⇒ Object
- #convert_template_warning(warning, original) ⇒ Object
- #convert_warning(warning, original) ⇒ Object
- #generate_overview ⇒ Object
- #generate_report ⇒ Object
-
#generate_templates ⇒ Object
Generate listings of templates and their output.
-
#html_header ⇒ Object
Return header for HTML output.
-
#html_message(warning, message) ⇒ Object
Escape warning message and highlight user input in HTML output.
-
#initialize(*args) ⇒ HTML
constructor
A new instance of HTML.
- #render_array(template, headings, value_array, locals) ⇒ Object
-
#with_context(warning, message) ⇒ Object
Generate HTML for warnings, including context show/hidden via Javascript.
- #with_link(warning, message) ⇒ Object
Methods inherited from Base
#all_warnings, #controller_warnings, #convert_controller_warning, #convert_model_warning, #convert_to_rows, #filter_warnings, #generate_controller_warnings, #generate_controllers, #generate_errors, #generate_ignored_warnings, #generate_model_warnings, #generate_obsolete, #generate_template_warnings, #generate_warning_overview, #generate_warnings, #generic_warnings, #ignored_warnings, #model_warnings, #number_of_templates, #rails_version, #render_warnings, #sort, #template_warnings, #text_message, #warning_file, #warnings_summary
Methods included from Util
#array?, #block?, #call?, #camelize, #class_name, #constant?, #contains_class?, #context_for, #cookies?, #false?, #file_by_name, #file_for, #github_url, #hash?, #hash_access, #hash_insert, #hash_iterate, #integer?, #make_call, #node_type?, #number?, #params?, #pluralize, #rails_version, #regexp?, #relative_path, #request_env?, #request_value?, #result?, #set_env_defaults, #sexp?, #string?, #string_interp?, #symbol?, #table_to_csv, #template_path_to_name, #true?, #truncate_table, #underscore
Constructor Details
#initialize(*args) ⇒ HTML
Returns a new instance of HTML.
8 9 10 11 12 |
# File 'lib/brakeman/report/report_html.rb', line 8 def initialize *args super @element_id = 0 #Used for HTML ids end |
Instance Method Details
#convert_ignored_warning(warning, original) ⇒ Object
88 89 90 91 92 93 |
# File 'lib/brakeman/report/report_html.rb', line 88 def convert_ignored_warning warning, original warning = convert_warning(warning, original) warning['File'] = original.relative_path warning['Note'] = CGI.escapeHTML(@ignore_filter.note_for(original) || "") warning end |
#convert_template_warning(warning, original) ⇒ Object
79 80 81 82 83 84 85 86 |
# File 'lib/brakeman/report/report_html.rb', line 79 def convert_template_warning warning, original warning["Confidence"] = HTML_CONFIDENCE[warning["Confidence"]] warning["Message"] = with_context original, warning["Message"] warning["Warning Type"] = with_link original, warning["Warning Type"] warning["Called From"] = original.called_from warning["Template Name"] = original.template.name warning end |
#convert_warning(warning, original) ⇒ Object
68 69 70 71 72 73 |
# File 'lib/brakeman/report/report_html.rb', line 68 def convert_warning warning, original warning["Confidence"] = HTML_CONFIDENCE[warning["Confidence"]] warning["Message"] = with_context original, warning["Message"] warning["Warning Type"] = with_link original, warning["Warning Type"] warning end |
#generate_overview ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/brakeman/report/report_html.rb', line 33 def generate_overview locals = { :tracker => tracker, :warnings => all_warnings.length, :warnings_summary => warnings_summary, :number_of_templates => number_of_templates(@tracker), :ignored_warnings => ignored_warnings.length } Brakeman::Report::Renderer.new('overview', :locals => locals).render end |
#generate_report ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/brakeman/report/report_html.rb', line 14 def generate_report out = html_header << generate_overview << generate_warning_overview.to_s # Return early if only summarizing return out if tracker.[:summary_only] out << generate_controllers.to_s if tracker.[:report_routes] or tracker.[:debug] out << generate_templates.to_s if tracker.[:debug] out << generate_errors.to_s out << generate_warnings.to_s out << generate_controller_warnings.to_s out << generate_model_warnings.to_s out << generate_template_warnings.to_s out << generate_ignored_warnings.to_s out << "</body></html>" end |
#generate_templates ⇒ Object
Generate listings of templates and their output
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/brakeman/report/report_html.rb', line 46 def generate_templates out_processor = Brakeman::OutputProcessor.new template_rows = {} tracker.templates.each do |name, template| template.each_output do |out| out = CGI.escapeHTML(out_processor.format(out)) template_rows[name] ||= [] template_rows[name] << out.gsub("\n", ";").gsub(/\s+/, " ") end end template_rows = template_rows.sort_by{|name, value| name.to_s} Brakeman::Report::Renderer.new('template_overview', :locals => {:template_rows => template_rows}).render end |
#html_header ⇒ Object
Return header for HTML output. Uses CSS from tracker.options
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/brakeman/report/report_html.rb', line 96 def html_header if File.exist? tracker.[:html_style] css = File.read tracker.[:html_style] else raise "Cannot find CSS stylesheet for HTML: #{tracker.[:html_style]}" end locals = { :css => css, :tracker => tracker, :checks => checks, :rails_version => rails_version, :brakeman_version => Brakeman::Version } Brakeman::Report::Renderer.new('header', :locals => locals).render end |
#html_message(warning, message) ⇒ Object
Escape warning message and highlight user input in HTML output
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 |
# File 'lib/brakeman/report/report_html.rb', line 201 def warning, = CGI.escapeHTML() if warning.file github_url = github_url warning.file, warning.line .gsub!(/(near line \d+)/, "<a href=\"#{github_url}\" target='_blank'>\\1</a>") if github_url end if @highlight_user_input and warning.user_input user_input = CGI.escapeHTML(warning.format_user_input) .gsub!(user_input, "<span class=\"user_input\">#{user_input}</span>") end end |
#render_array(template, headings, value_array, locals) ⇒ Object
62 63 64 65 66 |
# File 'lib/brakeman/report/report_html.rb', line 62 def render_array template, headings, value_array, locals return if value_array.empty? Brakeman::Report::Renderer.new(template, :locals => locals).render end |
#with_context(warning, message) ⇒ Object
Generate HTML for warnings, including context show/hidden via Javascript
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
# File 'lib/brakeman/report/report_html.rb', line 115 def with_context warning, context = context_for(@app_tree, warning) = nil if tracker.[:message_limit] and tracker.[:message_limit] > 0 and .length > tracker.[:message_limit] = (warning, ) = [0..tracker.[:message_limit]] << "..." end = (warning, ) return if context.empty? and not @element_id += 1 code_id = "context#@element_id" = "message#@element_id" = "full_message#@element_id" alt = false output = "<div class='warning_message' onClick=\"toggle('#{code_id}');toggle('#{}');toggle('#{}')\" >" << if "<span id='#{}' style='display:block' >#{}</span>" << "<span id='#{}' style='display:none'>#{}</span>" else end << "<table id='#{code_id}' class='context' style='display:none'>" << "<caption>#{CGI.escapeHTML warning_file(warning) || ''}</caption>" output << <<-HTML <thead style='display:none'> <tr> <th>line number</th> <th>line content</th> </tr> </thead> <tbody> HTML unless context.empty? if warning.line - 1 == 1 or warning.line + 1 == 1 error = " near_error" elsif 1 == warning.line error = " error" else error = "" end output << <<-HTML <tr class='context first#{error}'> <td class='context_line'> <pre class='context'>#{context.first[0]}</pre> </td> <td class='context'> <pre class='context'>#{CGI.escapeHTML context.first[1].chomp}</pre> </td> </tr> HTML if context.length > 1 output << context[1..-1].map do |code| alt = !alt if code[0] == warning.line - 1 or code[0] == warning.line + 1 error = " near_error" elsif code[0] == warning.line error = " error" else error = "" end <<-HTML <tr class='context#{alt ? ' alt' : ''}#{error}'> <td class='context_line'> <pre class='context'>#{code[0]}</pre> </td> <td class='context'> <pre class='context'>#{CGI.escapeHTML code[1].chomp}</pre> </td> </tr> HTML end.join end end output << "</tbody></table></div>" end |
#with_link(warning, message) ⇒ Object
75 76 77 |
# File 'lib/brakeman/report/report_html.rb', line 75 def with_link warning, "<a rel=\"no-referrer\" href=\"#{warning.link}\">#{}</a>" end |