debian-mirror-gitlab/app/controllers/projects/tree_controller.rb

55 lines
1.7 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
# Controller for viewing a repository's file structure
2015-04-26 12:48:37 +05:30
class Projects::TreeController < Projects::ApplicationController
include ExtractsPath
include CreatesCommit
2015-10-24 18:46:33 +05:30
include ActionView::Helpers::SanitizeHelper
2015-04-26 12:48:37 +05:30
2015-09-11 14:41:01 +05:30
before_action :require_non_empty_project, except: [:new, :create]
before_action :assign_ref_vars
2015-10-24 18:46:33 +05:30
before_action :assign_dir_vars, only: [:create_dir]
2015-09-11 14:41:01 +05:30
before_action :authorize_download_code!
before_action :authorize_edit_tree!, only: [:create_dir]
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
def show
2015-10-24 18:46:33 +05:30
return render_404 unless @repository.commit(@ref)
2015-09-11 14:41:01 +05:30
2014-09-02 18:07:02 +05:30
if tree.entries.empty?
if @repository.blob_at(@commit.id, @path)
2017-08-17 22:00:37 +05:30
return redirect_to(
2015-04-26 12:48:37 +05:30
namespace_project_blob_path(@project.namespace, @project,
File.join(@ref, @path))
2017-08-17 22:00:37 +05:30
)
2015-09-11 14:41:01 +05:30
elsif @path.present?
2015-10-24 18:46:33 +05:30
return render_404
2014-09-02 18:07:02 +05:30
end
end
respond_to do |format|
format.html
# Disable cache so browser history works
format.js { no_cache_headers }
end
end
2015-10-24 18:46:33 +05:30
def create_dir
return render_404 unless @commit_params.values.all?
2017-08-17 22:00:37 +05:30
set_start_branch_to_branch_name
create_commit(Files::CreateDirService, success_notice: "The directory has been successfully created.",
2017-08-17 22:00:37 +05:30
success_path: namespace_project_tree_path(@project.namespace, @project, File.join(@branch_name, @dir_name)),
failure_path: namespace_project_tree_path(@project.namespace, @project, @ref))
2015-10-24 18:46:33 +05:30
end
2015-11-26 14:37:03 +05:30
private
2015-10-24 18:46:33 +05:30
def assign_dir_vars
2017-08-17 22:00:37 +05:30
@branch_name = params[:branch_name]
2015-10-24 18:46:33 +05:30
@dir_name = File.join(@path, params[:dir_name])
@commit_params = {
file_path: @dir_name,
commit_message: params[:commit_message],
}
end
2014-09-02 18:07:02 +05:30
end