debian-mirror-gitlab/app/helpers/tree_helper.rb

146 lines
4.2 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
module TreeHelper
2018-03-17 18:26:18 +05:30
FILE_LIMIT = 1_000
2014-09-02 18:07:02 +05:30
# Sorts a repository's tree so that folders are before files and renders
# their corresponding partials
#
2018-03-17 18:26:18 +05:30
# tree - A `Tree` object for the current tree
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2014-09-02 18:07:02 +05:30
def render_tree(tree)
2016-09-13 17:45:13 +05:30
# Sort submodules and folders together by name ahead of files
2014-09-02 18:07:02 +05:30
folders, files, submodules = tree.trees, tree.blobs, tree.submodules
2018-12-05 23:21:45 +05:30
tree = []
2016-09-13 17:45:13 +05:30
items = (folders + submodules).sort_by(&:name) + files
2018-03-17 18:26:18 +05:30
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-12-05 23:21:45 +05:30
tree.join.html_safe
2014-09-02 18:07:02 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
# Return an image icon depending on the file type and mode
2014-09-02 18:07:02 +05:30
#
# type - String type of the tree item; either 'folder' or 'file'
2015-04-26 12:48:37 +05:30
# mode - File unix mode
# name - File name
def tree_icon(type, mode, name)
icon("#{file_type_icon_class(type, mode, name)} fw")
2014-09-02 18:07:02 +05:30
end
def tree_hex_class(content)
"file_#{hexdigest(content.name)}"
end
# Simple shortcut to File.join
def tree_join(*args)
File.join(*args)
end
2015-12-23 02:04:40 +05:30
def on_top_of_branch?(project = @project, ref = @ref)
2017-08-17 22:00:37 +05:30
project.repository.branch_exists?(ref)
2015-12-23 02:04:40 +05:30
end
def can_edit_tree?(project = nil, ref = nil)
2015-04-26 12:48:37 +05:30
project ||= @project
ref ||= @ref
2015-12-23 02:04:40 +05:30
return false unless on_top_of_branch?(project, ref)
2018-03-27 19:54:05 +05:30
can_collaborate_with_project?(project, ref: ref)
2015-12-23 02:04:40 +05:30
end
2014-09-02 18:07:02 +05:30
2015-12-23 02:04:40 +05:30
def tree_edit_branch(project = @project, ref = @ref)
return unless can_edit_tree?(project, ref)
2018-03-27 19:54:05 +05:30
if user_access(project).can_push_to_branch?(ref)
ref
else
project = tree_edit_project(project)
2016-06-02 11:05:42 +05:30
project.repository.next_branch('patch')
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-23 02:04:40 +05:30
end
2014-09-02 18:07:02 +05:30
end
def edit_in_new_fork_notice_now
"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."
end
def edit_in_new_fork_notice
"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."
end
2018-03-27 19:54:05 +05:30
def edit_in_new_fork_notice_action(action)
edit_in_new_fork_notice + " Try to #{action} this file again."
end
def commit_in_fork_help
2018-03-27 19:54:05 +05:30
_("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-10-15 14:42:47 +05:30
branch_name = ERB::Util.html_escape(selected_branch)
2018-03-27 19:54:05 +05:30
message = _("Your changes can be committed to %{branch_name} because a merge "\
"request is open.") % { branch_name: "<strong>#{branch_name}</strong>" }
message.html_safe
end
2017-08-17 22:00:37 +05:30
def path_breadcrumbs(max_links = 6)
2014-09-02 18:07:02 +05:30
if @path.present?
part_path = ""
2015-04-26 12:48:37 +05:30
parts = @path.split('/')
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
yield('..', File.join(*parts.first(parts.count - 2))) if parts.count > max_links
2014-09-02 18:07:02 +05:30
parts.each do |part|
part_path = File.join(part_path, part) unless part_path.empty?
part_path = part if part_path.empty?
2015-12-23 02:04:40 +05:30
next if parts.count > max_links && !parts.last(2).include?(part)
2018-03-17 18:26:18 +05:30
2017-08-17 22:00:37 +05:30
yield(part, part_path)
2014-09-02 18:07:02 +05:30
end
end
end
2015-04-26 12:48:37 +05:30
def up_dir_path
2014-09-02 18:07:02 +05:30
file = File.join(@path, "..")
tree_join(@ref, file)
end
2015-04-26 12:48:37 +05:30
# returns the relative path of the first subdir that doesn't have only one directory descendant
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2018-03-17 18:26:18 +05:30
def flatten_tree(root_path, tree)
2018-05-09 12:01:36 +05:30
return tree.flat_path.sub(%r{\A#{Regexp.escape(root_path)}/}, '') if tree.flat_path.present?
2018-03-17 18:26:18 +05:30
2015-04-26 12:48:37 +05:30
subtree = Gitlab::Git::Tree.where(@repository, @commit.id, tree.path)
if subtree.count == 1 && subtree.first.dir?
2018-03-17 18:26:18 +05:30
return tree_join(tree.name, flatten_tree(root_path, subtree.first))
2014-09-02 18:07:02 +05:30
else
2015-04-26 12:48:37 +05:30
return tree.name
2014-09-02 18:07:02 +05:30
end
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2018-03-27 19:54:05 +05:30
def selected_branch
@branch_name || tree_edit_branch
end
2014-09-02 18:07:02 +05:30
end