X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2b2c23bf8e997735dbf6c493b168ee3a3ff52be5..17cde5d1333ae88e9eaf4739e5deaac458a523ec:/apps/workbench/app/models/collection.rb diff --git a/apps/workbench/app/models/collection.rb b/apps/workbench/app/models/collection.rb index ea81ad8c0a..f5aef841ea 100644 --- a/apps/workbench/app/models/collection.rb +++ b/apps/workbench/app/models/collection.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require "arvados/keep" class Collection < ArvadosBase @@ -64,8 +68,8 @@ class Collection < ArvadosBase .sort.flat_map do |parts| [parts + [nil]] + dir_to_tree.call(File.join(parts)) end - # Then extend that list with files in this directory. - subnodes + tree[File.split(dirname)] + # Then extend that list with files in this directory, except the empty dir placeholders (0:0:. files). + subnodes + tree[File.split(dirname)].reject { |_, basename, size| (basename == '.') and (size == 0) } end dir_to_tree.call('.') end @@ -98,4 +102,7 @@ class Collection < ArvadosBase [ 'description' ] end + def untrash + arvados_api_client.api(self.class, "/#{self.uuid}/untrash", {"ensure_unique_name" => true}) + end end