2014-09-01 11:47:28 -04:00
|
|
|
require 'html/pipeline'
|
|
|
|
require 'html/pipeline/gitlab'
|
|
|
|
|
2012-08-14 04:32:19 -04:00
|
|
|
module Gitlab
|
2012-09-06 03:50:47 -04:00
|
|
|
# Custom parser for GitLab-flavored Markdown
|
2012-08-23 14:10:06 -04:00
|
|
|
#
|
2012-09-05 16:07:39 -04:00
|
|
|
# It replaces references in the text with links to the appropriate items in
|
2012-09-06 15:23:42 -04:00
|
|
|
# GitLab.
|
2012-08-23 14:10:06 -04:00
|
|
|
#
|
|
|
|
# Supported reference formats are:
|
|
|
|
# * @foo for team members
|
|
|
|
# * #123 for issues
|
2013-05-27 10:53:50 -04:00
|
|
|
# * #JIRA-123 for Jira issues
|
2012-08-23 14:10:06 -04:00
|
|
|
# * !123 for merge requests
|
|
|
|
# * $123 for snippets
|
|
|
|
# * 123456 for commits
|
2012-08-14 04:32:19 -04:00
|
|
|
#
|
2012-09-05 16:07:39 -04:00
|
|
|
# It also parses Emoji codes to insert images. See
|
|
|
|
# http://www.emoji-cheat-sheet.com/ for a list of the supported icons.
|
2012-08-14 04:32:19 -04:00
|
|
|
#
|
2012-09-05 16:07:39 -04:00
|
|
|
# Examples
|
2012-08-14 04:32:19 -04:00
|
|
|
#
|
2012-09-05 16:07:39 -04:00
|
|
|
# >> gfm("Hey @david, can you fix this?")
|
2013-03-19 20:29:59 -04:00
|
|
|
# => "Hey <a href="/u/david">@david</a>, can you fix this?"
|
2012-08-14 04:32:19 -04:00
|
|
|
#
|
2012-09-05 16:07:39 -04:00
|
|
|
# >> gfm("Commit 35d5f7c closes #1234")
|
2012-08-14 04:32:19 -04:00
|
|
|
# => "Commit <a href="/gitlab/commits/35d5f7c">35d5f7c</a> closes <a href="/gitlab/issues/1234">#1234</a>"
|
2012-09-05 16:07:39 -04:00
|
|
|
#
|
|
|
|
# >> gfm(":trollface:")
|
|
|
|
# => "<img alt=\":trollface:\" class=\"emoji\" src=\"/images/trollface.png" title=\":trollface:\" />
|
|
|
|
module Markdown
|
2013-02-12 06:37:33 -05:00
|
|
|
include IssuesHelper
|
|
|
|
|
2012-08-14 04:32:19 -04:00
|
|
|
attr_reader :html_options
|
|
|
|
|
2012-09-05 16:07:39 -04:00
|
|
|
# Public: Parse the provided text with GitLab-Flavored Markdown
|
|
|
|
#
|
|
|
|
# text - the source text
|
2014-05-26 08:40:10 -04:00
|
|
|
# project - extra options for the reference links as given to link_to
|
2012-09-05 16:07:39 -04:00
|
|
|
# html_options - extra options for the reference links as given to link_to
|
2014-05-26 08:40:10 -04:00
|
|
|
def gfm(text, project = @project, html_options = {})
|
2012-09-05 16:07:39 -04:00
|
|
|
return text if text.nil?
|
|
|
|
|
2012-09-19 20:21:35 -04:00
|
|
|
# Duplicate the string so we don't alter the original, then call to_str
|
|
|
|
# to cast it back to a String instead of a SafeBuffer. This is required
|
|
|
|
# for gsub calls to work as we need them to.
|
|
|
|
text = text.dup.to_str
|
2012-09-07 19:58:12 -04:00
|
|
|
|
2012-08-14 04:32:19 -04:00
|
|
|
@html_options = html_options
|
2012-09-05 16:07:39 -04:00
|
|
|
|
|
|
|
# Extract pre blocks so they are not altered
|
|
|
|
# from http://github.github.com/github-flavored-markdown/
|
2013-01-16 16:37:39 -05:00
|
|
|
text.gsub!(%r{<pre>.*?</pre>|<code>.*?</code>}m) { |match| extract_piece(match) }
|
|
|
|
# Extract links with probably parsable hrefs
|
|
|
|
text.gsub!(%r{<a.*?>.*?</a>}m) { |match| extract_piece(match) }
|
|
|
|
# Extract images with probably parsable src
|
|
|
|
text.gsub!(%r{<img.*?>}m) { |match| extract_piece(match) }
|
2012-09-05 16:07:39 -04:00
|
|
|
|
|
|
|
# TODO: add popups with additional information
|
|
|
|
|
2014-05-26 08:40:10 -04:00
|
|
|
text = parse(text, project)
|
2012-09-05 16:07:39 -04:00
|
|
|
|
|
|
|
# Insert pre block extractions
|
|
|
|
text.gsub!(/\{gfm-extraction-(\h{32})\}/) do
|
2013-01-16 16:37:39 -05:00
|
|
|
insert_piece($1)
|
2012-09-05 16:07:39 -04:00
|
|
|
end
|
|
|
|
|
2014-09-01 11:47:28 -04:00
|
|
|
# Context passed to the markdoqwn pipeline
|
|
|
|
markdown_context = {
|
|
|
|
asset_root: File.join(root_url,
|
|
|
|
Gitlab::Application.config.assets.prefix)
|
|
|
|
}
|
|
|
|
|
|
|
|
result = HTML::Pipeline::Gitlab::MarkdownPipeline.call(text,
|
|
|
|
markdown_context)
|
|
|
|
text = result[:output].to_html(save_with: 0)
|
|
|
|
|
2014-05-26 08:40:10 -04:00
|
|
|
allowed_attributes = ActionView::Base.sanitized_allowed_attributes
|
|
|
|
allowed_tags = ActionView::Base.sanitized_allowed_tags
|
|
|
|
|
|
|
|
sanitize text.html_safe,
|
|
|
|
attributes: allowed_attributes + %w(id class),
|
|
|
|
tags: allowed_tags + %w(table tr td th)
|
2012-08-14 04:32:19 -04:00
|
|
|
end
|
|
|
|
|
2012-09-05 16:07:39 -04:00
|
|
|
private
|
|
|
|
|
2013-01-16 16:37:39 -05:00
|
|
|
def extract_piece(text)
|
|
|
|
@extractions ||= {}
|
|
|
|
|
|
|
|
md5 = Digest::MD5.hexdigest(text)
|
|
|
|
@extractions[md5] = text
|
|
|
|
"{gfm-extraction-#{md5}}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def insert_piece(id)
|
|
|
|
@extractions[id]
|
|
|
|
end
|
|
|
|
|
2012-09-05 16:07:39 -04:00
|
|
|
# Private: Parses text for references and emoji
|
|
|
|
#
|
|
|
|
# text - Text to parse
|
|
|
|
#
|
|
|
|
# Returns parsed text
|
2014-05-26 08:40:10 -04:00
|
|
|
def parse(text, project = @project)
|
|
|
|
parse_references(text, project) if project
|
2012-09-13 15:20:00 -04:00
|
|
|
|
|
|
|
text
|
|
|
|
end
|
|
|
|
|
2014-10-01 11:31:13 -04:00
|
|
|
NAME_STR = '[a-zA-Z][a-zA-Z0-9_\-\.]*'
|
|
|
|
PROJ_STR = "(?<project>#{NAME_STR}/#{NAME_STR})"
|
|
|
|
|
2012-11-16 17:25:07 -05:00
|
|
|
REFERENCE_PATTERN = %r{
|
2012-12-22 19:03:57 -05:00
|
|
|
(?<prefix>\W)? # Prefix
|
|
|
|
( # Reference
|
2014-10-01 11:31:13 -04:00
|
|
|
@(?<user>#{NAME_STR}) # User name
|
2014-05-06 13:51:56 -04:00
|
|
|
|(?<issue>([A-Z\-]+-)\d+) # JIRA Issue ID
|
2014-10-01 11:31:13 -04:00
|
|
|
|#{PROJ_STR}?\#(?<issue>([a-zA-Z\-]+-)?\d+) # Issue ID
|
|
|
|
|#{PROJ_STR}?!(?<merge_request>\d+) # MR ID
|
2012-12-22 19:03:57 -05:00
|
|
|
|\$(?<snippet>\d+) # Snippet ID
|
2014-10-01 11:31:13 -04:00
|
|
|
|(#{PROJ_STR}@)?(?<commit>[\h]{6,40}) # Commit ID
|
2013-05-16 05:15:42 -04:00
|
|
|
|(?<skip>gfm-extraction-[\h]{6,40}) # Skip gfm extractions. Otherwise will be parsed as commit
|
2012-11-16 17:25:07 -05:00
|
|
|
)
|
2012-12-22 19:03:57 -05:00
|
|
|
(?<suffix>\W)? # Suffix
|
2012-11-16 17:25:07 -05:00
|
|
|
}x.freeze
|
|
|
|
|
2012-12-22 19:03:57 -05:00
|
|
|
TYPES = [:user, :issue, :merge_request, :snippet, :commit].freeze
|
|
|
|
|
2014-05-26 08:40:10 -04:00
|
|
|
def parse_references(text, project = @project)
|
2012-09-07 18:49:17 -04:00
|
|
|
# parse reference links
|
2012-09-07 16:14:17 -04:00
|
|
|
text.gsub!(REFERENCE_PATTERN) do |match|
|
2012-12-06 22:40:42 -05:00
|
|
|
type = TYPES.select{|t| !$~[t].nil?}.first
|
2013-05-16 05:15:42 -04:00
|
|
|
|
2014-10-01 11:31:13 -04:00
|
|
|
actual_project = project
|
|
|
|
project_prefix = nil
|
|
|
|
project_path = $LAST_MATCH_INFO[:project]
|
|
|
|
if project_path
|
|
|
|
actual_project = ::Project.find_with_namespace(project_path)
|
|
|
|
project_prefix = project_path
|
2012-08-14 04:32:19 -04:00
|
|
|
end
|
2014-10-01 11:31:13 -04:00
|
|
|
|
|
|
|
parse_result($LAST_MATCH_INFO, type,
|
|
|
|
actual_project, project_prefix) || match
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Called from #parse_references. Attempts to build a gitlab reference
|
|
|
|
# link. Returns nil if either +type+ or +project+ are nil, if the match
|
|
|
|
# string is an HTML entity, or if the reference is invalid.
|
|
|
|
def parse_result(match_info, type, project, project_prefix)
|
|
|
|
prefix = match_info[:prefix]
|
|
|
|
suffix = match_info[:suffix]
|
|
|
|
|
|
|
|
return nil if html_entity?(prefix, suffix) || project.nil? || type.nil?
|
|
|
|
|
|
|
|
identifier = match_info[type]
|
|
|
|
ref_link = reference_link(type, identifier, project, project_prefix)
|
|
|
|
|
|
|
|
if ref_link
|
|
|
|
"#{prefix}#{ref_link}#{suffix}"
|
|
|
|
else
|
|
|
|
nil
|
2012-09-13 15:20:00 -04:00
|
|
|
end
|
|
|
|
end
|
2012-09-05 16:07:39 -04:00
|
|
|
|
2014-10-01 11:31:13 -04:00
|
|
|
# Return true if the +prefix+ and +suffix+ indicate that the matched string
|
|
|
|
# is an HTML entity like &
|
|
|
|
def html_entity?(prefix, suffix)
|
|
|
|
prefix && suffix && prefix[0] == '&' && suffix[-1] == ';'
|
|
|
|
end
|
|
|
|
|
2012-08-14 04:32:19 -04:00
|
|
|
# Private: Dispatches to a dedicated processing method based on reference
|
|
|
|
#
|
|
|
|
# reference - Object reference ("@1234", "!567", etc.)
|
|
|
|
# identifier - Object identifier (Issue ID, SHA hash, etc.)
|
|
|
|
#
|
|
|
|
# Returns string rendered by the processing method
|
2014-10-01 11:31:13 -04:00
|
|
|
def reference_link(type, identifier, project = @project, prefix_text = nil)
|
|
|
|
send("reference_#{type}", identifier, project, prefix_text)
|
2012-08-14 04:32:19 -04:00
|
|
|
end
|
|
|
|
|
2014-10-01 11:31:13 -04:00
|
|
|
def reference_user(identifier, project = @project, _ = nil)
|
2014-06-23 09:44:49 -04:00
|
|
|
options = html_options.merge(
|
2014-06-23 05:54:58 -04:00
|
|
|
class: "gfm gfm-team_member #{html_options[:class]}"
|
|
|
|
)
|
2014-06-23 09:44:49 -04:00
|
|
|
|
|
|
|
if identifier == "all"
|
2014-06-23 05:54:58 -04:00
|
|
|
link_to("@all", project_url(project), options)
|
|
|
|
elsif user = User.find_by(username: identifier)
|
2014-05-26 08:40:10 -04:00
|
|
|
link_to("@#{identifier}", user_url(identifier), options)
|
2012-08-14 04:32:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-10-01 11:31:13 -04:00
|
|
|
def reference_issue(identifier, project = @project, prefix_text = nil)
|
2014-05-26 08:40:10 -04:00
|
|
|
if project.used_default_issues_tracker? || !external_issues_tracker_enabled?
|
|
|
|
if project.issue_exists? identifier
|
|
|
|
url = url_for_issue(identifier, project)
|
2014-10-01 11:31:13 -04:00
|
|
|
title = title_for_issue(identifier, project)
|
2014-05-26 08:40:10 -04:00
|
|
|
options = html_options.merge(
|
|
|
|
title: "Issue: #{title}",
|
|
|
|
class: "gfm gfm-issue #{html_options[:class]}"
|
|
|
|
)
|
2013-01-23 09:13:28 -05:00
|
|
|
|
2014-10-01 11:31:13 -04:00
|
|
|
link_to("#{prefix_text}##{identifier}", url, options)
|
2014-05-06 13:51:56 -04:00
|
|
|
end
|
2014-06-18 03:20:56 -04:00
|
|
|
else
|
|
|
|
config = Gitlab.config
|
|
|
|
external_issue_tracker = config.issues_tracker[project.issues_tracker]
|
|
|
|
if external_issue_tracker.present?
|
|
|
|
reference_external_issue(identifier, external_issue_tracker, project)
|
|
|
|
end
|
2012-08-14 04:32:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-10-01 11:31:13 -04:00
|
|
|
def reference_merge_request(identifier, project = @project,
|
|
|
|
prefix_text = nil)
|
2014-05-26 08:40:10 -04:00
|
|
|
if merge_request = project.merge_requests.find_by(iid: identifier)
|
|
|
|
options = html_options.merge(
|
|
|
|
title: "Merge Request: #{merge_request.title}",
|
|
|
|
class: "gfm gfm-merge_request #{html_options[:class]}"
|
|
|
|
)
|
|
|
|
url = project_merge_request_url(project, merge_request)
|
2014-10-01 11:31:13 -04:00
|
|
|
link_to("#{prefix_text}!#{identifier}", url, options)
|
2012-08-14 04:32:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-10-01 11:31:13 -04:00
|
|
|
def reference_snippet(identifier, project = @project, _ = nil)
|
2014-05-26 08:40:10 -04:00
|
|
|
if snippet = project.snippets.find_by(id: identifier)
|
|
|
|
options = html_options.merge(
|
|
|
|
title: "Snippet: #{snippet.title}",
|
|
|
|
class: "gfm gfm-snippet #{html_options[:class]}"
|
|
|
|
)
|
|
|
|
link_to("$#{identifier}", project_snippet_url(project, snippet),
|
|
|
|
options)
|
2012-08-14 04:32:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-10-01 11:31:13 -04:00
|
|
|
def reference_commit(identifier, project = @project, prefix_text = nil)
|
2014-05-26 08:40:10 -04:00
|
|
|
if project.valid_repo? && commit = project.repository.commit(identifier)
|
|
|
|
options = html_options.merge(
|
|
|
|
title: commit.link_title,
|
|
|
|
class: "gfm gfm-commit #{html_options[:class]}"
|
|
|
|
)
|
2014-10-01 11:31:13 -04:00
|
|
|
link_to(
|
|
|
|
"#{prefix_text}#{identifier}",
|
|
|
|
project_commit_url(project, commit),
|
|
|
|
options
|
|
|
|
)
|
2012-08-14 04:32:19 -04:00
|
|
|
end
|
|
|
|
end
|
2014-05-06 13:51:56 -04:00
|
|
|
|
2014-10-01 11:31:13 -04:00
|
|
|
def reference_external_issue(identifier, issue_tracker, project = @project,
|
|
|
|
_ = nil)
|
2014-08-18 03:22:11 -04:00
|
|
|
url = url_for_issue(identifier, project)
|
2014-06-18 03:20:56 -04:00
|
|
|
title = issue_tracker['title']
|
2014-05-06 13:51:56 -04:00
|
|
|
|
2014-05-26 08:40:10 -04:00
|
|
|
options = html_options.merge(
|
|
|
|
title: "Issue in #{title}",
|
|
|
|
class: "gfm gfm-issue #{html_options[:class]}"
|
|
|
|
)
|
2014-08-19 16:21:59 -04:00
|
|
|
link_to("##{identifier}", url, options)
|
2014-05-06 13:51:56 -04:00
|
|
|
end
|
2012-08-14 04:32:19 -04:00
|
|
|
end
|
|
|
|
end
|