extracts_path.rb 3.6 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, only: [:show]
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 36 37 38 39 40 41 42 43 44
  #
  # 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
45 46 47 48 49 50 51 52 53
  def extract_ref(input)
    pair = ['', '']

    return pair unless @project

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

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

      valid_refs = @project.ref_names
      valid_refs.select! { |v| id.start_with?("#{v}/") }

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

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

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

  # 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
  #
89 90 91 92 93
  # 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).
94
  def assign_ref_vars
95 96 97 98 99 100
    # Handle formats embedded in the id
    if params[:id].ends_with?('.atom')
      params[:id].gsub!(/\.atom$/, '')
      request.format = :atom
    end

101 102 103 104 105 106 107 108 109 110 111 112 113
    @ref, @path = extract_ref(params[:id])

    @id = File.join(@ref, @path)

    @commit = CommitDecorator.decorate(@project.commit(@ref))

    @tree = Tree.new(@commit.tree, @project, @ref, @path)
    @tree = TreeDecorator.new(@tree)

    raise InvalidPathError if @tree.invalid?
  rescue NoMethodError, InvalidPathError
    not_found!
  end
114
end