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
|
|
|
|
# html_options - extra options for the reference links as given to link_to
|
|
|
|
#
|
|
|
|
# Note: reference links will only be generated if @project is set
|
|
|
|
def gfm(text, html_options = {})
|
|
|
|
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
|
|
|
|
|
|
|
|
text = parse(text)
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2013-08-26 07:27:19 -04:00
|
|
|
sanitize text.html_safe, attributes: ActionView::Base.sanitized_allowed_attributes + %w(id class), tags: ActionView::Base.sanitized_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
|
|
|
|
#
|
2012-09-07 18:49:17 -04:00
|
|
|
# Note: reference links will only be generated if @project is set
|
|
|
|
#
|
2012-09-05 16:07:39 -04:00
|
|
|
# Returns parsed text
|
2012-08-14 04:32:19 -04:00
|
|
|
def parse(text)
|
2012-09-13 15:20:00 -04:00
|
|
|
parse_references(text) if @project
|
|
|
|
parse_emoji(text)
|
|
|
|
|
|
|
|
text
|
|
|
|
end
|
|
|
|
|
2012-11-16 17:25:07 -05:00
|
|
|
REFERENCE_PATTERN = %r{
|
2012-12-22 19:03:57 -05:00
|
|
|
(?<prefix>\W)? # Prefix
|
|
|
|
( # Reference
|
|
|
|
@(?<user>[a-zA-Z][a-zA-Z0-9_\-\.]*) # User name
|
2013-05-27 10:53:50 -04:00
|
|
|
|\#(?<issue>([a-zA-Z]+-)?\d+) # Issue ID
|
2012-12-22 19:03:57 -05:00
|
|
|
|!(?<merge_request>\d+) # MR ID
|
|
|
|
|\$(?<snippet>\d+) # Snippet ID
|
|
|
|
|(?<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
|
|
|
|
|
2012-09-13 15:20:00 -04:00
|
|
|
def parse_references(text)
|
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
|
|
|
prefix = $~[:prefix]
|
|
|
|
suffix = $~[:suffix]
|
|
|
|
type = TYPES.select{|t| !$~[t].nil?}.first
|
2013-05-16 05:15:42 -04:00
|
|
|
|
2013-05-16 05:54:10 -04:00
|
|
|
if type
|
|
|
|
identifier = $~[type]
|
|
|
|
|
|
|
|
# Avoid HTML entities
|
|
|
|
if prefix && suffix && prefix[0] == '&' && suffix[-1] == ';'
|
|
|
|
match
|
|
|
|
elsif ref_link = reference_link(type, identifier)
|
|
|
|
"#{prefix}#{ref_link}#{suffix}"
|
|
|
|
else
|
|
|
|
match
|
|
|
|
end
|
2012-08-14 04:32:19 -04:00
|
|
|
else
|
|
|
|
match
|
|
|
|
end
|
2012-09-13 15:20:00 -04:00
|
|
|
end
|
|
|
|
end
|
2012-09-05 16:07:39 -04:00
|
|
|
|
2012-11-16 17:25:07 -05:00
|
|
|
EMOJI_PATTERN = %r{(:(\S+):)}.freeze
|
|
|
|
|
2012-09-13 15:20:00 -04:00
|
|
|
def parse_emoji(text)
|
2012-09-07 18:49:17 -04:00
|
|
|
# parse emoji
|
2012-09-07 16:14:17 -04:00
|
|
|
text.gsub!(EMOJI_PATTERN) do |match|
|
2012-09-05 16:07:39 -04:00
|
|
|
if valid_emoji?($2)
|
2013-01-16 16:39:45 -05:00
|
|
|
image_tag(url_to_image("emoji/#{$2}.png"), class: 'emoji', title: $1, alt: $1, size: "20x20")
|
2012-09-05 16:07:39 -04:00
|
|
|
else
|
|
|
|
match
|
|
|
|
end
|
|
|
|
end
|
2012-08-14 04:32:19 -04:00
|
|
|
end
|
|
|
|
|
2012-09-05 16:07:39 -04:00
|
|
|
# Private: Checks if an emoji icon exists in the image asset directory
|
|
|
|
#
|
|
|
|
# emoji - Identifier of the emoji as a string (e.g., "+1", "heart")
|
|
|
|
#
|
|
|
|
# Returns boolean
|
|
|
|
def valid_emoji?(emoji)
|
2012-10-16 10:26:40 -04:00
|
|
|
Emoji.names.include? emoji
|
2012-09-05 16:07:39 -04:00
|
|
|
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
|
2012-12-06 22:40:42 -05:00
|
|
|
def reference_link(type, identifier)
|
|
|
|
send("reference_#{type}", identifier)
|
2012-08-14 04:32:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def reference_user(identifier)
|
2013-06-21 17:06:21 -04:00
|
|
|
if member = @project.team_members.find { |user| user.username == identifier }
|
2013-08-04 09:27:32 -04:00
|
|
|
link_to("@#{identifier}", user_url(identifier), html_options.merge(class: "gfm gfm-team_member #{html_options[:class]}")) if member
|
2012-08-14 04:32:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def reference_issue(identifier)
|
2013-02-11 06:41:12 -05:00
|
|
|
if @project.issue_exists? identifier
|
2013-01-23 09:13:28 -05:00
|
|
|
url = url_for_issue(identifier)
|
|
|
|
title = title_for_issue(identifier)
|
|
|
|
|
|
|
|
link_to("##{identifier}", url, html_options.merge(title: "Issue: #{title}", class: "gfm gfm-issue #{html_options[:class]}"))
|
2012-08-14 04:32:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def reference_merge_request(identifier)
|
2013-08-20 10:31:26 -04:00
|
|
|
if merge_request = @project.merge_requests.where(iid: identifier).first
|
2013-01-16 16:08:01 -05:00
|
|
|
link_to("!#{identifier}", project_merge_request_url(@project, merge_request), html_options.merge(title: "Merge Request: #{merge_request.title}", class: "gfm gfm-merge_request #{html_options[:class]}"))
|
2012-08-14 04:32:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def reference_snippet(identifier)
|
|
|
|
if snippet = @project.snippets.where(id: identifier).first
|
2013-01-16 16:08:01 -05:00
|
|
|
link_to("$#{identifier}", project_snippet_url(@project, snippet), html_options.merge(title: "Snippet: #{snippet.title}", class: "gfm gfm-snippet #{html_options[:class]}"))
|
2012-08-14 04:32:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def reference_commit(identifier)
|
2013-01-04 01:43:25 -05:00
|
|
|
if @project.valid_repo? && commit = @project.repository.commit(identifier)
|
2013-04-01 09:56:25 -04:00
|
|
|
link_to(identifier, project_commit_url(@project, commit), html_options.merge(title: commit.link_title, class: "gfm gfm-commit #{html_options[:class]}"))
|
2012-08-14 04:32:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|