2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
class Projects::RefsController < Projects::ApplicationController
|
|
|
|
include ExtractsPath
|
2015-09-11 14:41:01 +05:30
|
|
|
include TreeHelper
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
before_action :require_non_empty_project
|
2015-10-24 18:46:33 +05:30
|
|
|
before_action :validate_ref_id
|
2015-09-11 14:41:01 +05:30
|
|
|
before_action :assign_ref_vars
|
|
|
|
before_action :authorize_download_code!
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
def switch
|
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
2015-09-11 14:41:01 +05:30
|
|
|
new_path =
|
|
|
|
case params[:destination]
|
|
|
|
when "tree"
|
2017-09-10 17:25:29 +05:30
|
|
|
project_tree_path(@project, @id)
|
2015-09-11 14:41:01 +05:30
|
|
|
when "blob"
|
2017-09-10 17:25:29 +05:30
|
|
|
project_blob_path(@project, @id)
|
2015-09-11 14:41:01 +05:30
|
|
|
when "graph"
|
2017-09-10 17:25:29 +05:30
|
|
|
project_network_path(@project, @id, @options)
|
2015-09-11 14:41:01 +05:30
|
|
|
when "graphs"
|
2017-09-10 17:25:29 +05:30
|
|
|
project_graph_path(@project, @id)
|
2016-01-14 18:37:52 +05:30
|
|
|
when "find_file"
|
2017-09-10 17:25:29 +05:30
|
|
|
project_find_file_path(@project, @id)
|
2015-09-11 14:41:01 +05:30
|
|
|
when "graphs_commits"
|
2017-09-10 17:25:29 +05:30
|
|
|
commits_project_graph_path(@project, @id)
|
2016-06-02 11:05:42 +05:30
|
|
|
when "badges"
|
2018-05-09 12:01:36 +05:30
|
|
|
project_settings_ci_cd_path(@project, ref: @id)
|
2015-09-11 14:41:01 +05:30
|
|
|
else
|
2017-09-10 17:25:29 +05:30
|
|
|
project_commits_path(@project, @id)
|
2015-09-11 14:41:01 +05:30
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
redirect_to new_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def logs_tree
|
2018-11-20 20:47:30 +05:30
|
|
|
summary = ::Gitlab::TreeSummary.new(
|
|
|
|
@commit,
|
|
|
|
@project,
|
|
|
|
path: @path,
|
|
|
|
offset: params[:offset],
|
|
|
|
limit: 25
|
|
|
|
)
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
@logs, commits = summary.summarize
|
|
|
|
@more_log_url = more_url(summary.next_offset) if summary.more?
|
2015-09-11 14:41:01 +05:30
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
respond_to do |format|
|
|
|
|
format.html { render_404 }
|
2018-03-17 18:26:18 +05:30
|
|
|
format.json do
|
2018-11-20 20:47:30 +05:30
|
|
|
response.headers["More-Logs-Url"] = @more_log_url if summary.more?
|
2018-03-17 18:26:18 +05:30
|
|
|
render json: @logs
|
|
|
|
end
|
2018-11-20 20:47:30 +05:30
|
|
|
|
|
|
|
# The commit titles must be rendered and redacted before being shown.
|
|
|
|
# Doing it here allows us to apply performance optimizations that avoid
|
|
|
|
# N+1 problems
|
|
|
|
format.js do
|
|
|
|
prerender_commit_full_titles!(commits)
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
2015-10-24 18:46:33 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
def more_url(offset)
|
|
|
|
logs_file_project_ref_path(@project, @ref, @path, offset: offset)
|
|
|
|
end
|
|
|
|
|
|
|
|
def prerender_commit_full_titles!(commits)
|
|
|
|
# Preload commit authors as they are used in rendering
|
|
|
|
commits.each(&:lazy_author)
|
|
|
|
|
|
|
|
renderer = Banzai::ObjectRenderer.new(user: current_user, default_project: @project)
|
|
|
|
renderer.render(commits, :full_title)
|
|
|
|
end
|
|
|
|
|
2015-10-24 18:46:33 +05:30
|
|
|
def validate_ref_id
|
2017-09-10 17:25:29 +05:30
|
|
|
return not_found! if params[:id].present? && params[:id] !~ Gitlab::PathRegex.git_reference_regex
|
2015-10-24 18:46:33 +05:30
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|