X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f8743ac8fa1ed9dc8c7c4f7a23803ffe8721cfa6..HEAD:/services/api/lib/has_uuid.rb diff --git a/services/api/lib/has_uuid.rb b/services/api/lib/has_uuid.rb index 3bd330edca..217113beec 100644 --- a/services/api/lib/has_uuid.rb +++ b/services/api/lib/has_uuid.rb @@ -1,11 +1,28 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + module HasUuid + UUID_REGEX = /^[0-9a-z]{5}-([0-9a-z]{5})-[0-9a-z]{15}$/ + def self.included(base) base.extend(ClassMethods) + base.validate :validate_uuid base.before_create :assign_uuid base.before_destroy :destroy_permission_links - base.has_many :links_via_head, class_name: 'Link', foreign_key: :head_uuid, primary_key: :uuid, conditions: "not (link_class = 'permission')", dependent: :restrict - base.has_many :links_via_tail, class_name: 'Link', foreign_key: :tail_uuid, primary_key: :uuid, conditions: "not (link_class = 'permission')", dependent: :restrict + base.has_many(:links_via_head, + -> { where("not (link_class = 'permission')") }, + class_name: 'Link', + foreign_key: 'head_uuid', + primary_key: 'uuid', + dependent: :destroy) + base.has_many(:links_via_tail, + -> { where("not (link_class = 'permission')") }, + class_name: 'Link', + foreign_key: 'tail_uuid', + primary_key: 'uuid', + dependent: :destroy) end module ClassMethods @@ -13,7 +30,7 @@ module HasUuid Digest::MD5.hexdigest(self.to_s).to_i(16).to_s(36)[-5..-1] end def generate_uuid - [Server::Application.config.uuid_prefix, + [Rails.configuration.ClusterID, self.uuid_prefix, rand(2**256).to_s(36)[-15..-1]]. join '-' @@ -26,17 +43,44 @@ module HasUuid self.respond_to? :uuid end - def assign_uuid - return true if !self.respond_to_uuid? - if (uuid.is_a?(String) and uuid.length>0 and - current_user and current_user.is_admin) + def validate_uuid + if self.respond_to_uuid? and self.uuid_changed? + if current_user.andand.is_admin and self.uuid.is_a?(String) + if (re = self.uuid.match HasUuid::UUID_REGEX) + if re[1] == self.class.uuid_prefix + return true + else + self.errors.add(:uuid, "type field is '#{re[1]}', expected '#{self.class.uuid_prefix}'") + return false + end + else + self.errors.add(:uuid, "not a valid Arvados uuid '#{self.uuid}'") + return false + end + else + if self.new_record? + self.errors.add(:uuid, "assignment not permitted") + else + self.errors.add(:uuid, "change not permitted") + end + return false + end + else return true end - self.uuid = self.class.generate_uuid + end + + def assign_uuid + if self.respond_to_uuid? and self.uuid.nil? or self.uuid.empty? + self.uuid = self.class.generate_uuid + end + true end def destroy_permission_links - Link.destroy_all(['link_class=? and (head_uuid=? or tail_uuid=?)', - 'permission', uuid, uuid]) + if uuid + Link.where(['link_class=? and (head_uuid=? or tail_uuid=?)', + 'permission', uuid, uuid]).destroy_all + end end end