X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a31587cba5c2c38e0fc4f91981baf8bf2605664c..1f82ade9be8494e114156210d600a9624262ddba:/services/api/app/models/link.rb diff --git a/services/api/app/models/link.rb b/services/api/app/models/link.rb index bf21cf4b67..21d89767c7 100644 --- a/services/api/app/models/link.rb +++ b/services/api/app/models/link.rb @@ -6,13 +6,18 @@ class Link < ArvadosModel include HasUuid include KindAndEtag include CommonApiTemplate - serialize :properties, Hash + + # Posgresql JSONB columns should NOT be declared as serialized, Rails 5 + # already know how to properly treat them. + attribute :properties, :jsonbHash, default: {} + + validate :name_links_are_obsolete before_create :permission_to_attach_to_objects before_update :permission_to_attach_to_objects - after_update :maybe_invalidate_permissions_cache - after_create :maybe_invalidate_permissions_cache - after_destroy :maybe_invalidate_permissions_cache - validate :name_links_are_obsolete + after_update :call_update_permissions + after_create :call_update_permissions + before_destroy :clear_permissions + after_destroy :check_permissions api_accessible :user, extend: :common do |t| t.add :tail_uuid @@ -60,15 +65,28 @@ class Link < ArvadosModel false end - def maybe_invalidate_permissions_cache + PERM_LEVEL = { + 'can_read' => 1, + 'can_login' => 1, + 'can_write' => 2, + 'can_manage' => 3, + } + + def call_update_permissions + if self.link_class == 'permission' + update_permissions tail_uuid, head_uuid, PERM_LEVEL[name], self.uuid + end + end + + def clear_permissions if self.link_class == 'permission' - # Clearing the entire permissions cache can generate many - # unnecessary queries if many active users are not affected by - # this change. In such cases it would be better to search cached - # permissions for head_uuid and tail_uuid, and invalidate the - # cache for only those users. (This would require a browseable - # cache.) - User.invalidate_permissions_cache db_current_time.to_i + update_permissions tail_uuid, head_uuid, REVOKE_PERM, self.uuid + end + end + + def check_permissions + if self.link_class == 'permission' + check_permissions_against_full_refresh end end @@ -98,5 +116,4 @@ class Link < ArvadosModel super end end - end