2012-09-27 20:59:42 +02:00
|
|
|
class RefsController < ProjectResourceController
|
2011-11-16 06:38:53 +01:00
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :authorize_read_project!
|
2012-02-21 23:31:18 +01:00
|
|
|
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
|
2012-09-17 19:36:13 +02:00
|
|
|
before_filter :define_tree_vars, only: [:blob, :logs_tree]
|
2012-01-28 00:49:14 +01:00
|
|
|
|
2012-10-09 21:09:46 +02:00
|
|
|
def switch
|
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
2012-01-29 20:30:03 +01:00
|
|
|
new_path = if params[:destination] == "tree"
|
2013-01-09 08:34:26 +01:00
|
|
|
project_tree_path(@project, (@ref + "/" + params[:path]))
|
2013-01-29 09:25:17 +01:00
|
|
|
elsif params[:destination] == "graph"
|
|
|
|
project_graph_path(@project, @ref)
|
2012-01-29 20:30:03 +01:00
|
|
|
else
|
2012-09-26 00:50:02 +02:00
|
|
|
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
|
|
|
last_commit = CommitDecorator.decorate(last_commit)
|
|
|
|
{
|
2012-09-17 19:49:57 +02:00
|
|
|
file_name: content.name,
|
2012-08-11 00:07:50 +02:00
|
|
|
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)
|
2012-08-02 02:31:45 +02:00
|
|
|
@commit = CommitDecorator.decorate(@commit)
|
2013-01-03 20:09:18 +01:00
|
|
|
@tree = Tree.new(@commit.tree, @ref, params[:path])
|
2011-11-21 07:16:10 +01:00
|
|
|
@tree = TreeDecorator.new(@tree)
|
2012-09-26 05:56:27 +02:00
|
|
|
@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
|
2012-09-26 05:34:52 +02:00
|
|
|
@ref = params[:id] || params[:ref]
|
2011-11-16 06:38:53 +01:00
|
|
|
end
|
|
|
|
end
|