gitlab_markdown_helper.rb 6.6 KB
Newer Older
1 2
require 'nokogiri'

3
module GitlabMarkdownHelper
4 5 6 7 8 9 10 11 12
  # Use this in places where you would normally use link_to(gfm(...), ...).
  #
  # It solves a problem occurring with nested links (i.e.
  # "<a>outer text <a>gfm ref</a> more outer text</a>"). This will not be
  # interpreted as intended. Browsers will parse something like
  # "<a>outer text </a><a>gfm ref</a> more outer text" (notice the last part is
  # not linked any more). link_to_gfm corrects that. It wraps all parts to
  # explicitly produce the correct linking behavior (i.e.
  # "<a>outer text </a><a>gfm ref</a><a> more outer text</a>").
13
  def link_to_gfm(body, url, html_options = {})
V
Vanja Radovanović 已提交
14
    return "" if body.blank?
15

16
    escaped_body = if body =~ /\A\<img/
17 18 19 20 21
                     body
                   else
                     escape_once(body)
                   end

22 23
    user = current_user if defined?(current_user)
    gfm_body = Gitlab::Markdown.gfm(escaped_body, project: @project, current_user: user)
24

S
SAKATA Sinji 已提交
25
    fragment = Nokogiri::HTML::DocumentFragment.parse(gfm_body)
26 27 28 29 30 31 32 33 34 35 36 37
    if fragment.children.size == 1 && fragment.children[0].name == 'a'
      # Fragment has only one node, and it's a link generated by `gfm`.
      # Replace it with our requested link.
      text = fragment.children[0].text
      fragment.children[0].replace(link_to(text, url, html_options))
    else
      # Traverse the fragment's first generation of children looking for pure
      # text, wrapping anything found in the requested link
      fragment.children.each do |node|
        next unless node.text?
        node.replace(link_to(node.text, url, html_options))
      end
38 39
    end

40 41 42 43 44
    # Add any custom CSS classes to the GFM-generated reference links
    if html_options[:class]
      fragment.css('a.gfm').add_class(html_options[:class])
    end

45
    fragment.to_html.html_safe
46
  end
R
randx 已提交
47

48
  def markdown(text, context = {})
49
    process_markdown(text, context)
R
randx 已提交
50
  end
51

52 53 54
  # TODO (rspeicher): Remove all usages of this helper and just call `markdown`
  # with a custom pipeline depending on the content being rendered
  def gfm(text, options = {})
55
    process_markdown(text, options, :gfm)
56 57
  end

58 59 60 61 62 63 64 65 66 67
  def asciidoc(text)
    Gitlab::Asciidoc.render(text, {
      commit: @commit,
      project: @project,
      project_wiki: @project_wiki,
      requested_path: @path,
      ref: @ref
    })
  end

68 69 70 71
  # Return the first line of +text+, up to +max_chars+, after parsing the line
  # as Markdown.  HTML tags in the parsed output are not counted toward the
  # +max_chars+ limit.  If the length limit falls within a tag's contents, then
  # the tag contents are truncated without removing the closing tag.
72 73
  def first_line_in_markdown(text, max_chars = nil, options = {})
    md = markdown(text, options).strip
74

75
    truncate_visible(md, max_chars || md.length) if md.present?
76 77
  end

78
  def render_wiki_content(wiki_page)
79 80
    case wiki_page.format
    when :markdown
81
      markdown(wiki_page.content)
82 83
    when :asciidoc
      asciidoc(wiki_page.content)
84 85 86 87
    else
      wiki_page.formatted_content.html_safe
    end
  end
88

89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
  MARKDOWN_TIPS = [
    "End a line with two or more spaces for a line-break, or soft-return",
    "Inline code can be denoted by `surrounding it with backticks`",
    "Blocks of code can be denoted by three backticks ``` or four leading spaces",
    "Emoji can be added by :emoji_name:, for example :thumbsup:",
    "Notify other participants using @user_name",
    "Notify a specific group using @group_name",
    "Notify the entire team using @all",
    "Reference an issue using a hash, for example issue #123",
    "Reference a merge request using an exclamation point, for example MR !123",
    "Italicize words or phrases using *asterisks* or _underscores_",
    "Bold words or phrases using **double asterisks** or __double underscores__",
    "Strikethrough words or phrases using ~~two tildes~~",
    "Make a bulleted list using + pluses, - minuses, or * asterisks",
    "Denote blockquotes using > at the beginning of a line",
    "Make a horizontal line using three or more hyphens ---, asterisks ***, or underscores ___"
  ].freeze

  # Returns a random markdown tip for use as a textarea placeholder
  def random_markdown_tip
D
Darby 已提交
109
    MARKDOWN_TIPS.sample
110 111
  end

112 113 114 115 116 117 118
  private

  # Return +text+, truncated to +max_chars+ characters, excluding any HTML
  # tags.
  def truncate_visible(text, max_chars)
    doc = Nokogiri::HTML.fragment(text)
    content_length = 0
119
    truncated = false
120 121 122

    doc.traverse do |node|
      if node.text? || node.content.empty?
123
        if truncated
124 125 126 127
          node.remove
          next
        end

128 129 130 131 132 133
        # Handle line breaks within a node
        if node.content.strip.lines.length > 1
          node.content = "#{node.content.lines.first.chomp}..."
          truncated = true
        end

134 135 136
        num_remaining = max_chars - content_length
        if node.content.length > num_remaining
          node.content = node.content.truncate(num_remaining)
137
          truncated = true
138 139 140
        end
        content_length += node.content.length
      end
141 142

      truncated = truncate_if_block(node, truncated)
143 144 145 146
    end

    doc.to_html
  end
147 148 149 150 151 152

  # Used by #truncate_visible.  If +node+ is the first block element, and the
  # text hasn't already been truncated, then append "..." to the node contents
  # and return true.  Otherwise return false.
  def truncate_if_block(node, truncated)
    if node.element? && node.description.block? && !truncated
153
      node.inner_html = "#{node.inner_html}..." if node.next_sibling
154 155 156 157 158
      true
    else
      truncated
    end
  end
159

160 161 162 163 164 165 166 167 168 169 170 171 172 173
  # Returns the text necessary to reference `entity` across projects
  #
  # project - Project to reference
  # entity  - Object that responds to `to_reference`
  #
  # Examples:
  #
  #   cross_project_reference(project, project.issues.first)
  #   # => 'namespace1/project1#123'
  #
  #   cross_project_reference(project, project.merge_requests.first)
  #   # => 'namespace1/project1!345'
  #
  # Returns a String
174
  def cross_project_reference(project, entity)
175 176
    if entity.respond_to?(:to_reference)
      "#{project.to_reference}#{entity.to_reference}"
177
    else
178
      ''
179 180
    end
  end
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202

  def process_markdown(text, options, method = :markdown)
    return "" unless text.present?

    options.reverse_merge!(
      path:         @path,
      pipeline:     :default,
      project:      @project,
      project_wiki: @project_wiki,
      ref:          @ref
    )

    user = current_user if defined?(current_user)

    html = if method == :gfm
             Gitlab::Markdown.gfm(text, options)
           else
             Gitlab::Markdown.render(text, options)
           end

    Gitlab::Markdown.post_process(html, pipeline: options[:pipeline], project: @project, user: user)
  end
203
end