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:
Diffstat (limited to 'lib/gitlab/git/finders/refs_finder.rb')
-rw-r--r--lib/gitlab/git/finders/refs_finder.rb40
1 files changed, 40 insertions, 0 deletions
diff --git a/lib/gitlab/git/finders/refs_finder.rb b/lib/gitlab/git/finders/refs_finder.rb
new file mode 100644
index 00000000000..a0117bc0fa9
--- /dev/null
+++ b/lib/gitlab/git/finders/refs_finder.rb
@@ -0,0 +1,40 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Git
+ module Finders
+ class RefsFinder
+ attr_reader :repository, :search, :ref_type
+
+ UnknownRefTypeError = Class.new(StandardError)
+
+ def initialize(repository, search:, ref_type:)
+ @repository = repository
+ @search = search
+ @ref_type = ref_type
+ end
+
+ def execute
+ pattern = [prefix, search, "*"].compact.join
+
+ repository.list_refs(
+ [pattern]
+ )
+ end
+
+ private
+
+ def prefix
+ case ref_type
+ when :branches
+ Gitlab::Git::BRANCH_REF_PREFIX
+ when :tags
+ Gitlab::Git::TAG_REF_PREFIX
+ else
+ raise UnknownRefTypeError, "ref_type must be one of [:branches, :tags]"
+ end
+ end
+ end
+ end
+ end
+end