21700: Install Bundler system-wide in Rails postinst
[arvados.git] / services / api / app / models / collection.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 require 'arvados/keep'
6 require 'trashable'
7
8 class Collection < ArvadosModel
9   extend CurrentApiClient
10   extend DbCurrentTime
11   include HasUuid
12   include KindAndEtag
13   include CommonApiTemplate
14   include Trashable
15
16   # Posgresql JSONB columns should NOT be declared as serialized, Rails 5
17   # already know how to properly treat them.
18   attribute :properties, :jsonbHash, default: {}
19   attribute :storage_classes_desired, :jsonbArray, default: lambda { Rails.configuration.DefaultStorageClasses }
20   attribute :storage_classes_confirmed, :jsonbArray, default: []
21
22   before_validation :default_empty_manifest
23   before_validation :default_storage_classes, on: :create
24   before_validation :managed_properties, on: :create
25   before_validation :check_encoding
26   before_validation :check_manifest_validity
27   before_validation :check_signatures
28   before_validation :strip_signatures_and_update_replication_confirmed
29   before_validation :name_null_if_empty
30   validate :ensure_filesystem_compatible_name
31   validate :ensure_pdh_matches_manifest_text
32   validate :ensure_storage_classes_desired_is_not_empty
33   validate :ensure_storage_classes_contain_non_empty_strings
34   validate :versioning_metadata_updates, on: :update
35   validate :past_versions_cannot_be_updated, on: :update
36   validate :protected_managed_properties_updates, on: :update
37   after_validation :set_file_count_and_total_size
38   before_save :set_file_names
39   around_update :manage_versioning, unless: :is_past_version?
40
41   api_accessible :user, extend: :common do |t|
42     t.add lambda { |x| x.name || "" }, as: :name
43     t.add :description
44     t.add :properties
45     t.add :portable_data_hash
46     t.add :manifest_text, as: :unsigned_manifest_text
47     t.add :manifest_text, as: :manifest_text
48     t.add :replication_desired
49     t.add :replication_confirmed
50     t.add :replication_confirmed_at
51     t.add :storage_classes_desired
52     t.add :storage_classes_confirmed
53     t.add :storage_classes_confirmed_at
54     t.add :delete_at
55     t.add :trash_at
56     t.add :is_trashed
57     t.add :version
58     t.add :current_version_uuid
59     t.add :preserve_version
60     t.add :file_count
61     t.add :file_size_total
62   end
63
64   UNLOGGED_CHANGES = ['preserve_version', 'updated_at']
65
66   after_initialize do
67     @signatures_checked = false
68     @computed_pdh_for_manifest_text = false
69   end
70
71   def self.attributes_required_columns
72     super.merge(
73                 # If we don't list unsigned_manifest_text explicitly,
74                 # the params[:select] code gets confused by the way we
75                 # expose manifest_text as unsigned_manifest_text in
76                 # the API response, and never let clients select the
77                 # unsigned_manifest_text column.
78                 'unsigned_manifest_text' => ['manifest_text'],
79                 'name' => ['name'],
80                 )
81   end
82
83   def self.ignored_select_attributes
84     super + ["updated_at", "file_names"]
85   end
86
87   def self.limit_index_columns_read
88     ["manifest_text"]
89   end
90
91   FILE_TOKEN = /^[[:digit:]]+:[[:digit:]]+:/
92   def check_signatures
93     throw(:abort) if self.manifest_text.nil?
94
95     return true if current_user.andand.is_admin
96
97     # Provided the manifest_text hasn't changed materially since an
98     # earlier validation, it's safe to pass this validation on
99     # subsequent passes without checking any signatures. This is
100     # important because the signatures have probably been stripped off
101     # by the time we get to a second validation pass!
102     if @signatures_checked && @signatures_checked == computed_pdh
103       return true
104     end
105
106     if self.manifest_text_changed?
107       # Check permissions on the collection manifest.
108       # If any signature cannot be verified, raise PermissionDeniedError
109       # which will return 403 Permission denied to the client.
110       api_token = Thread.current[:token]
111       signing_opts = {
112         api_token: api_token,
113         now: @validation_timestamp.to_i,
114       }
115       self.manifest_text.each_line do |entry|
116         entry.split.each do |tok|
117           if tok == '.' or tok.starts_with? './'
118             # Stream name token.
119           elsif tok =~ FILE_TOKEN
120             # This is a filename token, not a blob locator. Note that we
121             # keep checking tokens after this, even though manifest
122             # format dictates that all subsequent tokens will also be
123             # filenames. Safety first!
124           elsif Blob.verify_signature tok, signing_opts
125             # OK.
126           elsif Keep::Locator.parse(tok).andand.signature
127             # Signature provided, but verify_signature did not like it.
128             logger.warn "Invalid signature on locator #{tok}"
129             raise ArvadosModel::PermissionDeniedError
130           elsif !Rails.configuration.Collections.BlobSigning
131             # No signature provided, but we are running in insecure mode.
132             logger.debug "Missing signature on locator #{tok} ignored"
133           elsif Blob.new(tok).empty?
134             # No signature provided -- but no data to protect, either.
135           else
136             logger.warn "Missing signature on locator #{tok}"
137             raise ArvadosModel::PermissionDeniedError
138           end
139         end
140       end
141     end
142     @signatures_checked = computed_pdh
143   end
144
145   def strip_signatures_and_update_replication_confirmed
146     if self.manifest_text_changed?
147       in_old_manifest = {}
148       # manifest_text_was could be nil when dealing with a freshly created snapshot,
149       # so we skip this case because there was no real manifest change. (Bug #18005)
150       if (not self.replication_confirmed.nil?) and (not self.manifest_text_was.nil?)
151         self.class.each_manifest_locator(manifest_text_was) do |match|
152           in_old_manifest[match[1]] = true
153         end
154       end
155
156       stripped_manifest = self.class.munge_manifest_locators(manifest_text) do |match|
157         if not self.replication_confirmed.nil? and not in_old_manifest[match[1]]
158           # If the new manifest_text contains locators whose hashes
159           # weren't in the old manifest_text, storage replication is no
160           # longer confirmed.
161           self.replication_confirmed_at = nil
162           self.replication_confirmed = nil
163         end
164
165         # Return the locator with all permission signatures removed,
166         # but otherwise intact.
167         match[0].gsub(/\+A[^+]*/, '')
168       end
169
170       if @computed_pdh_for_manifest_text == manifest_text
171         # If the cached PDH was valid before stripping, it is still
172         # valid after stripping.
173         @computed_pdh_for_manifest_text = stripped_manifest.dup
174       end
175
176       self[:manifest_text] = stripped_manifest
177     end
178     true
179   end
180
181   def ensure_pdh_matches_manifest_text
182     if not manifest_text_changed? and not portable_data_hash_changed?
183       true
184     elsif portable_data_hash.nil? or not portable_data_hash_changed?
185       self.portable_data_hash = computed_pdh
186     elsif portable_data_hash !~ Keep::Locator::LOCATOR_REGEXP
187       errors.add(:portable_data_hash, "is not a valid locator")
188       false
189     elsif portable_data_hash[0..31] != computed_pdh[0..31]
190       errors.add(:portable_data_hash,
191                  "'#{portable_data_hash}' does not match computed hash '#{computed_pdh}'")
192       false
193     else
194       # Ignore the client-provided size part: always store
195       # computed_pdh in the database.
196       self.portable_data_hash = computed_pdh
197     end
198   end
199
200   def name_null_if_empty
201     if name == ""
202       self.name = nil
203     end
204   end
205
206   def set_file_names
207     if self.manifest_text_changed?
208       self.file_names = manifest_files
209     end
210     true
211   end
212
213   def set_file_count_and_total_size
214     # Only update the file stats if the manifest changed
215     if self.manifest_text_changed?
216       m = Keep::Manifest.new(self.manifest_text)
217       self.file_size_total = m.files_size
218       self.file_count = m.files_count
219     # If the manifest didn't change but the attributes did, ignore the changes
220     elsif self.file_count_changed? || self.file_size_total_changed?
221       self.file_count = self.file_count_was
222       self.file_size_total = self.file_size_total_was
223     end
224     true
225   end
226
227   def manifest_files
228     return '' if !self.manifest_text
229
230     done = {}
231     names = ''
232     self.manifest_text.scan(/ \d+:\d+:(\S+)/) do |name|
233       next if done[name]
234       done[name] = true
235       names << name.first.gsub('\040',' ') + "\n"
236     end
237     self.manifest_text.scan(/^\.\/(\S+)/m) do |stream_name|
238       next if done[stream_name]
239       done[stream_name] = true
240       names << stream_name.first.gsub('\040',' ') + "\n"
241     end
242     names
243   end
244
245   def default_empty_manifest
246     self.manifest_text ||= ''
247   end
248
249   def skip_uuid_existence_check
250     # Avoid checking the existence of current_version_uuid, as it's
251     # assigned on creation of a new 'current version' collection, so
252     # the collection's UUID only lives on memory when the validation check
253     # is performed.
254     ['current_version_uuid']
255   end
256
257   def manage_versioning
258     should_preserve_version = should_preserve_version? # Time sensitive, cache value
259     return(yield) unless (should_preserve_version || syncable_updates.any?)
260
261     # Put aside the changes because with_lock does a record reload
262     changes = self.changes
263     snapshot = nil
264     restore_attributes
265     with_lock do
266       # Copy the original state to save it as old version
267       if should_preserve_version
268         snapshot = self.dup
269         snapshot.uuid = nil # Reset UUID so it's created as a new record
270         snapshot.created_at = self.created_at
271         snapshot.modified_at = self.modified_at_was
272       end
273
274       # Restore requested changes on the current version
275       changes.keys.each do |attr|
276         if attr == 'preserve_version' && changes[attr].last == false && !should_preserve_version
277           next # Ignore false assignment, once true it'll be true until next version
278         end
279         self.attributes = {attr => changes[attr].last}
280         if attr == 'uuid'
281           # Also update the current version reference
282           self.attributes = {'current_version_uuid' => changes[attr].last}
283         end
284       end
285
286       if should_preserve_version
287         self.version += 1
288       end
289
290       yield
291
292       sync_past_versions if syncable_updates.any?
293       if snapshot
294         snapshot.attributes = self.syncable_updates
295         leave_modified_by_user_alone do
296           leave_modified_at_alone do
297             act_as_system_user do
298               snapshot.save
299             end
300           end
301         end
302       end
303     end
304   end
305
306   def maybe_update_modified_by_fields
307     if !(self.changes.keys - ['updated_at', 'preserve_version']).empty?
308       super
309     end
310   end
311
312   def syncable_updates
313     updates = {}
314     if self.changes.any?
315       changes = self.changes
316     else
317       # If called after save...
318       changes = self.saved_changes
319     end
320     (syncable_attrs & changes.keys).each do |attr|
321       if attr == 'uuid'
322         # Point old versions to current version's new UUID
323         updates['current_version_uuid'] = changes[attr].last
324       else
325         updates[attr] = changes[attr].last
326       end
327     end
328     return updates
329   end
330
331   def sync_past_versions
332     Collection.where('current_version_uuid = ? AND uuid != ?', self.uuid_before_last_save, self.uuid_before_last_save).update_all self.syncable_updates
333   end
334
335   def versionable_updates?(attrs)
336     (['manifest_text', 'description', 'properties', 'name'] & attrs).any?
337   end
338
339   def syncable_attrs
340     ['uuid', 'owner_uuid', 'delete_at', 'trash_at', 'is_trashed', 'replication_desired', 'storage_classes_desired']
341   end
342
343   def is_past_version?
344     # Check for the '_was' values just in case the update operation
345     # includes a change on current_version_uuid or uuid.
346     !(new_record? || self.current_version_uuid_was == self.uuid_was)
347   end
348
349   def should_preserve_version?
350     return false unless (Rails.configuration.Collections.CollectionVersioning && versionable_updates?(self.changes.keys))
351
352     return false if self.is_trashed
353
354     idle_threshold = Rails.configuration.Collections.PreserveVersionIfIdle
355     if !self.preserve_version_was &&
356       !self.preserve_version &&
357       (idle_threshold < 0 ||
358         (idle_threshold > 0 && self.modified_at_was > db_current_time-idle_threshold.seconds))
359       return false
360     end
361     return true
362   end
363
364   def check_encoding
365     if !(manifest_text.encoding.name == 'UTF-8' and manifest_text.valid_encoding?)
366       begin
367         # If Ruby thinks the encoding is something else, like 7-bit
368         # ASCII, but its stored bytes are equal to the (valid) UTF-8
369         # encoding of the same string, we declare it to be a UTF-8
370         # string.
371         utf8 = manifest_text
372         utf8.force_encoding Encoding::UTF_8
373         if utf8.valid_encoding? and utf8 == manifest_text.encode(Encoding::UTF_8)
374           self.manifest_text = utf8
375           return true
376         end
377       rescue
378       end
379       errors.add :manifest_text, "must use UTF-8 encoding"
380       throw(:abort)
381     end
382   end
383
384   def check_manifest_validity
385     begin
386       Keep::Manifest.validate! manifest_text
387       true
388     rescue ArgumentError => e
389       errors.add :manifest_text, e.message
390       throw(:abort)
391     end
392   end
393
394   def signed_manifest_text_only_for_tests
395     if !has_attribute? :manifest_text
396       return nil
397     elsif is_trashed
398       return manifest_text
399     else
400       token = Thread.current[:token]
401       exp = [db_current_time.to_i + Rails.configuration.Collections.BlobSigningTTL.to_i,
402              trash_at].compact.map(&:to_i).min
403       self.class.sign_manifest_only_for_tests manifest_text, token, exp
404     end
405   end
406
407   def self.sign_manifest_only_for_tests manifest, token, exp=nil
408     if exp.nil?
409       exp = db_current_time.to_i + Rails.configuration.Collections.BlobSigningTTL.to_i
410     end
411     signing_opts = {
412       api_token: token,
413       expire: exp,
414     }
415     m = munge_manifest_locators(manifest) do |match|
416       Blob.sign_locator(match[0], signing_opts)
417     end
418     return m
419   end
420
421   def self.munge_manifest_locators manifest
422     # Given a manifest text and a block, yield the regexp MatchData
423     # for each locator. Return a new manifest in which each locator
424     # has been replaced by the block's return value.
425     return nil if !manifest
426     return '' if manifest == ''
427
428     new_lines = []
429     manifest.each_line do |line|
430       line.rstrip!
431       new_words = []
432       line.split(' ').each do |word|
433         if new_words.empty?
434           new_words << word
435         elsif match = Keep::Locator::LOCATOR_REGEXP.match(word)
436           new_words << yield(match)
437         else
438           new_words << word
439         end
440       end
441       new_lines << new_words.join(' ')
442     end
443     new_lines.join("\n") + "\n"
444   end
445
446   def self.each_manifest_locator manifest
447     # Given a manifest text and a block, yield the regexp match object
448     # for each locator.
449     manifest.each_line do |line|
450       # line will have a trailing newline, but the last token is never
451       # a locator, so it's harmless here.
452       line.split(' ').each do |word|
453         if match = Keep::Locator::LOCATOR_REGEXP.match(word)
454           yield(match)
455         end
456       end
457     end
458   end
459
460   def self.normalize_uuid uuid
461     hash_part = nil
462     size_part = nil
463     uuid.split('+').each do |token|
464       if token.match(/^[0-9a-f]{32,}$/)
465         raise "uuid #{uuid} has multiple hash parts" if hash_part
466         hash_part = token
467       elsif token.match(/^\d+$/)
468         raise "uuid #{uuid} has multiple size parts" if size_part
469         size_part = token
470       end
471     end
472     raise "uuid #{uuid} has no hash part" if !hash_part
473     [hash_part, size_part].compact.join '+'
474   end
475
476   def self.get_compatible_images(readers, pattern, collections)
477     if collections.empty?
478       return []
479     end
480
481     migrations = Hash[
482       Link.where('tail_uuid in (?) AND link_class=? AND links.owner_uuid=?',
483                  collections.map(&:portable_data_hash),
484                  'docker_image_migration',
485                  system_user_uuid).
486       order('links.created_at asc').
487       map { |l|
488         [l.tail_uuid, l.head_uuid]
489       }]
490
491     migrated_collections = Hash[
492       Collection.readable_by(*readers).
493       where('portable_data_hash in (?)', migrations.values).
494       map { |c|
495         [c.portable_data_hash, c]
496       }]
497
498     collections.map { |c|
499       # Check if the listed image is compatible first, if not, then try the
500       # migration link.
501       manifest = Keep::Manifest.new(c.manifest_text)
502       if manifest.exact_file_count?(1) and manifest.files[0][1] =~ pattern
503         c
504       elsif m = migrated_collections[migrations[c.portable_data_hash]]
505         manifest = Keep::Manifest.new(m.manifest_text)
506         if manifest.exact_file_count?(1) and manifest.files[0][1] =~ pattern
507           m
508         end
509       end
510     }.compact
511   end
512
513   # Resolve a Docker repo+tag, hash, or collection PDH to an array of
514   # Collection objects, sorted by timestamp starting with the most recent
515   # match.
516   #
517   # If filter_compatible_format is true (the default), only return image
518   # collections which are support by the installation as indicated by
519   # Rails.configuration.Containers.SupportedDockerImageFormats.  Will follow
520   # 'docker_image_migration' links if search_term resolves to an incompatible
521   # image, but an equivalent compatible image is available.
522   def self.find_all_for_docker_image(search_term, search_tag=nil, readers=nil, filter_compatible_format: true)
523     readers ||= [Thread.current[:user]]
524     base_search = Link.
525       readable_by(*readers).
526       readable_by(*readers, table_name: "collections").
527       joins("JOIN collections ON links.head_uuid = collections.uuid").
528       order("links.created_at DESC")
529
530     docker_image_formats = Rails.configuration.Containers.SupportedDockerImageFormats.keys.map(&:to_s)
531
532     if (docker_image_formats.include? 'v1' and
533         docker_image_formats.include? 'v2') or filter_compatible_format == false
534       pattern = /^(sha256:)?[0-9A-Fa-f]{64}\.tar$/
535     elsif docker_image_formats.include? 'v2'
536       pattern = /^(sha256:)[0-9A-Fa-f]{64}\.tar$/
537     elsif docker_image_formats.include? 'v1'
538       pattern = /^[0-9A-Fa-f]{64}\.tar$/
539     else
540       raise "Unrecognized configuration for docker_image_formats #{docker_image_formats}"
541     end
542
543     # If the search term is a Collection locator that contains one file
544     # that looks like a Docker image, return it.
545     if loc = Keep::Locator.parse(search_term)
546       loc.strip_hints!
547       coll_match = readable_by(*readers).where(portable_data_hash: loc.to_s).limit(1)
548       rc = Rails.configuration.RemoteClusters.select{ |k|
549         k != :"*" && k != Rails.configuration.ClusterID}
550       if coll_match.any? or rc.length == 0
551         return get_compatible_images(readers, pattern, coll_match)
552       else
553         # Allow bare pdh that doesn't exist in the local database so
554         # that federated container requests which refer to remotely
555         # stored containers will validate.
556         return [Collection.new(portable_data_hash: loc.to_s)]
557       end
558     end
559
560     if search_tag.nil? and (n = search_term.index(":"))
561       search_tag = search_term[n+1..-1]
562       search_term = search_term[0..n-1]
563     end
564
565     # Find Collections with matching Docker image repository+tag pairs.
566     matches = base_search.
567       where(link_class: "docker_image_repo+tag",
568             name: "#{search_term}:#{search_tag || 'latest'}")
569
570     # If that didn't work, find Collections with matching Docker image hashes.
571     if matches.empty?
572       matches = base_search.
573         where("link_class = ? and links.name LIKE ?",
574               "docker_image_hash", "#{search_term}%")
575     end
576
577     # Generate an order key for each result.  We want to order the results
578     # so that anything with an image timestamp is considered more recent than
579     # anything without; then we use the link's created_at as a tiebreaker.
580     uuid_timestamps = {}
581     matches.each do |link|
582       uuid_timestamps[link.head_uuid] = [(-link.properties["image_timestamp"].to_datetime.to_i rescue 0),
583        -link.created_at.to_i]
584      end
585
586     sorted = Collection.where('uuid in (?)', uuid_timestamps.keys).sort_by { |c|
587       uuid_timestamps[c.uuid]
588     }
589     compatible = get_compatible_images(readers, pattern, sorted)
590     if sorted.length > 0 and compatible.empty?
591       raise ArvadosModel::UnresolvableContainerError.new "Matching Docker image is incompatible with 'docker_image_formats' configuration."
592     end
593     compatible
594   end
595
596   def self.for_latest_docker_image(search_term, search_tag=nil, readers=nil)
597     find_all_for_docker_image(search_term, search_tag, readers).first
598   end
599
600   def self.searchable_columns operator
601     super - ["manifest_text"]
602   end
603
604   def self.full_text_searchable_columns
605     super - ["manifest_text", "storage_classes_desired", "storage_classes_confirmed", "current_version_uuid"]
606   end
607
608   protected
609
610   # Although the defaults for these columns is already set up on the schema,
611   # collection creation from an API client seems to ignore them, making the
612   # validation on empty desired storage classes return an error.
613   def default_storage_classes
614     if self.storage_classes_desired.nil? || self.storage_classes_desired.empty?
615       self.storage_classes_desired = Rails.configuration.DefaultStorageClasses
616     end
617     self.storage_classes_confirmed ||= []
618   end
619
620   # Sets managed properties at creation time
621   def managed_properties
622     managed_props = Rails.configuration.Collections.ManagedProperties.with_indifferent_access
623     if managed_props.empty?
624       return
625     end
626     (managed_props.keys - self.properties.keys).each do |key|
627       if managed_props[key]['Function'] == 'original_owner'
628         self.properties[key] = self.user_owner_uuid
629       elsif managed_props[key]['Value']
630         self.properties[key] = managed_props[key]['Value']
631       else
632         logger.warn "Unidentified default property definition '#{key}': #{managed_props[key].inspect}"
633       end
634     end
635   end
636
637   def portable_manifest_text
638     self.class.munge_manifest_locators(manifest_text) do |match|
639       if match[2] # size
640         match[1] + match[2]
641       else
642         match[1]
643       end
644     end
645   end
646
647   def compute_pdh
648     portable_manifest = portable_manifest_text
649     (Digest::MD5.hexdigest(portable_manifest) +
650      '+' +
651      portable_manifest.bytesize.to_s)
652   end
653
654   def computed_pdh
655     if @computed_pdh_for_manifest_text == manifest_text
656       return @computed_pdh
657     end
658     @computed_pdh = compute_pdh
659     @computed_pdh_for_manifest_text = manifest_text.dup
660     @computed_pdh
661   end
662
663   def ensure_permission_to_save
664     if (not current_user.andand.is_admin)
665       if (replication_confirmed_at_changed? or replication_confirmed_changed?) and
666         not (replication_confirmed_at.nil? and replication_confirmed.nil?)
667         raise ArvadosModel::PermissionDeniedError.new("replication_confirmed and replication_confirmed_at attributes cannot be changed, except by setting both to nil")
668       end
669       if (storage_classes_confirmed_changed? or storage_classes_confirmed_at_changed?) and
670         not (storage_classes_confirmed == [] and storage_classes_confirmed_at.nil?)
671         raise ArvadosModel::PermissionDeniedError.new("storage_classes_confirmed and storage_classes_confirmed_at attributes cannot be changed, except by setting them to [] and nil respectively")
672       end
673     end
674     super
675   end
676
677   def ensure_storage_classes_desired_is_not_empty
678     if self.storage_classes_desired.empty?
679       raise ArvadosModel::InvalidStateTransitionError.new("storage_classes_desired shouldn't be empty")
680     end
681   end
682
683   def ensure_storage_classes_contain_non_empty_strings
684     (self.storage_classes_desired + self.storage_classes_confirmed).each do |c|
685       if !c.is_a?(String) || c == ''
686         raise ArvadosModel::InvalidStateTransitionError.new("storage classes should only be non-empty strings")
687       end
688     end
689   end
690
691   def past_versions_cannot_be_updated
692     if is_past_version?
693       errors.add(:base, "past versions cannot be updated")
694       false
695     end
696   end
697
698   def protected_managed_properties_updates
699     managed_properties = Rails.configuration.Collections.ManagedProperties.with_indifferent_access
700     if managed_properties.empty? || !properties_changed? || current_user.is_admin
701       return true
702     end
703     protected_props = managed_properties.keys.select do |p|
704       Rails.configuration.Collections.ManagedProperties[p]['Protected']
705     end
706     # Pre-existent protected properties can't be updated
707     invalid_updates = properties_was.keys.select{|p| properties_was[p] != properties[p]} & protected_props
708     if !invalid_updates.empty?
709       invalid_updates.each do |p|
710         errors.add("protected property cannot be updated:", p)
711       end
712       raise PermissionDeniedError.new
713     end
714     true
715   end
716
717   def versioning_metadata_updates
718     valid = true
719     if !is_past_version? && current_version_uuid_changed?
720       errors.add(:current_version_uuid, "cannot be updated")
721       valid = false
722     end
723     if version_changed?
724       errors.add(:version, "cannot be updated")
725       valid = false
726     end
727     valid
728   end
729
730   def assign_uuid
731     super
732     self.current_version_uuid ||= self.uuid
733     true
734   end
735
736   def log_update
737     super unless (saved_changes.keys - UNLOGGED_CHANGES).empty?
738   end
739 end