2012-09-17 12:38:59 -04:00
|
|
|
# Controller for viewing a repository's file structure
|
2015-01-26 18:01:51 -05:00
|
|
|
class Projects::TreeController < Projects::ApplicationController
|
|
|
|
include ExtractsPath
|
2015-12-18 04:03:34 -05:00
|
|
|
include CreatesCommit
|
2015-09-17 01:45:22 -04:00
|
|
|
include ActionView::Helpers::SanitizeHelper
|
2015-01-26 18:01:51 -05:00
|
|
|
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :require_non_empty_project, except: [:new, :create]
|
|
|
|
before_action :assign_ref_vars
|
2015-09-17 01:45:22 -04:00
|
|
|
before_action :assign_dir_vars, only: [:create_dir]
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :authorize_download_code!
|
2015-12-18 04:03:34 -05:00
|
|
|
before_action :authorize_edit_tree!, only: [:create_dir]
|
2014-07-07 09:46:57 -04:00
|
|
|
|
2015-01-26 18:01:51 -05:00
|
|
|
def show
|
2015-10-09 13:07:29 -04:00
|
|
|
return render_404 unless @repository.commit(@ref)
|
2015-07-20 19:55:45 -04:00
|
|
|
|
2014-07-07 09:46:57 -04:00
|
|
|
if tree.entries.empty?
|
|
|
|
if @repository.blob_at(@commit.id, @path)
|
2017-02-21 17:31:14 -05:00
|
|
|
return redirect_to(
|
2015-01-24 13:02:58 -05:00
|
|
|
namespace_project_blob_path(@project.namespace, @project,
|
|
|
|
File.join(@ref, @path))
|
2017-02-21 17:31:14 -05:00
|
|
|
)
|
2015-07-20 19:55:45 -04:00
|
|
|
elsif @path.present?
|
2015-10-09 13:07:29 -04:00
|
|
|
return render_404
|
2014-07-07 09:46:57 -04:00
|
|
|
end
|
|
|
|
end
|
2013-10-01 10:00:28 -04:00
|
|
|
|
2012-09-17 12:38:59 -04:00
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
# Disable cache so browser history works
|
|
|
|
format.js { no_cache_headers }
|
|
|
|
end
|
|
|
|
end
|
2015-09-17 01:45:22 -04:00
|
|
|
|
|
|
|
def create_dir
|
2015-10-09 13:07:29 -04:00
|
|
|
return render_404 unless @commit_params.values.all?
|
2015-09-17 01:45:22 -04:00
|
|
|
|
2017-03-14 02:29:49 -04:00
|
|
|
update_ref
|
2015-12-18 04:03:34 -05:00
|
|
|
create_commit(Files::CreateDirService, success_notice: "The directory has been successfully created.",
|
2015-12-18 10:14:12 -05:00
|
|
|
success_path: namespace_project_tree_path(@project.namespace, @project, File.join(@target_branch, @dir_name)),
|
2015-12-18 04:03:34 -05:00
|
|
|
failure_path: namespace_project_tree_path(@project.namespace, @project, @ref))
|
2015-09-17 01:45:22 -04:00
|
|
|
end
|
|
|
|
|
2015-11-17 12:53:56 -05:00
|
|
|
private
|
|
|
|
|
2015-09-17 01:45:22 -04:00
|
|
|
def assign_dir_vars
|
2015-12-18 04:03:34 -05:00
|
|
|
@target_branch = params[:target_branch]
|
|
|
|
|
2015-09-17 01:45:22 -04:00
|
|
|
@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
|