gitlab_markdown_helper.rb 6.23 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 = {})
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
    user = current_user if defined?(current_user)
23
    gfm_body = Banzai.render(escaped_body, project: @project, current_user: user, pipeline: :single_line)
24

SAKATA Sinji's avatar
SAKATA Sinji committed
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
randx's avatar
randx committed
47

48
  def markdown(text, context = {})
Douwe Maan's avatar
Douwe Maan committed
49
    return "" unless text.present?
50

51
    context[:project] ||= @project
52

53
    html = Banzai.render(text, context)
54

55 56
    context.merge!(
      current_user:   (current_user if defined?(current_user)),
57

58 59 60 61
      # RelativeLinkFilter
      requested_path: @path,
      project_wiki:   @project_wiki,
      ref:            @ref
62 63
    )

64
    Banzai.post_process(html, context)
65 66
  end

67
  def asciidoc(text)
Gabriel Mazetto's avatar
Gabriel Mazetto committed
68 69
    Gitlab::Asciidoc.render(
      text,
70 71 72 73 74
      project:      @project,
      current_user: (current_user if defined?(current_user)),

      # RelativeLinkFilter
      project_wiki:   @project_wiki,
75
      requested_path: @path,
76 77 78
      ref:            @ref,
      commit:         @commit
    )
79 80
  end

81 82 83 84
  # 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.
85 86
  def first_line_in_markdown(text, max_chars = nil, options = {})
    md = markdown(text, options).strip
87

88
    truncate_visible(md, max_chars || md.length) if md.present?
89 90
  end

91
  def render_wiki_content(wiki_page)
92 93
    case wiki_page.format
    when :markdown
94
      markdown(wiki_page.content)
95 96
    when :asciidoc
      asciidoc(wiki_page.content)
97 98 99 100
    else
      wiki_page.formatted_content.html_safe
    end
  end
101

102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
  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
Darby's avatar
Darby committed
122
    MARKDOWN_TIPS.sample
123 124
  end

125 126 127 128 129 130 131
  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
132
    truncated = false
133 134 135

    doc.traverse do |node|
      if node.text? || node.content.empty?
136
        if truncated
137 138 139 140
          node.remove
          next
        end

141 142 143 144 145 146
        # Handle line breaks within a node
        if node.content.strip.lines.length > 1
          node.content = "#{node.content.lines.first.chomp}..."
          truncated = true
        end

147 148 149
        num_remaining = max_chars - content_length
        if node.content.length > num_remaining
          node.content = node.content.truncate(num_remaining)
150
          truncated = true
151 152 153
        end
        content_length += node.content.length
      end
154 155

      truncated = truncate_if_block(node, truncated)
156 157 158 159
    end

    doc.to_html
  end
160 161 162 163 164 165

  # 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
166
      node.inner_html = "#{node.inner_html}..." if node.next_sibling
167 168 169 170 171
      true
    else
      truncated
    end
  end
172

173 174 175 176 177 178 179 180 181 182 183 184 185 186
  # 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
187
  def cross_project_reference(project, entity)
188 189
    if entity.respond_to?(:to_reference)
      "#{project.to_reference}#{entity.to_reference}"
190
    else
191
      ''
192 193
    end
  end
194
end