2012-07-10 16:12:38 -04:00
|
|
|
module TreeHelper
|
2012-10-03 18:40:56 -04:00
|
|
|
# Sorts a repository's tree so that folders are before files and renders
|
|
|
|
# their corresponding partials
|
|
|
|
#
|
|
|
|
# contents - A Grit::Tree object for the current tree
|
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
|
2012-10-03 18:40:56 -04:00
|
|
|
tree = ""
|
2016-07-27 08:47:23 -04:00
|
|
|
items = (folders + submodules).sort_by(&:name) + files
|
|
|
|
tree << render(partial: "projects/tree/tree_row", collection: items) if items.present?
|
2012-10-03 18:40:56 -04:00
|
|
|
tree.html_safe
|
2012-07-10 16:12:38 -04:00
|
|
|
end
|
|
|
|
|
2014-08-11 02:50:56 -04:00
|
|
|
def render_readme(readme)
|
2015-05-12 19:54:13 -04:00
|
|
|
render_markup(readme.name, readme.data)
|
2014-08-11 02:50:56 -04:00
|
|
|
end
|
|
|
|
|
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)
|
|
|
|
icon("#{file_type_icon_class(type, mode, name)} fw")
|
2012-07-10 16:12:38 -04:00
|
|
|
end
|
|
|
|
|
2012-10-03 18:40:56 -04:00
|
|
|
def tree_hex_class(content)
|
|
|
|
"file_#{hexdigest(content.name)}"
|
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)
|
|
|
|
project.repository.branch_names.include?(ref)
|
|
|
|
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)
|
|
|
|
|
2016-02-09 14:50:25 -05:00
|
|
|
can_collaborate_with_project?(project)
|
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)
|
|
|
|
|
|
|
|
if can_push_branch?(project, ref)
|
|
|
|
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
|
|
|
|
"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
|
|
|
|
|
|
|
|
def commit_in_fork_help
|
|
|
|
"A new branch will be created in your fork and a new merge request will be started."
|
|
|
|
end
|
|
|
|
|
2013-03-31 16:46:54 -04:00
|
|
|
def tree_breadcrumbs(tree, max_links = 2)
|
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
|
|
|
|
|
|
|
yield('..', nil) 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)
|
2013-10-01 10:00:28 -04:00
|
|
|
yield(part, tree_join(@ref, 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
|
2014-12-30 21:15:04 -05:00
|
|
|
def flatten_tree(tree)
|
|
|
|
subtree = Gitlab::Git::Tree.where(@repository, @commit.id, tree.path)
|
|
|
|
if subtree.count == 1 && subtree.first.dir?
|
|
|
|
return tree_join(tree.name, flatten_tree(subtree.first))
|
|
|
|
else
|
|
|
|
return tree.name
|
|
|
|
end
|
|
|
|
end
|
2012-07-10 16:12:38 -04:00
|
|
|
end
|