2011-11-16 00:38:53 -05:00
|
|
|
class RefsController < ApplicationController
|
2012-05-27 05:34:25 -04:00
|
|
|
include Gitlab::Encode
|
2011-11-16 00:38:53 -05:00
|
|
|
before_filter :project
|
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :add_project_abilities
|
|
|
|
before_filter :authorize_read_project!
|
2012-02-21 17:31:18 -05:00
|
|
|
before_filter :authorize_code_access!
|
2011-11-16 00:38:53 -05:00
|
|
|
before_filter :require_non_empty_project
|
|
|
|
|
2011-12-04 15:34:39 -05:00
|
|
|
before_filter :ref
|
2012-08-10 18:07:50 -04:00
|
|
|
before_filter :define_tree_vars, only: [:tree, :blob, :blame, :logs_tree]
|
2012-01-27 18:49:14 -05:00
|
|
|
before_filter :render_full_content
|
|
|
|
|
2011-12-04 15:34:39 -05:00
|
|
|
layout "project"
|
|
|
|
|
2011-11-16 12:19:18 -05:00
|
|
|
def switch
|
2012-01-29 14:30:03 -05:00
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
|
|
|
new_path = if params[:destination] == "tree"
|
|
|
|
tree_project_ref_path(@project, params[:ref])
|
|
|
|
else
|
2012-08-10 18:07:50 -04:00
|
|
|
project_commits_path(@project, ref: params[:ref])
|
2012-01-29 14:30:03 -05:00
|
|
|
end
|
2011-11-16 12:19:18 -05:00
|
|
|
|
2012-01-29 14:30:03 -05:00
|
|
|
redirect_to new_path
|
|
|
|
end
|
|
|
|
format.js do
|
|
|
|
@ref = params[:ref]
|
|
|
|
define_tree_vars
|
|
|
|
render "tree"
|
|
|
|
end
|
|
|
|
end
|
2011-11-16 12:19:18 -05:00
|
|
|
end
|
|
|
|
|
2011-11-16 00:38:53 -05:00
|
|
|
#
|
|
|
|
# Repository preview
|
|
|
|
#
|
|
|
|
def tree
|
|
|
|
respond_to do |format|
|
2011-11-20 15:32:12 -05:00
|
|
|
format.html
|
2011-12-20 01:49:14 -05:00
|
|
|
format.js do
|
|
|
|
# disable cache to allow back button works
|
|
|
|
no_cache_headers
|
|
|
|
end
|
2011-11-16 00:38:53 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-07-10 15:52:38 -04:00
|
|
|
def logs_tree
|
|
|
|
contents = @tree.contents
|
|
|
|
@logs = contents.map do |content|
|
|
|
|
file = params[:path] ? File.join(params[:path], content.name) : content.name
|
|
|
|
last_commit = @project.commits(@commit.id, file, 1).last
|
2012-07-22 07:08:24 -04:00
|
|
|
last_commit = CommitDecorator.decorate(last_commit)
|
|
|
|
{
|
2012-08-10 18:07:50 -04:00
|
|
|
file_name: content.name,
|
|
|
|
commit: last_commit
|
2012-07-10 15:52:38 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-16 00:38:53 -05:00
|
|
|
def blob
|
2011-11-21 01:16:10 -05:00
|
|
|
if @tree.is_blob?
|
2012-05-26 14:20:35 -04:00
|
|
|
if @tree.text?
|
|
|
|
encoding = detect_encoding(@tree.data)
|
|
|
|
mime_type = encoding ? "text/plain; charset=#{encoding}" : "text/plain"
|
|
|
|
else
|
|
|
|
mime_type = @tree.mime_type
|
|
|
|
end
|
|
|
|
|
2012-01-25 02:15:08 -05:00
|
|
|
send_data(
|
|
|
|
@tree.data,
|
2012-08-10 18:07:50 -04:00
|
|
|
type: mime_type,
|
|
|
|
disposition: 'inline',
|
|
|
|
filename: @tree.name
|
2012-01-25 02:15:08 -05:00
|
|
|
)
|
2011-11-16 00:38:53 -05:00
|
|
|
else
|
|
|
|
head(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-05-17 12:11:45 -04:00
|
|
|
def blame
|
|
|
|
@blame = Grit::Blob.blame(@repo, @commit.id, params[:path])
|
|
|
|
end
|
|
|
|
|
2011-11-16 00:38:53 -05:00
|
|
|
protected
|
|
|
|
|
2011-11-21 01:16:10 -05:00
|
|
|
def define_tree_vars
|
2012-02-05 05:23:14 -05:00
|
|
|
params[:path] = nil if params[:path].blank?
|
|
|
|
|
2011-11-21 01:16:10 -05:00
|
|
|
@repo = project.repo
|
|
|
|
@commit = project.commit(@ref)
|
2012-08-01 20:31:45 -04:00
|
|
|
@commit = CommitDecorator.decorate(@commit)
|
2011-11-21 01:16:10 -05:00
|
|
|
@tree = Tree.new(@commit.tree, project, @ref, params[:path])
|
|
|
|
@tree = TreeDecorator.new(@tree)
|
2012-07-10 15:52:38 -04:00
|
|
|
@hex_path = Digest::SHA1.hexdigest(params[:path] || "/")
|
|
|
|
|
|
|
|
if params[:path]
|
|
|
|
@history_path = tree_file_project_ref_path(@project, @ref, params[:path])
|
|
|
|
@logs_path = logs_file_project_ref_path(@project, @ref, params[:path])
|
|
|
|
else
|
|
|
|
@history_path = tree_project_ref_path(@project, @ref)
|
|
|
|
@logs_path = logs_tree_project_ref_path(@project, @ref)
|
|
|
|
end
|
2011-12-05 02:23:53 -05:00
|
|
|
rescue
|
|
|
|
return render_404
|
2011-11-21 01:16:10 -05:00
|
|
|
end
|
|
|
|
|
2011-11-16 00:38:53 -05:00
|
|
|
def ref
|
|
|
|
@ref = params[:id]
|
|
|
|
end
|
|
|
|
end
|