我需要权威人士中的范围继承之类的东西。想象一下这个场景:
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