我需要像专家那样的范围继承。想象一下这个场景:
class ApplicationPolicy
class Scope
attr_reader :user, :scope
def initialize(user, scope)
@user = user
@scope = scope
end
def resolve
scope.where(:company => user.companies)
end
end
end
现在,从ApplicationPolicy
继承的任何政策都有一个范围,我可以通过policy_scope
使用它。这很好,因为我有几个模型belongs_to :company
具有完全相同的范围规则。
但是,如果我需要另一个范围用于另一个政策怎么办?确定:
class DeviceGroupPolicy < ApplicationPolicy
class Scope
attr_reader :user, :scope
def initialize(user, scope)
@user = user
@scope = scope
end
def resolve
scope.joins(:devices).where("devices.company_id in (?)", user.companies.map{|c| c.id}).group("device_groups.title")
end
end
end
请注意,此Scope
类的唯一区别在于resolve
方法。
如何在不复制粘贴此样板代码的情况下在其他策略中重用Scope
中的相同ApplicationPolicy
类?
答案 0 :(得分:0)
你可以这样做:
class DeviceGroupPolicy < ApplicationPolicy
class Scope < Scope
def resolve
scope.joins(:devices).where("devices.company_id in (?)", user.companies.map{|c| c.id}).group("device_groups.title")
end
end
end
根据documentation(第二个代码片段),您也可以继承子类。