gitlab-org--gitlab-foss/app/controllers/projects/tree_controller.rb

62 lines
1.9 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2012-09-17 12:38:59 -04:00
# Controller for viewing a repository's file structure
class Projects::TreeController < Projects::ApplicationController
include ExtractsPath
include CreatesCommit
include ActionView::Helpers::SanitizeHelper
include RedirectsForMissingPathOnTree
around_action :allow_gitaly_ref_name_caching, only: [:show]
before_action :require_non_empty_project, except: [:new, :create]
before_action :assign_ref_vars
before_action :assign_dir_vars, only: [:create_dir]
before_action :authorize_download_code!
before_action :authorize_edit_tree!, only: [:create_dir]
before_action only: [:show] do
push_frontend_feature_flag(:vue_file_list_lfs_badge)
end
def show
2015-10-09 13:07:29 -04:00
return render_404 unless @repository.commit(@ref)
if tree.entries.empty?
if @repository.blob_at(@commit.id, @path)
return redirect_to project_blob_path(@project, File.join(@ref, @path))
elsif @path.present?
return redirect_to_tree_root_for_missing_path(@project, @ref, @path)
end
end
2013-10-01 10:00:28 -04:00
2012-09-17 12:38:59 -04:00
respond_to do |format|
format.html do
lfs_blob_ids if Feature.disabled?(:vue_file_list, @project, default_enabled: true)
@last_commit = @repository.last_commit_for_path(@commit.id, @tree.path) || @commit
end
2012-09-17 12:38:59 -04:00
end
end
def create_dir
2015-10-09 13:07:29 -04:00
return render_404 unless @commit_params.values.all?
create_commit(Files::CreateDirService, success_notice: _("The directory has been successfully created."),
success_path: project_tree_path(@project, File.join(@branch_name, @dir_name)),
failure_path: project_tree_path(@project, @ref))
end
private
def assign_dir_vars
2017-04-19 20:37:44 -04:00
@branch_name = params[:branch_name]
@dir_name = File.join(@path, params[:dir_name])
@commit_params = {
file_path: @dir_name,
commit_message: params[:commit_message]
}
end
2012-09-17 12:38:59 -04:00
end