Skip to content

Commit

Permalink
Hide deprecated and duplicate attributes
Browse files Browse the repository at this point in the history
Some virtual_attributes are not needed in reporting nor the api.
Some deprecated attributes should not be advertised for customers to start using.

Now, the attributes are still accessible. So nothing will break. But
these attributes are no longer advertised on the public apis (i.e.: report builder and rest api).

This allows us to control which parts of our models are exposed.

This fixes #18130
This enables #20532
  • Loading branch information
kbrock committed Oct 9, 2020
1 parent aa3b7e8 commit c6cc54d
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 1 deletion.
3 changes: 3 additions & 0 deletions app/models/ext_management_system.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ class ExtManagementSystem < ApplicationRecord
include SupportsFeatureMixin
include ExternalUrlMixin
include VerifyCredentialsMixin
include DeprecationMixin

hide_attribute "aggregate_memory" # better to use total_memory (coin toss - they're similar)

def self.with_tenant(tenant_id)
tenant = Tenant.find(tenant_id)
Expand Down
19 changes: 19 additions & 0 deletions app/models/mixins/deprecation_mixin.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,25 @@
module DeprecationMixin
extend ActiveSupport::Concern

included do
cattr_accessor :hidden_attribute_names
self.hidden_attribute_names = []
end

module ClassMethods
# @param [String|Symbol] attribute name of attribute to be hidden from the api and reporting
# this attribute is accessible to all ruby methods. But it is not advertised.
# we do this when deprecating an attribute or when introducing an internal attribute
def hide_attribute(attribute)
hidden_attribute_names << attribute.to_s
end

# @return Array[String] attribute names that can be advertised in the api and reporting
# Other attributes are accessible, they are just no longer in our public api (or never were)
def visible_attribute_names
attribute_names - hidden_attribute_names
end

private

def deprecate_belongs_to(old_belongs_to, new_belongs_to)
Expand All @@ -18,6 +36,7 @@ def deprecate_belongs_to(old_belongs_to, new_belongs_to)
def deprecate_attribute(old_attribute, new_attribute)
deprecate_attribute_methods(old_attribute, new_attribute)
virtual_attribute(old_attribute, -> { type_for_attribute(new_attribute.to_s) })
hide_attribute(old_attribute)
end

def deprecate_attribute_methods(old_attribute, new_attribute)
Expand Down
2 changes: 1 addition & 1 deletion lib/miq_expression.rb
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ def self.build_relats(model, parent = {}, seen = [])
parent[:class_path] ||= model.name
parent[:assoc_path] ||= model.name
parent[:root] ||= model.name
result = {:columns => model.attribute_names, :parent => parent}
result = {:columns => (model.try(:visible_attribute_names) || model.attribute_names), :parent => parent}
result[:reflections] = {}

model.reflections_with_virtual.each do |assoc, ref|
Expand Down
18 changes: 18 additions & 0 deletions spec/models/mixins/deprecation_mixin_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,22 @@
expect(Host.arel_attribute(:address).name).to eq("hostname") # typically this is a symbol. not perfect but it works
end
end

context "visible_attribute_names" do
let(:klass) do
Class.new(ApplicationRecord) do
include DeprecationMixin
self.table_name = "vms"
end
end

it "shows regular attributes" do
expect(klass.visible_attribute_names).to include("name")
end

it "hides hidden attributes" do
klass.hide_attribute :name
expect(klass.visible_attribute_names).not_to include("name")
end
end
end

0 comments on commit c6cc54d

Please sign in to comment.