2018-09-25 23:45:43 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
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
|
|
|
|
2019-04-06 08:04:27 -04:00
|
|
|
around_action :allow_gitaly_ref_name_caching, only: [:logs_tree]
|
|
|
|
|
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
|
|
|
|
2020-10-08 14:08:32 -04:00
|
|
|
feature_category :source_code_management
|
|
|
|
|
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"
|
2018-03-22 10:31:41 -04:00
|
|
|
project_settings_ci_cd_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
|
2020-04-23 14:09:46 -04:00
|
|
|
tree_summary = ::Gitlab::TreeSummary.new(
|
2020-05-13 17:08:55 -04:00
|
|
|
@commit, @project, current_user,
|
|
|
|
path: @path, offset: params[:offset], limit: 25)
|
2015-07-26 05:17:34 -04:00
|
|
|
|
2015-04-06 23:02:06 -04:00
|
|
|
respond_to do |format|
|
|
|
|
format.html { render_404 }
|
2017-11-01 12:08:06 -04:00
|
|
|
format.json do
|
2020-04-23 14:09:46 -04:00
|
|
|
logs, next_offset = tree_summary.fetch_logs
|
|
|
|
|
2020-05-20 20:08:06 -04:00
|
|
|
response.headers["More-Logs-Offset"] = next_offset.to_s if next_offset
|
2020-04-23 14:09:46 -04:00
|
|
|
|
|
|
|
render json: logs
|
2017-11-01 12:08:06 -04:00
|
|
|
end
|
2015-04-06 23:02:06 -04:00
|
|
|
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
|