Rails线程私有消息

时间:2011-12-06 19:15:54

标签: ruby-on-rails ruby-on-rails-3 inheritance chat messaging

我有以下两种模式:

class Message < ActiveRecord::Base
  belongs_to :to_user, :class_name => 'User'
  belongs_to :from_user, :class_name => 'User'

  has_ancestry #Using the 'ancestry' gem
end

class User < ActiveRecord::Base
  has_many :messages_received, :class_name => 'Message', :foreign_key => 'to_user_id'
  has_many :messages_sent, :class_name => 'Message', :foreign_key => 'from_user_id'
end

允许每个用户与另一个用户进行一次对话,并且所有回复都应该从原始消息进行线程化。

在我的'index'控制器操作中,如何查询已发送的消息和已接收的消息?例如,如果User1命中'/ users / 2 / messages /',他们应该看到user1和user2之间的整个对话(无论谁发送了第一条消息)。我是否需要添加“线程”模型,或者有没有办法用我当前的结构来完成这个?

感谢。

1 个答案:

答案 0 :(得分:16)

您可能最好将此重组为可以加入人员的对话,而不是链中的一系列互连消息。例如:

class Conversation < ActiveRecord::Base
  has_many :messages
  has_many :participants
  has_many :users, :through => :participants
end

class Message < ActiveRecord::Base
  belongs_to :conversation
end

class Participant < ActiveRecord::Base
  belongs_to :conversation
  belongs_to :user
end

class User < ActiveRecord::Base
  has_many :conversations
  has_many :participants
end

当某人发送消息时,请为其创建对话,并通过将其添加到users列表中邀请相关方。

可以通过在Message本身或使用祖先建立父关系来添加线程消息传递,但在实践中,这往往会过度杀死,因为对于大多数人来说,回复的简单时间顺序通常就足够了。

要跟踪读/未读状态,您需要直接在用户和消息之间建立关联表,这可能很棘手,因此除非您需要,否则请避免使用。

请记住,某些名称由Ruby或Rails保留,Thread是其中之一,因此您不能拥有具有该名称的模型。