1

我需要权威人士中的范围继承之类的东西。想象一下这个场景:

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

4

1 回答 1

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

根据文档(第二个代码片段),您也可以继承子类。

于 2015-05-08T01:02:55.970 回答