Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2015-04-23 21:02:07 +0300
committerRobert Speicher <rspeicher@gmail.com>2015-04-25 21:41:07 +0300
commit2207e5a6c9cacdc97878f23015a2257b39af9d48 (patch)
tree4a58f742fc05819cfb90667154f3c378e5c9db01 /lib/gitlab/reference_extractor.rb
parentc0a97d70efa7c0cc4720be49939ca8c50a702641 (diff)
DRY up ReferenceExtractor
Diffstat (limited to 'lib/gitlab/reference_extractor.rb')
-rw-r--r--lib/gitlab/reference_extractor.rb20
1 files changed, 11 insertions, 9 deletions
diff --git a/lib/gitlab/reference_extractor.rb b/lib/gitlab/reference_extractor.rb
index 1f8558f5ad0..e35f848fa6e 100644
--- a/lib/gitlab/reference_extractor.rb
+++ b/lib/gitlab/reference_extractor.rb
@@ -14,39 +14,39 @@ module Gitlab
def users
result = pipeline_result(:user)
- result[:references][:user].flatten.compact.uniq
+ result.uniq
end
def labels
result = pipeline_result(:label)
- result[:references][:label].compact.uniq
+ result.uniq
end
def issues
# TODO (rspeicher): What about external issues?
result = pipeline_result(:issue)
- result[:references][:issue].compact.uniq
+ result.uniq
end
def merge_requests
result = pipeline_result(:merge_request)
- result[:references][:merge_request].compact.uniq
+ result.uniq
end
def snippets
result = pipeline_result(:snippet)
- result[:references][:snippet].compact.uniq
+ result.uniq
end
def commits
result = pipeline_result(:commit)
- result[:references][:commit].compact.uniq
+ result.uniq
end
def commit_ranges
result = pipeline_result(:commit_range)
- result[:references][:commit_range].compact.uniq
+ result.uniq
end
private
@@ -56,7 +56,7 @@ module Gitlab
#
# filter_type - Symbol reference type (e.g., :commit, :issue, etc.)
#
- # Returns the results Hash
+ # 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
@@ -69,7 +69,9 @@ module Gitlab
}
pipeline = HTML::Pipeline.new([filter], context)
- pipeline.call(@_text)
+ result = pipeline.call(@_text)
+
+ result[:references][filter_type]
end
end
end