2012-07-10 22:12:38 +02:00
|
|
|
module TreeHelper
|
2012-10-04 00:40:56 +02: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
|
|
|
|
def render_tree(contents)
|
|
|
|
# Render Folders before Files/Submodules
|
|
|
|
folders, files = contents.partition { |v| v.kind_of?(Grit::Tree) }
|
|
|
|
|
|
|
|
tree = ""
|
|
|
|
|
|
|
|
# Render folders if we have any
|
|
|
|
tree += render partial: 'tree/tree_item', collection: folders, locals: {type: 'folder'} if folders.present?
|
|
|
|
|
|
|
|
files.each do |f|
|
2013-03-05 16:15:20 +01:00
|
|
|
html = if f.respond_to?(:url)
|
|
|
|
# Object is a Submodule
|
|
|
|
render partial: 'tree/submodule_item', object: f
|
|
|
|
else
|
|
|
|
# Object is a Blob
|
|
|
|
render partial: 'tree/tree_item', object: f, locals: {type: 'file'}
|
|
|
|
end
|
|
|
|
|
|
|
|
tree += html if html.present?
|
2012-07-10 22:12:38 +02:00
|
|
|
end
|
2012-10-04 00:40:56 +02:00
|
|
|
|
|
|
|
tree.html_safe
|
2012-07-10 22:12:38 +02:00
|
|
|
end
|
|
|
|
|
2012-10-04 00:40:56 +02:00
|
|
|
# Return an image icon depending on the file type
|
|
|
|
#
|
|
|
|
# type - String type of the tree item; either 'folder' or 'file'
|
|
|
|
def tree_icon(type)
|
|
|
|
image = type == 'folder' ? 'file_dir.png' : 'file_txt.png'
|
|
|
|
image_tag(image, size: '16x16')
|
2012-07-10 22:12:38 +02:00
|
|
|
end
|
|
|
|
|
2012-10-04 00:40:56 +02:00
|
|
|
def tree_hex_class(content)
|
|
|
|
"file_#{hexdigest(content.name)}"
|
2012-07-10 22:12:38 +02:00
|
|
|
end
|
2012-09-05 22:52:49 +02:00
|
|
|
|
|
|
|
# Public: Determines if a given filename is compatible with GitHub::Markup.
|
|
|
|
#
|
|
|
|
# filename - Filename string to check
|
|
|
|
#
|
|
|
|
# Returns boolean
|
|
|
|
def markup?(filename)
|
2012-09-20 12:00:18 +02:00
|
|
|
filename.end_with?(*%w(.textile .rdoc .org .creole
|
|
|
|
.mediawiki .rst .asciidoc .pod))
|
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_markdown?(filename)
|
|
|
|
filename.end_with?(*%w(.mdown .md .markdown))
|
2012-09-05 22:52:49 +02:00
|
|
|
end
|
2012-09-17 18:39:57 +02:00
|
|
|
|
2012-10-16 08:43:22 +02:00
|
|
|
def plain_text_readme? filename
|
|
|
|
filename == 'README'
|
|
|
|
end
|
|
|
|
|
2012-09-17 18:39:57 +02:00
|
|
|
# Simple shortcut to File.join
|
|
|
|
def tree_join(*args)
|
|
|
|
File.join(*args)
|
|
|
|
end
|
2012-10-21 11:12:14 +02:00
|
|
|
|
|
|
|
def allowed_tree_edit?
|
|
|
|
if @project.protected_branch? @ref
|
|
|
|
can?(current_user, :push_code_to_protected_branches, @project)
|
|
|
|
else
|
|
|
|
can?(current_user, :push_code, @project)
|
|
|
|
end
|
|
|
|
end
|
2012-11-01 22:58:13 +01:00
|
|
|
|
2013-03-31 22:46:54 +02:00
|
|
|
def tree_breadcrumbs(tree, max_links = 2)
|
|
|
|
if tree.path
|
|
|
|
part_path = ""
|
|
|
|
parts = tree.path.split("\/")
|
|
|
|
|
|
|
|
yield('..', nil) if parts.count > max_links
|
2012-11-01 22:58:13 +01:00
|
|
|
|
2013-03-31 22:46:54 +02: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 22:58:13 +01:00
|
|
|
|
2013-03-31 22:46:54 +02:00
|
|
|
next unless parts.last(2).include?(part) if parts.count > max_links
|
|
|
|
yield(part, tree_join(tree.ref, part_path))
|
2012-11-01 22:58:13 +01:00
|
|
|
end
|
|
|
|
end
|
2013-03-31 22:46:54 +02:00
|
|
|
end
|
2012-11-01 22:58:13 +01:00
|
|
|
|
2013-03-31 22:46:54 +02:00
|
|
|
def up_dir_path tree
|
|
|
|
file = File.join(tree.path, "..")
|
|
|
|
tree_join(tree.ref, file)
|
2012-11-01 22:58:13 +01:00
|
|
|
end
|
2013-03-31 22:46:54 +02:00
|
|
|
|
2012-07-10 22:12:38 +02:00
|
|
|
end
|