X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/40bbccf9acf872cd610adeb317f06f5ba57504a0..fefce5e8e133a8fa064bbcdf31d85d41dc4a6729:/services/api/app/models/collection.rb diff --git a/services/api/app/models/collection.rb b/services/api/app/models/collection.rb index 2cbabc38ad..334f3c699b 100644 --- a/services/api/app/models/collection.rb +++ b/services/api/app/models/collection.rb @@ -21,14 +21,22 @@ class Collection < ArvadosModel t.add :properties t.add :portable_data_hash t.add :signed_manifest_text, as: :manifest_text + t.add :replication_desired end def self.attributes_required_columns - # If we don't list this explicitly, the params[:select] code gets - # confused by the way we expose signed_manifest_text as - # manifest_text in the API response, and never let clients select - # the manifest_text column. - super.merge('manifest_text' => ['manifest_text']) + super.merge( + # If we don't list manifest_text explicitly, the + # params[:select] code gets confused by the way we + # expose signed_manifest_text as manifest_text in the + # API response, and never let clients select the + # manifest_text column. + 'manifest_text' => ['manifest_text'], + + # This is a shim until the database column gets + # renamed to replication_desired in #3410. + 'replication_desired' => ['redundancy'], + ) end def check_signatures @@ -129,18 +137,30 @@ class Collection < ArvadosModel def set_file_names if self.manifest_text_changed? - file_names = [] - if self.manifest_text - self.manifest_text.split.each do |part| - file_name = part.rpartition(':')[-1] - file_names << file_name if file_name != '.' - end - end - self.file_names = file_names.uniq.join(" ")[0,2**16] + self.file_names = manifest_files end true end + def manifest_files + names = '' + if self.manifest_text + self.manifest_text.scan(/ \d+:\d+:(\S+)/) do |name| + names << name.first.gsub('\040',' ') + "\n" + break if names.length > 2**12 + end + end + + if self.manifest_text and names.length < 2**12 + self.manifest_text.scan(/^\.\/(\S+)/m) do |stream_name| + names << stream_name.first.gsub('\040',' ') + "\n" + break if names.length > 2**12 + end + end + + names[0,2**12] + end + def check_encoding if manifest_text.encoding.name == 'UTF-8' and manifest_text.valid_encoding? true @@ -163,6 +183,11 @@ class Collection < ArvadosModel end end + def replication_desired + # Shim until database columns get fixed up in #3410. + redundancy or 2 + end + def redundancy_status if redundancy_confirmed_as.nil? 'unconfirmed' @@ -284,6 +309,14 @@ class Collection < ArvadosModel find_all_for_docker_image(search_term, search_tag, readers).first end + def self.searchable_columns operator + super - ["manifest_text"] + end + + def self.full_text_searchable_columns + super - ["manifest_text"] + end + protected def portable_manifest_text portable_manifest = self[:manifest_text].dup