extracts_path.rb 3.7 KB
Newer Older
1 2 3 4 5 6
# 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
R
Robert Speicher 已提交
7 8
  class InvalidPathError < StandardError; end

9 10
  included do
    if respond_to?(:before_filter)
11
      before_filter :assign_ref_vars
12 13 14 15 16
    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.
R
Robert Speicher 已提交
17
  #
18 19
  # Expects a @project instance variable to contain the active project. This is
  # used to check the input against a list of valid repository refs.
R
Robert Speicher 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
  #
  # 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']
  #
36
  #   extract_ref('master/app/models/project.rb')
37 38
  #   # => ['master', 'app/models/project.rb']
  #
R
Robert Speicher 已提交
39 40 41 42 43 44 45 46 47
  #   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
48
  def extract_ref(id)
49 50 51 52
    pair = ['', '']

    return pair unless @project

53
    if id.match(/^([[:alnum:]]{40})(.+)/)
54 55 56
      # If the ref appears to be a SHA, we're done, just split the string
      pair = $~.captures
    else
R
Robert Speicher 已提交
57 58 59
      # Otherwise, attempt to detect the ref using a list of the project's
      # branches and tags

60
      # Append a trailing slash if we only get a ref and no file path
61
      id += '/' unless id.ends_with?('/')
62

D
Dmitriy Zaporozhets 已提交
63
      valid_refs = @project.repository.ref_names
64 65
      valid_refs.select! { |v| id.start_with?("#{v}/") }

66 67
      if valid_refs.length != 1
        # No exact ref match, so just try our best
R
Robert Speicher 已提交
68
        pair = id.match(/([^\/]+)(.*)/).captures
69 70
      else
        # Partition the string into the ref and the path, ignoring the empty first value
71
        pair = id.partition(valid_refs.first)[1..-1]
72 73 74
      end
    end

75 76
    # Remove ending slashes from path
    pair[1].gsub!(/^\/|\/$/, '')
R
Robert Speicher 已提交
77

78 79
    pair
  end
80 81 82 83 84 85 86 87

  # 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
88 89
  # - @commit - A Commit representing the commit from the given ref
  # - @tree   - A Tree representing the tree at the given ref/path
90
  #
91 92 93 94 95
  # 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).
96
  def assign_ref_vars
S
Sato Hiroyuki 已提交
97
    @id = get_id
98

99
    @ref, @path = extract_ref(@id)
100

S
Sato Hiroyuki 已提交
101
    @repo = @project.repository
102

S
Sato Hiroyuki 已提交
103 104 105 106 107
    @commit = @repo.commit(@ref)

    @tree = Tree.new(@repo, @commit.id, @ref, @path)
    @hex_path = Digest::SHA1.hexdigest(@path)
    @logs_path = logs_file_project_ref_path(@project, @ref, @path)
108

109
    raise InvalidPathError unless @tree.exists?
110
  rescue RuntimeError, NoMethodError, InvalidPathError
111 112
    not_found!
  end
S
Sato Hiroyuki 已提交
113 114 115 116 117 118 119 120

  private

  def get_id
    id = params[:id] || params[:ref]
    id += "/" + params[:path] unless params[:path].blank?
    id
  end
121
end