2018-08-18 07:19:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2012-07-10 16:12:38 -04:00
|
|
|
module TreeHelper
|
2017-11-10 15:39:00 -05:00
|
|
|
FILE_LIMIT = 1_000
|
|
|
|
|
2012-10-03 18:40:56 -04:00
|
|
|
# Sorts a repository's tree so that folders are before files and renders
|
|
|
|
# their corresponding partials
|
|
|
|
#
|
2017-11-10 15:39:00 -05:00
|
|
|
# tree - A `Tree` object for the current tree
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2013-04-02 15:37:20 -04:00
|
|
|
def render_tree(tree)
|
2016-07-27 08:47:23 -04:00
|
|
|
# Sort submodules and folders together by name ahead of files
|
2013-05-01 06:39:37 -04:00
|
|
|
folders, files, submodules = tree.trees, tree.blobs, tree.submodules
|
2018-08-18 07:19:57 -04:00
|
|
|
tree = []
|
2016-07-27 08:47:23 -04:00
|
|
|
items = (folders + submodules).sort_by(&:name) + files
|
2017-11-10 15:39:00 -05:00
|
|
|
|
|
|
|
if items.size > FILE_LIMIT
|
|
|
|
tree << render(partial: 'projects/tree/truncated_notice_tree_row',
|
|
|
|
locals: { limit: FILE_LIMIT, total: items.size })
|
|
|
|
items = items.take(FILE_LIMIT)
|
|
|
|
end
|
|
|
|
|
|
|
|
tree << render(partial: 'projects/tree/tree_row', collection: items) if items.present?
|
2018-08-18 07:19:57 -04:00
|
|
|
tree.join.html_safe
|
2012-07-10 16:12:38 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2012-07-10 16:12:38 -04:00
|
|
|
|
2014-10-04 06:29:18 -04:00
|
|
|
# Return an image icon depending on the file type and mode
|
2012-10-03 18:40:56 -04:00
|
|
|
#
|
|
|
|
# type - String type of the tree item; either 'folder' or 'file'
|
2014-10-04 06:29:18 -04:00
|
|
|
# mode - File unix mode
|
|
|
|
# name - File name
|
|
|
|
def tree_icon(type, mode, name)
|
2018-10-17 20:03:15 -04:00
|
|
|
icon([file_type_icon_class(type, mode, name), 'fw'])
|
2012-07-10 16:12:38 -04:00
|
|
|
end
|
|
|
|
|
2018-10-17 20:03:15 -04:00
|
|
|
# Using Rails `*_path` methods can be slow, especially when generating
|
|
|
|
# many paths, as with a repository tree that has thousands of items.
|
|
|
|
def fast_project_blob_path(project, blob_path)
|
2018-11-26 17:07:55 -05:00
|
|
|
ActionDispatch::Journey::Router::Utils.escape_path(
|
2018-10-17 20:03:15 -04:00
|
|
|
File.join(relative_url_root, project.path_with_namespace, 'blob', blob_path)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def fast_project_tree_path(project, tree_path)
|
2018-11-26 17:07:55 -05:00
|
|
|
ActionDispatch::Journey::Router::Utils.escape_path(
|
2018-10-17 20:03:15 -04:00
|
|
|
File.join(relative_url_root, project.path_with_namespace, 'tree', tree_path)
|
|
|
|
)
|
2012-07-10 16:12:38 -04:00
|
|
|
end
|
2012-09-05 16:52:49 -04:00
|
|
|
|
2012-09-17 12:39:57 -04:00
|
|
|
# Simple shortcut to File.join
|
|
|
|
def tree_join(*args)
|
|
|
|
File.join(*args)
|
|
|
|
end
|
2012-10-21 05:12:14 -04:00
|
|
|
|
2015-12-08 11:10:07 -05:00
|
|
|
def on_top_of_branch?(project = @project, ref = @ref)
|
2017-04-19 20:37:44 -04:00
|
|
|
project.repository.branch_exists?(ref)
|
2015-12-08 11:10:07 -05:00
|
|
|
end
|
|
|
|
|
2015-12-18 04:03:34 -05:00
|
|
|
def can_edit_tree?(project = nil, ref = nil)
|
2014-09-28 05:02:29 -04:00
|
|
|
project ||= @project
|
2015-12-08 11:10:07 -05:00
|
|
|
ref ||= @ref
|
2015-12-18 04:03:34 -05:00
|
|
|
|
2015-12-08 11:10:07 -05:00
|
|
|
return false unless on_top_of_branch?(project, ref)
|
|
|
|
|
2018-02-28 03:06:18 -05:00
|
|
|
can_collaborate_with_project?(project, ref: ref)
|
2015-12-08 10:42:10 -05:00
|
|
|
end
|
2013-08-04 10:18:49 -04:00
|
|
|
|
2015-12-08 10:42:10 -05:00
|
|
|
def tree_edit_branch(project = @project, ref = @ref)
|
2015-12-18 04:03:34 -05:00
|
|
|
return unless can_edit_tree?(project, ref)
|
|
|
|
|
2018-02-28 03:06:18 -05:00
|
|
|
if user_access(project).can_push_to_branch?(ref)
|
2015-12-18 04:03:34 -05:00
|
|
|
ref
|
|
|
|
else
|
|
|
|
project = tree_edit_project(project)
|
2016-04-18 03:39:07 -04:00
|
|
|
project.repository.next_branch('patch')
|
2015-12-18 04:03:34 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def tree_edit_project(project = @project)
|
|
|
|
if can?(current_user, :push_code, project)
|
|
|
|
project
|
|
|
|
elsif current_user && current_user.already_forked?(project)
|
|
|
|
current_user.fork_of(project)
|
2015-12-08 10:42:10 -05:00
|
|
|
end
|
2014-09-28 05:02:29 -04:00
|
|
|
end
|
|
|
|
|
2015-12-18 04:03:34 -05:00
|
|
|
def edit_in_new_fork_notice_now
|
2019-04-04 13:05:25 -04:00
|
|
|
_("You're not allowed to make changes to this project directly. "\
|
|
|
|
"A fork of this project is being created that you can make changes in, so you can submit a merge request.")
|
2015-12-18 04:03:34 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def edit_in_new_fork_notice
|
2019-04-04 13:05:25 -04:00
|
|
|
_("You're not allowed to make changes to this project directly. "\
|
|
|
|
"A fork of this project has been created that you can make changes in, so you can submit a merge request.")
|
2015-12-18 04:03:34 -05:00
|
|
|
end
|
|
|
|
|
2018-02-08 09:45:12 -05:00
|
|
|
def edit_in_new_fork_notice_action(action)
|
2019-04-04 13:05:25 -04:00
|
|
|
edit_in_new_fork_notice + _(" Try to %{action} this file again.") % { action: action }
|
2018-02-08 09:45:12 -05:00
|
|
|
end
|
|
|
|
|
2015-12-18 04:03:34 -05:00
|
|
|
def commit_in_fork_help
|
2018-02-28 03:06:18 -05:00
|
|
|
_("A new branch will be created in your fork and a new merge request will be started.")
|
|
|
|
end
|
|
|
|
|
|
|
|
def commit_in_single_accessible_branch
|
2018-04-17 05:39:11 -04:00
|
|
|
branch_name = ERB::Util.html_escape(selected_branch)
|
2018-02-28 03:06:18 -05:00
|
|
|
|
|
|
|
message = _("Your changes can be committed to %{branch_name} because a merge "\
|
|
|
|
"request is open.") % { branch_name: "<strong>#{branch_name}</strong>" }
|
|
|
|
|
|
|
|
message.html_safe
|
2015-12-18 04:03:34 -05:00
|
|
|
end
|
|
|
|
|
2017-05-02 18:47:28 -04:00
|
|
|
def path_breadcrumbs(max_links = 6)
|
2013-10-01 10:00:28 -04:00
|
|
|
if @path.present?
|
2013-03-31 16:46:54 -04:00
|
|
|
part_path = ""
|
2014-11-04 05:16:53 -05:00
|
|
|
parts = @path.split('/')
|
2013-03-31 16:46:54 -04:00
|
|
|
|
2017-05-10 02:05:03 -04:00
|
|
|
yield('..', File.join(*parts.first(parts.count - 2))) if parts.count > max_links
|
2012-11-01 17:58:13 -04:00
|
|
|
|
2013-03-31 16:46:54 -04:00
|
|
|
parts.each do |part|
|
|
|
|
part_path = File.join(part_path, part) unless part_path.empty?
|
|
|
|
part_path = part if part_path.empty?
|
2012-11-01 17:58:13 -04:00
|
|
|
|
2015-12-14 21:53:52 -05:00
|
|
|
next if parts.count > max_links && !parts.last(2).include?(part)
|
2017-11-14 04:02:39 -05:00
|
|
|
|
2017-05-02 18:47:28 -04:00
|
|
|
yield(part, part_path)
|
2012-11-01 17:58:13 -04:00
|
|
|
end
|
|
|
|
end
|
2013-03-31 16:46:54 -04:00
|
|
|
end
|
2012-11-01 17:58:13 -04:00
|
|
|
|
2014-09-30 16:28:05 -04:00
|
|
|
def up_dir_path
|
2013-10-01 10:00:28 -04:00
|
|
|
file = File.join(@path, "..")
|
|
|
|
tree_join(@ref, file)
|
2012-11-01 17:58:13 -04:00
|
|
|
end
|
2013-05-27 08:43:44 -04:00
|
|
|
|
2015-01-18 10:29:37 -05:00
|
|
|
# returns the relative path of the first subdir that doesn't have only one directory descendant
|
2017-09-06 16:47:25 -04:00
|
|
|
def flatten_tree(root_path, tree)
|
2019-03-06 13:36:28 -05:00
|
|
|
tree.flat_path.sub(%r{\A#{Regexp.escape(root_path)}/}, '')
|
2014-12-30 21:15:04 -05:00
|
|
|
end
|
2018-02-28 03:06:18 -05:00
|
|
|
|
|
|
|
def selected_branch
|
|
|
|
@branch_name || tree_edit_branch
|
|
|
|
end
|
2018-10-17 20:03:15 -04:00
|
|
|
|
|
|
|
def relative_url_root
|
|
|
|
Gitlab.config.gitlab.relative_url_root.presence || '/'
|
|
|
|
end
|
2012-07-10 16:12:38 -04:00
|
|
|
end
|