2012-09-20 19:55:14 +02:00
|
|
|
# Module providing methods for dealing with separating a tree-ish string and a
|
|
|
|
# file path string when combined in a request parameter
|
|
|
|
module ExtractsPath
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
# Raised when given an invalid file path
|
2012-09-17 19:33:04 +02:00
|
|
|
class InvalidPathError < StandardError; end
|
|
|
|
|
2012-09-20 19:55:14 +02:00
|
|
|
included do
|
|
|
|
if respond_to?(:before_filter)
|
2013-03-21 15:41:16 +01:00
|
|
|
before_filter :assign_ref_vars
|
2012-09-20 19:55:14 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Given a string containing both a Git tree-ish, such as a branch or tag, and
|
|
|
|
# a filesystem path joined by forward slashes, attempts to separate the two.
|
2012-09-17 19:33:04 +02:00
|
|
|
#
|
2012-09-20 19:55:14 +02:00
|
|
|
# Expects a @project instance variable to contain the active project. This is
|
|
|
|
# used to check the input against a list of valid repository refs.
|
2012-09-17 19:33:04 +02:00
|
|
|
#
|
|
|
|
# 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']
|
|
|
|
#
|
2013-03-21 15:41:16 +01:00
|
|
|
# extract_ref('master/app/models/project.rb')
|
2012-12-25 04:14:05 +01:00
|
|
|
# # => ['master', 'app/models/project.rb']
|
|
|
|
#
|
2012-09-17 19:33:04 +02:00
|
|
|
# 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
|
2013-03-21 15:41:16 +01:00
|
|
|
def extract_ref(id)
|
2012-09-17 16:44:36 +02:00
|
|
|
pair = ['', '']
|
|
|
|
|
|
|
|
return pair unless @project
|
|
|
|
|
2013-03-21 15:41:16 +01:00
|
|
|
if id.match(/^([[:alnum:]]{40})(.+)/)
|
2012-09-17 16:44:36 +02:00
|
|
|
# If the ref appears to be a SHA, we're done, just split the string
|
|
|
|
pair = $~.captures
|
|
|
|
else
|
2012-09-17 19:33:04 +02:00
|
|
|
# Otherwise, attempt to detect the ref using a list of the project's
|
|
|
|
# branches and tags
|
|
|
|
|
2012-09-17 16:44:36 +02:00
|
|
|
# Append a trailing slash if we only get a ref and no file path
|
2012-10-04 18:31:31 +02:00
|
|
|
id += '/' unless id.ends_with?('/')
|
2012-10-04 20:13:52 +02:00
|
|
|
|
2013-01-03 20:09:18 +01:00
|
|
|
valid_refs = @project.repository.ref_names
|
2012-10-04 20:13:52 +02:00
|
|
|
valid_refs.select! { |v| id.start_with?("#{v}/") }
|
|
|
|
|
2012-09-17 16:44:36 +02:00
|
|
|
if valid_refs.length != 1
|
|
|
|
# No exact ref match, so just try our best
|
2012-09-17 19:33:04 +02:00
|
|
|
pair = id.match(/([^\/]+)(.*)/).captures
|
2012-09-17 16:44:36 +02:00
|
|
|
else
|
|
|
|
# Partition the string into the ref and the path, ignoring the empty first value
|
2012-10-04 20:13:52 +02:00
|
|
|
pair = id.partition(valid_refs.first)[1..-1]
|
2012-09-17 16:44:36 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-04 18:31:31 +02:00
|
|
|
# Remove ending slashes from path
|
|
|
|
pair[1].gsub!(/^\/|\/$/, '')
|
2012-09-17 19:33:04 +02:00
|
|
|
|
2012-09-17 16:44:36 +02:00
|
|
|
pair
|
|
|
|
end
|
2012-09-17 20:24:31 +02:00
|
|
|
|
|
|
|
# Assigns common instance variables for views working with Git tree-ish objects
|
|
|
|
#
|
|
|
|
# Assignments are:
|
|
|
|
#
|
|
|
|
# - @id - A string representing the joined ref and path
|
|
|
|
# - @ref - A string representing the ref (e.g., the branch, tag, or commit SHA)
|
|
|
|
# - @path - A string representing the filesystem path
|
|
|
|
# - @commit - A CommitDecorator representing the commit from the given ref
|
|
|
|
# - @tree - A TreeDecorator representing the tree at the given ref/path
|
|
|
|
#
|
2012-09-20 19:55:14 +02:00
|
|
|
# If the :id parameter appears to be requesting a specific response format,
|
|
|
|
# that will be handled as well.
|
|
|
|
#
|
|
|
|
# Automatically renders `not_found!` if a valid tree path could not be
|
|
|
|
# resolved (e.g., when a user inserts an invalid path or ref).
|
2012-09-17 20:24:31 +02:00
|
|
|
def assign_ref_vars
|
2013-03-21 15:41:16 +01:00
|
|
|
@id = params[:id]
|
2012-09-17 20:24:31 +02:00
|
|
|
|
2013-03-21 15:41:16 +01:00
|
|
|
@ref, @path = extract_ref(@id)
|
2012-09-17 20:24:31 +02:00
|
|
|
|
2013-02-05 06:59:13 +01:00
|
|
|
# It is used "@project.repository.commits(@ref, @path, 1, 0)",
|
|
|
|
# because "@project.repository.commit(@ref)" returns wrong commit when @ref is tag name.
|
|
|
|
commits = @project.repository.commits(@ref, @path, 1, 0)
|
|
|
|
@commit = CommitDecorator.decorate(commits.first)
|
2012-09-17 20:24:31 +02:00
|
|
|
|
2013-01-03 20:09:18 +01:00
|
|
|
@tree = Tree.new(@commit.tree, @ref, @path)
|
2012-09-17 20:24:31 +02:00
|
|
|
@tree = TreeDecorator.new(@tree)
|
|
|
|
|
|
|
|
raise InvalidPathError if @tree.invalid?
|
2013-03-01 14:59:43 +01:00
|
|
|
rescue RuntimeError, NoMethodError, InvalidPathError
|
2012-09-17 20:24:31 +02:00
|
|
|
not_found!
|
|
|
|
end
|
2012-09-17 16:44:36 +02:00
|
|
|
end
|