2013-06-23 12:47:22 -04:00
|
|
|
class Projects::RefsController < Projects::ApplicationController
|
2013-04-14 08:08:16 -04:00
|
|
|
include ExtractsPath
|
2015-07-26 05:17:34 -04:00
|
|
|
include TreeHelper
|
2011-11-16 00:38:53 -05:00
|
|
|
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :require_non_empty_project
|
2015-10-13 00:43:24 -04:00
|
|
|
before_action :validate_ref_id
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :assign_ref_vars
|
|
|
|
before_action :authorize_download_code!
|
2011-11-16 00:38:53 -05:00
|
|
|
|
2012-10-09 15:09:46 -04:00
|
|
|
def switch
|
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
2015-07-02 14:12:24 -04:00
|
|
|
new_path =
|
|
|
|
case params[:destination]
|
|
|
|
when "tree"
|
2017-06-29 13:06:35 -04:00
|
|
|
project_tree_path(@project, @id)
|
2015-07-02 14:12:24 -04:00
|
|
|
when "blob"
|
2017-06-29 13:06:35 -04:00
|
|
|
project_blob_path(@project, @id)
|
2015-07-02 14:12:24 -04:00
|
|
|
when "graph"
|
2017-06-29 13:06:35 -04:00
|
|
|
project_network_path(@project, @id, @options)
|
2015-07-02 14:12:24 -04:00
|
|
|
when "graphs"
|
2017-06-29 13:06:35 -04:00
|
|
|
project_graph_path(@project, @id)
|
2016-01-07 06:56:18 -05:00
|
|
|
when "find_file"
|
2017-06-29 13:06:35 -04:00
|
|
|
project_find_file_path(@project, @id)
|
2015-07-02 14:12:24 -04:00
|
|
|
when "graphs_commits"
|
2017-06-29 13:06:35 -04:00
|
|
|
commits_project_graph_path(@project, @id)
|
2016-04-04 04:40:40 -04:00
|
|
|
when "badges"
|
2017-06-29 13:06:35 -04:00
|
|
|
project_pipelines_settings_path(@project, ref: @id)
|
2015-07-02 14:12:24 -04:00
|
|
|
else
|
2017-06-29 13:06:35 -04:00
|
|
|
project_commits_path(@project, @id)
|
2015-07-02 14:12:24 -04:00
|
|
|
end
|
2011-11-16 12:19:18 -05:00
|
|
|
|
2012-09-17 13:49:57 -04:00
|
|
|
redirect_to new_path
|
2012-01-29 14:30:03 -05:00
|
|
|
end
|
|
|
|
end
|
2011-11-16 12:19:18 -05:00
|
|
|
end
|
|
|
|
|
2012-07-10 15:52:38 -04:00
|
|
|
def logs_tree
|
2014-06-12 05:01:54 -04:00
|
|
|
@offset = if params[:offset].present?
|
2015-02-03 00:38:50 -05:00
|
|
|
params[:offset].to_i
|
|
|
|
else
|
|
|
|
0
|
|
|
|
end
|
2014-06-12 05:01:54 -04:00
|
|
|
|
2014-06-26 03:29:39 -04:00
|
|
|
@limit = 25
|
2014-06-12 05:01:54 -04:00
|
|
|
|
|
|
|
@path = params[:path]
|
|
|
|
|
|
|
|
contents = []
|
2014-10-09 03:47:47 -04:00
|
|
|
contents.push(*tree.trees)
|
|
|
|
contents.push(*tree.blobs)
|
|
|
|
contents.push(*tree.submodules)
|
2014-06-12 05:01:54 -04:00
|
|
|
|
2017-09-19 06:55:37 -04:00
|
|
|
# n+1: https://gitlab.com/gitlab-org/gitlab-ce/issues/37433
|
|
|
|
@logs = Gitlab::GitalyClient.allow_n_plus_1_calls do
|
|
|
|
contents[@offset, @limit].to_a.map do |content|
|
|
|
|
file = @path ? File.join(@path, content.name) : content.name
|
|
|
|
last_commit = @repo.last_commit_for_path(@commit.id, file)
|
|
|
|
{
|
|
|
|
file_name: content.name,
|
|
|
|
commit: last_commit
|
|
|
|
}
|
|
|
|
end
|
2012-07-10 15:52:38 -04:00
|
|
|
end
|
2015-04-06 23:02:06 -04:00
|
|
|
|
2016-02-23 08:41:03 -05:00
|
|
|
offset = (@offset + @limit)
|
2016-02-23 04:06:26 -05:00
|
|
|
if contents.size > offset
|
2017-06-29 13:06:35 -04:00
|
|
|
@more_log_url = logs_file_project_ref_path(@project, @ref, @path || '', offset: offset)
|
2015-07-26 05:17:34 -04:00
|
|
|
end
|
|
|
|
|
2015-04-06 23:02:06 -04:00
|
|
|
respond_to do |format|
|
|
|
|
format.html { render_404 }
|
|
|
|
format.js
|
|
|
|
end
|
2012-07-10 15:52:38 -04:00
|
|
|
end
|
2015-10-13 00:43:24 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def validate_ref_id
|
2017-05-24 16:59:26 -04:00
|
|
|
return not_found! if params[:id].present? && params[:id] !~ Gitlab::PathRegex.git_reference_regex
|
2015-10-13 00:43:24 -04:00
|
|
|
end
|
2011-11-16 00:38:53 -05:00
|
|
|
end
|