0

我的问题

我如何为用户创建一个 default_scope,以便它限制只有那些在 has_many :through 关联的连接表中拥有当前租户的租户用户记录 (tenants_users.tenant_id == Tenant.current_id) 的用户的可见性?我认为这最终是一个语法问题,但它可能比这更深。

我在做什么

我正在使用Multitenancy with Scopes(需要订阅)作为指南来实施多租户。Ryan 使用 default_scope 根据客户端的当前租户限制可用行。他基本上为所有包含租户特定数据的表添加了一个tenant_id 列,然后在每个模型中包含一个 default_scope:

default_scope { where(tenant_id: Tenant.current_id) }

[Tenant.current_id (a cattr_accessor) 在用户登录时设置(Tenant.current_id = 用户选择的租户的tenant_id)。]

这对我很有用,除了我想要用户和租户的多对多关系(而不是 Railscast 假设的多用户对一租户):一个租户可以有多个用户,我想要用户可以访问多个租户。因此,我的用户表上没有一个tenant_id 列,而是有一个tenants_users 连接表,其中每一行都有一个tenant_id 和user_id。

我正在寻找的结果的不同描述

如果我启动 Rails 控制台并设置:

Tenant.current_id = 2

...然后说...

User.all

...我只想查看在tenants_users 表中有一行的用户,例如tenant_id == Tenant.current_id。

如果我说:

User.unscoped.all

然后我想查看所有用户,不管 Tenant.current_id 是什么。

代码

租户.rb

class Tenant < ActiveRecord::Base
  cattr_accessor :current_id
  has_many :users, :through => :tenants_users
  has_many :tenants_users

  def self.current_id=(id)
    Thread.current[:tenant_id] = id
  end

  def self.current_id
    Thread.current[:tenant_id]
  end
end

用户.rb

class User < ActiveRecord::Base
  # This was the default_scope before I moved tenant_id to the tenants_users table
  # default_scope { where(tenant_id: Tenant.current_id) }

  # What should it be now?
  default_scope ???

  has_many :tenants_users
  has_many :tenants, :through => :tenants_users
end

租户_用户.rb

class TenantsUser < ActiveRecord::Base
  belongs_to :tenant
  belongs_to :user
end
4

1 回答 1

0

这基本上加入了tenants_users表格并将条件放在tenant_id属性上:

default_scope { where(tenants_users: {tenant_id: Tenant.current_id}) }
于 2014-03-08T22:43:33.200 回答