X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3ba5aa15ea0156a4fce63dcb43b7f972b4c760df..27697133a18371d692d69569659dd522e7b0fbdd:/apps/workbench/app/models/collection.rb diff --git a/apps/workbench/app/models/collection.rb b/apps/workbench/app/models/collection.rb index 2346a27859..1f3e0dc5ac 100644 --- a/apps/workbench/app/models/collection.rb +++ b/apps/workbench/app/models/collection.rb @@ -1,15 +1,25 @@ class Collection < ArvadosBase - include ApplicationHelper - MD5_EMPTY = 'd41d8cd98f00b204e9800998ecf8427e' + def default_name + if Collection.is_empty_blob_locator? self.uuid + "Empty Collection" + else + super + end + end + # Return true if the given string is the locator of a zero-length blob def self.is_empty_blob_locator? locator !!locator.to_s.match("^#{MD5_EMPTY}(\\+.*)?\$") end + def self.goes_in_projects? + true + end + def content_summary - human_readable_bytes_html(total_bytes) + " " + super + ApplicationController.helpers.human_readable_bytes_html(total_bytes) + " " + super end def total_bytes @@ -19,10 +29,13 @@ class Collection < ArvadosBase tot += file[2] end tot + else + 0 end end def files_tree + return [] if files.empty? tree = files.group_by { |file_spec| File.split(file_spec.first) } # Fill in entries for empty directories. tree.keys.map { |basedir, _| File.split(basedir) }.each do |splitdir| @@ -43,8 +56,12 @@ class Collection < ArvadosBase dir_to_tree.call('.') end - def attribute_editable?(attr) - false + def attribute_editable? attr, *args + if %w(name description manifest_text).include? attr.to_s + true + else + super + end end def self.creatable? @@ -59,4 +76,28 @@ class Collection < ArvadosBase arvados_api_client.api "collections/#{self.uuid}/", "used_by" end + def uuid + if self[:uuid].nil? + return self.portable_data_hash + else + super + end + end + + def portable_data_hash + if self[:portable_data_hash].nil? + return self.uuid + else + super + end + end + + def friendly_link_name + if self.respond_to? :name + self.name + else + self.portable_data_hash + end + end + end