我是ruby on rails的新手,我对我正在构建的多租户应用程序中最好的下一步工作感到困惑。
基本上我想通过account_id来调整资源的范围,所以我在我的帐户base_controller中创建了一个名为current_account的方法和帮助器。
但是,我正在遵循的教程通过子域限制current_account,我不想这样做。所以我需要一种方法来识别当前用户的account_id,以便我可以拥有一个资源变量@contact = current_account.contacts。“all”。
我是否需要在用户和帐户模型之间建立新关联,以便我可以使用current_user帮助程序来定义当前帐户ID,还是有更好的方法?如果是这样,最好的方法是什么?
背景 注册的第一个用户成为帐户所有者。然后,帐户所有者可以邀请其他用户加入该帐户。我正在使用设计宝石。资源按帐户划定范围,以便只有链接到帐户的用户才能查看属于该帐户的记录。
基本控制器
module Accounts
class BaseController < ApplicationController
def current_account
@current_account ||= ?????
end
helper_method :current_account
def owner?
current_account.owner == current_user
end
helper_method :owner?
end
end
通讯录(我的资源)控制器
module Accounts
class ContactsController < Accounts::BaseController
def index
@contact = current_account.contacts.all
end
end
end
帐户模型
class Account < ActiveRecord::Base
belongs_to :owner, class_name: "User"
accepts_nested_attributes_for :owner
validates :subdomain, presence: true, uniqueness: true
has_many :contacts
has_many :invitations
has_many :memberships
has_many :users, through: :memberships
end
邀请模式
class Invitation < ActiveRecord::Base
belongs_to :account
validates :email, presence: true
end
会员资格模式
class Membership < ActiveRecord::Base
belongs_to :account
belongs_to :user
end
用户模型
class User < ActiveRecord::Base
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
end
路线
Rails.application.routes.draw do
devise_for :users
scope module: "accounts" do
resources 'dashboard'
resources 'contacts'
resources :invitations, only: [:new, :create] do
member do
get :accept
patch :accepted
end
end
resources :users, only: [:index, :destroy]
end
模式
ActiveRecord::Schema.define(version: 20170124002015) do
create_table "accounts", force: true do |t|
t.string "name"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "owner_id"
t.string "subdomain"
end
add_index "accounts", ["subdomain"], name: "index_accounts_on_subdomain"
create_table "contacts", force: true do |t|
t.string "first_name"
t.string "last_name"
t.string "phone"
t.string "email"
t.text "comments"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "account_id"
end
add_index "contacts", ["account_id"], name: "index_contacts_on_account_id"
create_table "invitations", force: true do |t|
t.string "email"
t.integer "account_id"
t.datetime "created_at"
t.datetime "updated_at"
t.string "token"
end
add_index "invitations", ["account_id"], name: "index_invitations_on_account_id"
add_index "invitations", ["token"], name: "index_invitations_on_token"
create_table "memberships", force: true do |t|
t.integer "account_id"
t.integer "user_id"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "memberships", ["account_id"], name: "index_memberships_on_account_id"
add_index "memberships", ["user_id"], name: "index_memberships_on_user_id"
create_table "users", force: true do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.integer "sign_in_count", default: 0, null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "users", ["email"], name: "index_users_on_email", unique: true
add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
end
答案 0 :(得分:0)
用户和帐户之间存在两种可能的关联:
在第一种情况下,无法从current_user设置租户,因为不清楚哪个帐户应该用作当前租户。 schema.rb中的成员资格表表明这是您提到的教程所采用的方法。通过子域加载帐户有助于指定将哪个帐户用作当前租户。
在第二种情况下,每个用户只有一个帐户。用户获得account_id,成员资格表已过时,您可以像这样加载当前租户:
def current_account
@current_account ||= current_user.account
end
我是否需要在用户和帐户模型之间建立新关联 这样我就可以使用current_user帮助器来定义当前的帮助器 帐号ID还是有更好的方法吗?如果是这样,最好的方法是什么 此?
在我看来,您希望采用第二种方法,这需要帐户has_many
用户和用户belongs_to
帐户。