Module: Danger::Helpers::CommentsHelper
- Includes:
- CommentsParsingHelper
- Included in:
- RequestSources::BitbucketCloud, RequestSources::BitbucketServer, RequestSources::GitHub, RequestSources::GitHubSource::Review, RequestSources::GitLab, RequestSources::LocalOnly, RequestSources::VSTS
- Defined in:
- lib/danger/helpers/comments_helper.rb
Instance Method Summary collapse
- #apply_template(tables: [], markdowns: [], danger_id: "danger", template: "github", request_source: template) ⇒ Object
- #generate_comment(warnings: [], errors: [], messages: [], markdowns: [], previous_violations: {}, danger_id: "danger", template: "github") ⇒ Object
- #generate_description(warnings: nil, errors: nil, template: "github") ⇒ Object
- #generate_inline_comment_body(emoji, message, danger_id: "danger", resolved: false, template: "github") ⇒ Object
- #generate_inline_markdown_body(markdown, danger_id: "danger", template: "github") ⇒ Object
-
#generate_message_group_comment(message_group:, danger_id: "danger", resolved: [], template: "github") ⇒ Object
resolved is essentially reserved for future use - eventually we might have some nice generic resolved-thing going :).
-
#markdown_link_to_message(message, hide_link) ⇒ String
!@group Extension points Produces a markdown link to the file the message points to.
- #markdown_parser(text) ⇒ Object
-
#messages_are_equivalent(m1, m2) ⇒ Boolean
!@group Extension points Determine whether two messages are equivalent.
- #process_markdown(violation, hide_link = false) ⇒ Object
- #random_compliment ⇒ Object
- #table(name, emoji, violations, all_previous_violations, template: "github") ⇒ Object
Methods included from CommentsParsingHelper
#parse_comment, #parse_message_from_row, #parse_tables_from_comment, #table_kind_from_title, #violations_from_table
Instance Method Details
#apply_template(tables: [], markdowns: [], danger_id: "danger", template: "github", request_source: template) ⇒ Object
81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/danger/helpers/comments_helper.rb', line 81 def apply_template(tables: [], markdowns: [], danger_id: "danger", template: "github", request_source: template) require "erb" md_template = File.join(Danger.gem_path, "lib/danger/comment_generators/#{template}.md.erb") # erb: http://www.rrn.dk/rubys-erb-templating-system # for the extra args: http://stackoverflow.com/questions/4632879/erb-template-removing-the-trailing-line @tables = tables @markdowns = markdowns.map(&:message) @danger_id = danger_id @emoji_mapper = EmojiMapper.new(request_source.sub("_inline", "")) return ERB.new(File.read(md_template), trim_mode: "-").result(binding) end |
#generate_comment(warnings: [], errors: [], messages: [], markdowns: [], previous_violations: {}, danger_id: "danger", template: "github") ⇒ Object
96 97 98 99 100 101 102 103 104 105 106 107 |
# File 'lib/danger/helpers/comments_helper.rb', line 96 def generate_comment(warnings: [], errors: [], messages: [], markdowns: [], previous_violations: {}, danger_id: "danger", template: "github") apply_template( tables: [ table("Error", "no_entry_sign", errors, previous_violations, template: template), table("Warning", "warning", warnings, previous_violations, template: template), table("Message", "book", , previous_violations, template: template) ], markdowns: markdowns, danger_id: danger_id, template: template ) end |
#generate_description(warnings: nil, errors: nil, template: "github") ⇒ Object
149 150 151 152 153 154 155 156 157 158 159 160 |
# File 'lib/danger/helpers/comments_helper.rb', line 149 def generate_description(warnings: nil, errors: nil, template: "github") emoji_mapper = EmojiMapper.new(template) if (errors.nil? || errors.empty?) && (warnings.nil? || warnings.empty?) return ENV["DANGER_SUCCESS_MESSAGE"] || "All green. #{random_compliment}" else = "#{emoji_mapper.map('warning')} " += "#{'Error'.danger_pluralize(errors.count)}. " unless errors.empty? += "#{'Warning'.danger_pluralize(warnings.count)}. " unless warnings.empty? += "Don't worry, everything is fixable." return end end |
#generate_inline_comment_body(emoji, message, danger_id: "danger", resolved: false, template: "github") ⇒ Object
129 130 131 132 133 134 135 136 137 138 139 |
# File 'lib/danger/helpers/comments_helper.rb', line 129 def generate_inline_comment_body(emoji, , danger_id: "danger", resolved: false, template: "github") apply_template( tables: [{ content: [], resolved: resolved, emoji: emoji }], danger_id: danger_id, template: "#{template}_inline" ) end |
#generate_inline_markdown_body(markdown, danger_id: "danger", template: "github") ⇒ Object
141 142 143 144 145 146 147 |
# File 'lib/danger/helpers/comments_helper.rb', line 141 def generate_inline_markdown_body(markdown, danger_id: "danger", template: "github") apply_template( markdowns: [markdown], danger_id: danger_id, template: "#{template}_inline" ) end |
#generate_message_group_comment(message_group:, danger_id: "danger", resolved: [], template: "github") ⇒ Object
resolved is essentially reserved for future use - eventually we might have some nice generic resolved-thing going :)
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
# File 'lib/danger/helpers/comments_helper.rb', line 111 def (message_group:, danger_id: "danger", resolved: [], template: "github") # cheating a bit - I don't want to alter the apply_template API # so just sneak around behind its back setting some instance variables # to get them to show up in the template @message_group = @resolved = resolved request_source_name = template.sub("_message_group", "") apply_template(danger_id: danger_id, markdowns: .markdowns, template: template, request_source: request_source_name) .sub(/\A\n*/, "") end |
#markdown_link_to_message(message, hide_link) ⇒ String
!@group Extension points Produces a markdown link to the file the message points to
request_source implementations are invited to override this method with their vendor specific link.
27 28 29 30 31 |
# File 'lib/danger/helpers/comments_helper.rb', line 27 def (, hide_link) return "" if hide_link "#{.file}#L#{.line}" end |
#markdown_parser(text) ⇒ Object
13 14 15 |
# File 'lib/danger/helpers/comments_helper.rb', line 13 def markdown_parser(text) Kramdown::Document.new(text, input: "GFM", smart_quotes: %w(apos apos quot quot)) end |
#messages_are_equivalent(m1, m2) ⇒ Boolean
!@group Extension points Determine whether two messages are equivalent
request_source implementations are invited to override this method. This is mostly here to enable sources to detect when inlines change only in their commit hash and not in content per-se. since the link is implementation dependant so should be the comparison.
45 46 47 |
# File 'lib/danger/helpers/comments_helper.rb', line 45 def (m1, m2) m1 == m2 end |
#process_markdown(violation, hide_link = false) ⇒ Object
49 50 51 52 53 54 55 56 57 |
# File 'lib/danger/helpers/comments_helper.rb', line 49 def process_markdown(violation, hide_link = false) = violation. = "#{(violation, hide_link)}#{}" if violation.file && violation.line html = markdown_parser().to_html # Remove the outer `<p>` and `</p>`. html = html.strip.sub(%r{\A<p>(.*)</p>\z}m, '\1') Violation.new(html, violation.sticky, violation.file, violation.line) end |
#random_compliment ⇒ Object
162 163 164 165 |
# File 'lib/danger/helpers/comments_helper.rb', line 162 def random_compliment ["Well done.", "Congrats.", "Woo!", "Yay.", "Jolly good show.", "Good on 'ya.", "Nice work."].sample end |
#table(name, emoji, violations, all_previous_violations, template: "github") ⇒ Object
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/danger/helpers/comments_helper.rb', line 59 def table(name, emoji, violations, all_previous_violations, template: "github") content = violations content = content.map { |v| process_markdown(v) } unless ["bitbucket_server", "vsts"].include?(template) kind = table_kind_from_title(name) previous_violations = all_previous_violations[kind] || [] resolved_violations = previous_violations.reject do |pv| content.count { |v| (v, pv) } > 0 end = resolved_violations.map(&:message).uniq count = content.count { name: name, emoji: emoji, content: content, resolved: , count: count } end |