gitlabhq/app/controllers/refs_controller.rb

67 lines
1.7 KiB
Ruby
Raw Normal View History

class RefsController < ProjectResourceController
2011-11-16 06:38:53 +01:00
# Authorize
before_filter :authorize_read_project!
before_filter :authorize_code_access!
2011-11-16 06:38:53 +01:00
before_filter :require_non_empty_project
2011-12-04 21:34:39 +01:00
before_filter :ref
before_filter :define_tree_vars, only: [:blob, :logs_tree]
2012-01-28 00:49:14 +01:00
def switch
respond_to do |format|
format.html do
2012-01-29 20:30:03 +01:00
new_path = if params[:destination] == "tree"
project_tree_path(@project, (@ref + "/" + params[:path]))
elsif params[:destination] == "graph"
project_graph_path(@project, @ref)
2012-01-29 20:30:03 +01:00
else
project_commits_path(@project, @ref)
2012-01-29 20:30:03 +01:00
end
2011-11-16 18:19:18 +01:00
2012-09-17 19:49:57 +02:00
redirect_to new_path
2012-01-29 20:30:03 +01:00
end
2012-09-17 19:49:57 +02:00
format.js do
2012-01-29 20:30:03 +01:00
@ref = params[:ref]
define_tree_vars
render "tree"
end
end
2011-11-16 18:19:18 +01:00
end
2012-07-10 21:52:38 +02:00
def logs_tree
contents = @tree.contents
@logs = contents.map do |content|
file = params[:path] ? File.join(params[:path], content.name) : content.name
2013-01-03 20:09:18 +01:00
last_commit = @repo.commits(@commit.id, file, 1).last
2012-07-22 13:08:24 +02:00
{
2012-09-17 19:49:57 +02:00
file_name: content.name,
commit: last_commit
2012-07-10 21:52:38 +02:00
}
end
end
2011-11-16 06:38:53 +01:00
protected
2011-11-21 07:16:10 +01:00
def define_tree_vars
2012-02-05 11:23:14 +01:00
params[:path] = nil if params[:path].blank?
2013-01-03 20:09:18 +01:00
@repo = project.repository
@commit = @repo.commit(@ref)
@tree = Tree.new(@commit.tree, @ref, params[:path])
@hex_path = Digest::SHA1.hexdigest(params[:path] || "")
2012-07-10 21:52:38 +02:00
if params[:path]
2012-09-17 19:49:57 +02:00
@logs_path = logs_file_project_ref_path(@project, @ref, params[:path])
2012-07-10 21:52:38 +02:00
else
2012-09-17 19:49:57 +02:00
@logs_path = logs_tree_project_ref_path(@project, @ref)
2012-07-10 21:52:38 +02:00
end
2011-12-05 08:23:53 +01:00
rescue
return render_404
2011-11-21 07:16:10 +01:00
end
2012-09-17 19:49:57 +02:00
2011-11-16 06:38:53 +01:00
def ref
@ref = params[:id] || params[:ref]
2011-11-16 06:38:53 +01:00
end
end