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
path: root/lib
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2012-09-17 21:33:04 +0400
committerRobert Speicher <rspeicher@gmail.com>2012-09-27 00:32:22 +0400
commit37f0b600bc9a994136791e6838b3228c56f909b2 (patch)
tree5711e387e407b076a8e6f6bd28f11033a6cd1f68 /lib
parent94af622c879681683c84b6537c2adea52c78b2a2 (diff)
Another RefExtractor refactor
Diffstat (limited to 'lib')
-rw-r--r--lib/ref_extractor.rb74
1 files changed, 40 insertions, 34 deletions
diff --git a/lib/ref_extractor.rb b/lib/ref_extractor.rb
index d3f02d6ec3e..d7d446b1e62 100644
--- a/lib/ref_extractor.rb
+++ b/lib/ref_extractor.rb
@@ -1,37 +1,39 @@
# Module providing an extract_ref method for controllers working with Git
# tree-ish + path params
-#
-# Given a string containing both a Git ref - such as a branch or tag - and a
-# filesystem path joined by forward slashes, attempts to separate the two.
-#
-# Expects a @project instance variable to contain the active project. Used to
-# check the input against a list of valid repository refs.
-#
-# Examples
-#
-# # No @project available
-# extract_ref('master')
-# # => ['', '']
-#
-# extract_ref('master')
-# # => ['master', '/']
-#
-# extract_ref("f4b14494ef6abf3d144c28e4af0c20143383e062/CHANGELOG")
-# # => ['f4b14494ef6abf3d144c28e4af0c20143383e062', '/CHANGELOG']
-#
-# extract_ref("v2.0.0/README.md")
-# # => ['v2.0.0', '/README.md']
-#
-# extract_ref('issues/1234/app/models/project.rb')
-# # => ['issues/1234', '/app/models/project.rb']
-#
-# # Given an invalid branch, we fall back to just splitting on the first slash
-# extract_ref('non/existent/branch/README.md')
-# # => ['non', '/existent/branch/README.md']
-#
-# Returns an Array where the first value is the tree-ish and the second is the
-# path
module RefExtractor
+ # Thrown when given an invalid path
+ class InvalidPathError < StandardError; end
+
+ # Given a string containing both a Git ref - such as a branch or tag - and a
+ # filesystem path joined by forward slashes, attempts to separate the two.
+ #
+ # Expects a @project instance variable to contain the active project. Used to
+ # check the input against a list of valid repository refs.
+ #
+ # Examples
+ #
+ # # No @project available
+ # extract_ref('master')
+ # # => ['', '']
+ #
+ # extract_ref('master')
+ # # => ['master', '']
+ #
+ # extract_ref("f4b14494ef6abf3d144c28e4af0c20143383e062/CHANGELOG")
+ # # => ['f4b14494ef6abf3d144c28e4af0c20143383e062', 'CHANGELOG']
+ #
+ # extract_ref("v2.0.0/README.md")
+ # # => ['v2.0.0', 'README.md']
+ #
+ # extract_ref('issues/1234/app/models/project.rb')
+ # # => ['issues/1234', 'app/models/project.rb']
+ #
+ # # Given an invalid branch, we fall back to just splitting on the first slash
+ # extract_ref('non/existent/branch/README.md')
+ # # => ['non', 'existent/branch/README.md']
+ #
+ # Returns an Array where the first value is the tree-ish and the second is the
+ # path
def extract_ref(input)
pair = ['', '']
@@ -41,24 +43,28 @@ module RefExtractor
# If the ref appears to be a SHA, we're done, just split the string
pair = $~.captures
else
+ # Otherwise, attempt to detect the ref using a list of the project's
+ # branches and tags
+
# Append a trailing slash if we only get a ref and no file path
id = input
id += '/' unless id.include?('/')
- # Otherwise, attempt to detect the ref using a list of the project's
- # branches and tags
valid_refs = @project.branches + @project.tags
valid_refs.select! { |v| id.start_with?("#{v}/") }
if valid_refs.length != 1
# No exact ref match, so just try our best
- pair = id.match(/([^\/]+)(.+)/).captures
+ pair = id.match(/([^\/]+)(.*)/).captures
else
# Partition the string into the ref and the path, ignoring the empty first value
pair = id.partition(valid_refs.first)[1..-1]
end
end
+ # Remove leading slash from path
+ pair[1].gsub!(/^\//, '')
+
pair
end
end