gitlab-org--gitlab-foss/lib/gitlab/reference_extractor.rb

62 lines
1.6 KiB
Ruby
Raw Normal View History

module Gitlab
# Extract possible GFM references from an arbitrary String for further processing.
class ReferenceExtractor
attr_accessor :project, :current_user
def initialize(project, current_user = nil)
2015-03-27 10:37:45 +00:00
@project = project
2015-03-27 11:58:23 +00:00
@current_user = current_user
end
2015-03-27 10:37:45 +00:00
def analyze(text)
references.clear
@text = markdown.render(text.dup)
end
%i(user label issue merge_request snippet commit commit_range).each do |type|
define_method("#{type}s") do
references[type]
end
end
private
def markdown
@markdown ||= Redcarpet::Markdown.new(Redcarpet::Render::HTML, GitlabMarkdownHelper::MARKDOWN_OPTIONS)
end
def references
@references ||= Hash.new do |references, type|
type = type.to_sym
return references[type] if references.has_key?(type)
references[type] = pipeline_result(type).uniq
end
end
# Instantiate and call HTML::Pipeline with a single reference filter type,
# returning the result
#
# filter_type - Symbol reference type (e.g., :commit, :issue, etc.)
#
2015-04-23 18:02:07 +00:00
# Returns the results Array for the requested filter type
def pipeline_result(filter_type)
klass = filter_type.to_s.camelize + 'ReferenceFilter'
filter = "Gitlab::Markdown::#{klass}".constantize
context = {
project: project,
current_user: current_user,
# We don't actually care about the links generated
2015-06-02 11:17:21 +00:00
only_path: true,
ignore_blockquotes: true
}
pipeline = HTML::Pipeline.new([filter], context)
result = pipeline.call(@text)
2015-04-23 18:02:07 +00:00
result[:references][filter_type]
end
end
end