Rename RefExtractor to ExtractsPath
Update docs a bit
This commit is contained in:
parent
a8ea8d98a4
commit
a1e68a9120
|
@ -1,7 +1,6 @@
|
||||||
# Controller for viewing a file's blame
|
# Controller for viewing a file's blame
|
||||||
class BlameController < ApplicationController
|
class BlameController < ApplicationController
|
||||||
|
include ExtractsPath
|
||||||
include RefExtractor
|
|
||||||
|
|
||||||
layout "project"
|
layout "project"
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
# Controller for viewing a file's blame
|
# Controller for viewing a file's blame
|
||||||
class BlobController < ApplicationController
|
class BlobController < ApplicationController
|
||||||
# Thrown when given an invalid path
|
include ExtractsPath
|
||||||
class InvalidPathError < StandardError; end
|
|
||||||
|
|
||||||
include RefExtractor
|
|
||||||
include Gitlab::Encode
|
include Gitlab::Encode
|
||||||
|
|
||||||
layout "project"
|
layout "project"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Controller for viewing a repository's file structure
|
# Controller for viewing a repository's file structure
|
||||||
class TreeController < ApplicationController
|
class TreeController < ApplicationController
|
||||||
include RefExtractor
|
include ExtractsPath
|
||||||
|
|
||||||
layout "project"
|
layout "project"
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,22 @@
|
||||||
# Module providing an extract_ref method for controllers working with Git
|
# Module providing methods for dealing with separating a tree-ish string and a
|
||||||
# tree-ish + path params
|
# file path string when combined in a request parameter
|
||||||
module RefExtractor
|
module ExtractsPath
|
||||||
# Raised when given an invalid path
|
extend ActiveSupport::Concern
|
||||||
|
|
||||||
|
# Raised when given an invalid file path
|
||||||
class InvalidPathError < StandardError; end
|
class InvalidPathError < StandardError; end
|
||||||
|
|
||||||
# Given a string containing both a Git ref - such as a branch or tag - and a
|
included do
|
||||||
# filesystem path joined by forward slashes, attempts to separate the two.
|
if respond_to?(:before_filter)
|
||||||
|
before_filter :assign_ref_vars
|
||||||
|
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.
|
||||||
#
|
#
|
||||||
# Expects a @project instance variable to contain the active project. Used to
|
# Expects a @project instance variable to contain the active project. This is
|
||||||
# check the input against a list of valid repository refs.
|
# used to check the input against a list of valid repository refs.
|
||||||
#
|
#
|
||||||
# Examples
|
# Examples
|
||||||
#
|
#
|
||||||
|
@ -78,8 +86,11 @@ module RefExtractor
|
||||||
# - @commit - A CommitDecorator representing the commit from the given ref
|
# - @commit - A CommitDecorator representing the commit from the given ref
|
||||||
# - @tree - A TreeDecorator representing the tree at the given ref/path
|
# - @tree - A TreeDecorator representing the tree at the given ref/path
|
||||||
#
|
#
|
||||||
# Automatically renders `not_found!` if a valid tree could not be resolved
|
# If the :id parameter appears to be requesting a specific response format,
|
||||||
# (e.g., when a user inserts an invalid path or ref).
|
# 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).
|
||||||
def assign_ref_vars
|
def assign_ref_vars
|
||||||
# Handle formats embedded in the id
|
# Handle formats embedded in the id
|
||||||
if params[:id].ends_with?('.atom')
|
if params[:id].ends_with?('.atom')
|
58
spec/lib/extracts_path_spec.rb
Normal file
58
spec/lib/extracts_path_spec.rb
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
require 'spec_helper'
|
||||||
|
|
||||||
|
describe ExtractsPath do
|
||||||
|
include ExtractsPath
|
||||||
|
|
||||||
|
let(:project) { double('project') }
|
||||||
|
|
||||||
|
before do
|
||||||
|
@project = project
|
||||||
|
project.stub(:branches).and_return(['master', 'foo/bar/baz'])
|
||||||
|
project.stub(:tags).and_return(['v1.0.0', 'v2.0.0'])
|
||||||
|
end
|
||||||
|
|
||||||
|
describe '#extract_ref' do
|
||||||
|
it "returns an empty pair when no @project is set" do
|
||||||
|
@project = nil
|
||||||
|
extract_ref('master/CHANGELOG').should == ['', '']
|
||||||
|
end
|
||||||
|
|
||||||
|
context "without a path" do
|
||||||
|
it "extracts a valid branch" do
|
||||||
|
extract_ref('master').should == ['master', '']
|
||||||
|
end
|
||||||
|
|
||||||
|
it "extracts a valid tag" do
|
||||||
|
extract_ref('v2.0.0').should == ['v2.0.0', '']
|
||||||
|
end
|
||||||
|
|
||||||
|
it "extracts a valid commit ref without a path" do
|
||||||
|
extract_ref('f4b14494ef6abf3d144c28e4af0c20143383e062').should ==
|
||||||
|
['f4b14494ef6abf3d144c28e4af0c20143383e062', '']
|
||||||
|
end
|
||||||
|
|
||||||
|
it "falls back to a primitive split for an invalid ref" do
|
||||||
|
extract_ref('stable').should == ['stable', '']
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with a path" do
|
||||||
|
it "extracts a valid branch" do
|
||||||
|
extract_ref('foo/bar/baz/CHANGELOG').should == ['foo/bar/baz', 'CHANGELOG']
|
||||||
|
end
|
||||||
|
|
||||||
|
it "extracts a valid tag" do
|
||||||
|
extract_ref('v2.0.0/CHANGELOG').should == ['v2.0.0', 'CHANGELOG']
|
||||||
|
end
|
||||||
|
|
||||||
|
it "extracts a valid commit SHA" do
|
||||||
|
extract_ref('f4b14494ef6abf3d144c28e4af0c20143383e062/CHANGELOG').should ==
|
||||||
|
['f4b14494ef6abf3d144c28e4af0c20143383e062', 'CHANGELOG']
|
||||||
|
end
|
||||||
|
|
||||||
|
it "falls back to a primitive split for an invalid ref" do
|
||||||
|
extract_ref('stable/CHANGELOG').should == ['stable', 'CHANGELOG']
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -1,7 +1,7 @@
|
||||||
require 'spec_helper'
|
require 'spec_helper'
|
||||||
|
|
||||||
describe RefExtractor do
|
describe ExtractsPath do
|
||||||
include RefExtractor
|
include ExtractsPath
|
||||||
|
|
||||||
let(:project) { double('project') }
|
let(:project) { double('project') }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue