2015-05-29 01:56:30 -04:00
|
|
|
require 'nokogiri'
|
|
|
|
|
2012-08-02 20:28:02 -04:00
|
|
|
module GitlabMarkdownHelper
|
2012-08-23 14:10:06 -04:00
|
|
|
# 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>").
|
2012-08-02 20:28:02 -04:00
|
|
|
def link_to_gfm(body, url, html_options = {})
|
2012-09-10 11:32:31 -04:00
|
|
|
return "" if body.blank?
|
2012-09-19 19:42:26 -04:00
|
|
|
|
2016-10-06 18:01:42 -04:00
|
|
|
context = {
|
|
|
|
project: @project,
|
|
|
|
current_user: (current_user if defined?(current_user)),
|
|
|
|
pipeline: :single_line,
|
|
|
|
}
|
|
|
|
gfm_body = Banzai.render(body, context)
|
2012-08-02 20:28:02 -04:00
|
|
|
|
2015-10-01 00:09:07 -04:00
|
|
|
fragment = Nokogiri::HTML::DocumentFragment.parse(gfm_body)
|
2015-05-29 01:56:30 -04:00
|
|
|
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
|
2012-08-02 20:28:02 -04:00
|
|
|
end
|
|
|
|
|
2015-08-27 17:28:45 -04:00
|
|
|
# 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
|
|
|
|
|
2015-05-29 01:56:30 -04:00
|
|
|
fragment.to_html.html_safe
|
2012-08-02 20:28:02 -04:00
|
|
|
end
|
2012-08-08 04:52:09 -04:00
|
|
|
|
2015-08-27 16:09:01 -04:00
|
|
|
def markdown(text, context = {})
|
2015-10-07 09:17:43 -04:00
|
|
|
return "" unless text.present?
|
2015-09-03 16:38:35 -04:00
|
|
|
|
2015-10-14 13:27:23 -04:00
|
|
|
context[:project] ||= @project
|
2013-03-14 02:31:08 -04:00
|
|
|
|
2015-12-15 09:51:16 -05:00
|
|
|
html = Banzai.render(text, context)
|
2016-10-06 17:17:11 -04:00
|
|
|
banzai_postprocess(html, context)
|
|
|
|
end
|
2013-03-14 02:31:08 -04:00
|
|
|
|
2016-10-06 17:17:11 -04:00
|
|
|
def markdown_field(object, field)
|
|
|
|
object = object.for_display if object.respond_to?(:for_display)
|
|
|
|
return "" unless object.present?
|
2015-09-03 16:38:35 -04:00
|
|
|
|
2016-10-06 17:17:11 -04:00
|
|
|
html = Banzai.render_field(object, field)
|
|
|
|
banzai_postprocess(html, object.banzai_render_context(field))
|
2015-08-27 18:36:56 -04:00
|
|
|
end
|
|
|
|
|
2015-05-12 19:07:48 -04:00
|
|
|
def asciidoc(text)
|
2015-12-14 21:53:52 -05:00
|
|
|
Gitlab::Asciidoc.render(
|
|
|
|
text,
|
2015-10-14 14:18:49 -04:00
|
|
|
project: @project,
|
2016-02-01 11:07:59 -05:00
|
|
|
current_user: (current_user if defined?(current_user)),
|
|
|
|
|
|
|
|
# RelativeLinkFilter
|
|
|
|
project_wiki: @project_wiki,
|
|
|
|
requested_path: @path,
|
|
|
|
ref: @ref,
|
|
|
|
commit: @commit
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def other_markup(file_name, text)
|
|
|
|
Gitlab::OtherMarkup.render(
|
|
|
|
file_name,
|
|
|
|
text,
|
|
|
|
project: @project,
|
2015-10-14 14:18:49 -04:00
|
|
|
current_user: (current_user if defined?(current_user)),
|
|
|
|
|
|
|
|
# RelativeLinkFilter
|
|
|
|
project_wiki: @project_wiki,
|
2015-05-12 19:07:48 -04:00
|
|
|
requested_path: @path,
|
2015-10-14 14:18:49 -04:00
|
|
|
ref: @ref,
|
|
|
|
commit: @commit
|
|
|
|
)
|
2015-05-12 19:07:48 -04:00
|
|
|
end
|
|
|
|
|
2014-10-11 22:17:02 -04:00
|
|
|
# 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.
|
2015-05-14 07:05:33 -04:00
|
|
|
def first_line_in_markdown(text, max_chars = nil, options = {})
|
|
|
|
md = markdown(text, options).strip
|
2014-10-11 22:17:02 -04:00
|
|
|
|
2014-10-13 00:07:18 -04:00
|
|
|
truncate_visible(md, max_chars || md.length) if md.present?
|
2014-09-12 06:45:00 -04:00
|
|
|
end
|
|
|
|
|
2013-03-14 02:31:08 -04:00
|
|
|
def render_wiki_content(wiki_page)
|
2015-05-12 19:07:48 -04:00
|
|
|
case wiki_page.format
|
|
|
|
when :markdown
|
2016-06-08 01:02:50 -04:00
|
|
|
markdown(wiki_page.content, pipeline: :wiki, project_wiki: @project_wiki, page_slug: wiki_page.slug)
|
2015-05-12 19:07:48 -04:00
|
|
|
when :asciidoc
|
|
|
|
asciidoc(wiki_page.content)
|
2013-03-14 02:31:08 -04:00
|
|
|
else
|
|
|
|
wiki_page.formatted_content.html_safe
|
|
|
|
end
|
|
|
|
end
|
2013-10-08 06:24:50 -04:00
|
|
|
|
2014-10-11 22:17:02 -04:00
|
|
|
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
|
2014-10-13 00:07:18 -04:00
|
|
|
truncated = false
|
2014-10-11 22:17:02 -04:00
|
|
|
|
|
|
|
doc.traverse do |node|
|
|
|
|
if node.text? || node.content.empty?
|
2014-10-13 00:07:18 -04:00
|
|
|
if truncated
|
2014-10-11 22:17:02 -04:00
|
|
|
node.remove
|
|
|
|
next
|
|
|
|
end
|
|
|
|
|
2014-10-13 00:07:18 -04:00
|
|
|
# Handle line breaks within a node
|
|
|
|
if node.content.strip.lines.length > 1
|
|
|
|
node.content = "#{node.content.lines.first.chomp}..."
|
|
|
|
truncated = true
|
|
|
|
end
|
|
|
|
|
2014-10-11 22:17:02 -04:00
|
|
|
num_remaining = max_chars - content_length
|
|
|
|
if node.content.length > num_remaining
|
|
|
|
node.content = node.content.truncate(num_remaining)
|
2014-10-13 00:07:18 -04:00
|
|
|
truncated = true
|
2014-10-11 22:17:02 -04:00
|
|
|
end
|
|
|
|
content_length += node.content.length
|
|
|
|
end
|
2014-10-13 00:07:18 -04:00
|
|
|
|
|
|
|
truncated = truncate_if_block(node, truncated)
|
2014-10-11 22:17:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
doc.to_html
|
|
|
|
end
|
2014-10-13 00:07:18 -04:00
|
|
|
|
|
|
|
# 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
|
2015-09-23 00:56:27 -04:00
|
|
|
node.inner_html = "#{node.inner_html}..." if node.next_sibling
|
2014-10-13 00:07:18 -04:00
|
|
|
true
|
|
|
|
else
|
|
|
|
truncated
|
|
|
|
end
|
|
|
|
end
|
2014-10-20 05:56:01 -04:00
|
|
|
|
2015-04-20 18:47:22 -04:00
|
|
|
# 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
|
2014-10-20 05:56:01 -04:00
|
|
|
def cross_project_reference(project, entity)
|
2015-04-20 18:47:22 -04:00
|
|
|
if entity.respond_to?(:to_reference)
|
2016-11-02 19:49:13 -04:00
|
|
|
entity.to_reference(project)
|
2014-10-20 05:56:01 -04:00
|
|
|
else
|
2015-04-20 18:47:22 -04:00
|
|
|
''
|
2014-10-20 05:56:01 -04:00
|
|
|
end
|
|
|
|
end
|
2016-06-03 10:14:04 -04:00
|
|
|
|
|
|
|
def markdown_toolbar_button(options = {})
|
|
|
|
data = options[:data].merge({ container: "body" })
|
|
|
|
content_tag :button,
|
|
|
|
type: "button",
|
|
|
|
class: "toolbar-btn js-md has-tooltip hidden-xs",
|
|
|
|
tabindex: -1,
|
|
|
|
data: data,
|
|
|
|
title: options[:title],
|
|
|
|
aria: { label: options[:title] } do
|
|
|
|
icon(options[:icon])
|
|
|
|
end
|
|
|
|
end
|
2016-10-06 17:17:11 -04:00
|
|
|
|
|
|
|
# Calls Banzai.post_process with some common context options
|
|
|
|
def banzai_postprocess(html, context)
|
|
|
|
context.merge!(
|
|
|
|
current_user: (current_user if defined?(current_user)),
|
|
|
|
|
|
|
|
# RelativeLinkFilter
|
|
|
|
requested_path: @path,
|
|
|
|
project_wiki: @project_wiki,
|
|
|
|
ref: @ref
|
|
|
|
)
|
|
|
|
|
|
|
|
Banzai.post_process(html, context)
|
|
|
|
end
|
2012-08-02 20:28:02 -04:00
|
|
|
end
|