我正在开发一个引擎,其中任何模型都可以与 Permit as Permissible 有 has_many 关联:
class Permit < ActiveRecord::Base
belongs_to :permissible, polymorphic: true
end
module Permissible
def self.included(base)
base.class_eval do
has_many :permits, as: :permissible
end
end
class Group < ActiveRecord::Base
include Permissible
end
class GroupAllocation < ActiveRecord::Base
belongs_to :person
belongs_to :group
end
class Person < ActiveRecord::Base
include Permissible
has_many :group_allocations
has_many :groups, through: :group_allocations
end
class User < ActiveRecord::Base
belongs_to :person
end
因此,Group has_many :permits 和 Person has_many :permits。我正在尝试做的是在使用许可关联作为源的用户上动态创建关联,并通过执行相同操作将其他模型上的关联链接到用户。这可以通过以下方式手动完成(在 rails 3.1+ 中):
class Person
has_many :group_permits, through: :person, source: :permits
end
class User
has_many :person_permits, through: :person, source: :permits, class_name: Permit
has_many :person_group_permits, through: :person, source: :group_permits, class_name: Permit
end
然而,在实践中,Permissible 将包含在许多模型中,所以我试图在 User 上编写一个类方法(实际上是在另一个模块中,但不需要更多地混淆事物),它可以遍历 User.reflect_on_all_associations 并创建一个数组新的关联,每个关联可能很深。
寻找有关如何在 rails 3.2.8 中干净地执行此操作的输入。