gpt4 book ai didi

ruby-on-rails - Notifications ala Facebook(数据库实现)

转载 作者:太空狗 更新时间:2023-10-30 01:55:35 25 4
gpt4 key购买 nike

我想知道 Facebook 如何实现他们的通知系统,因为我正在寻找类似的东西。

  • FooBar 评论了您的状态
  • 红 1、绿 2 和蓝 3 对您的照片发表了评论
  • 洛克人和其他 5 人对您的事件发表了评论

我不能将多个通知写入单个记录,因为最终我会有与每个通知关联的操作。此外,在 View 中,当单个主题存在一定数量的通知时,我希望将通知呈现为可扩展列表。

  • FooBar 评论了您的状态(操作)
  • Red1、Green2 和 Pink5 对您的照片发表了评论 [+]
  • MegaMan 和其他 3 人对您的事件发表了评论 [-]
    • MegaMan 评论了您的事件(操作)
    • ProtoMan 评论了您的事件(操作)
    • Bass 评论了您的事件(操作)
    • DrWilly 评论了您的事件(操作)

干杯!

PS 我正在使用 postgres 和 rails BTW。

最佳答案

有多种方法可以实现这一点。这实际上取决于您要涵盖的通知类型以及您需要收集有关通知的哪些信息以将其显示给正确的用户。如果您正在寻找一个简单的设计,只包含有关已发表评论的通知,您可以使用 polymorphic associations 的组合。和 observer callbacks :

class Photo < ActiveRecord::Base
# or Status or Event
has_many :comments, :as => :commentable
end

class Comment < ActiveRecord::Base
belongs_to :commenter
belongs_to :commentable, :polymorphic => true # the photo, status or event
end

class CommentNotification < ActiveRecord::Base
belongs_to :comment
belongs_to :target_user
end

class CommentObserver < ActiveRecord::Observer
observe :comment

def after_create(comment)
...
CommentNotification.create!(comment_id: comment.id,
target_user_id: comment.commentable.owner.id)
...
end
end

这里发生的事情是每张照片、状态、事件等都有很多评论。 Comment 显然属于 :commenter,但也属于 :commentable,它可以是照片、状态、事件或任何其他模型你想允许评论。然后,您将拥有一个 CommentObserver,它将观察您的 Comment 模型,并在 Comment 表发生任何事情时执行某些操作。在这种情况下,在创建一个 Comment 之后,观察者将创建一个 CommentNotification,其中包含评论的 id 和拥有该评论的用户的 id关于 (comment.commentable.owner.id)。这将要求您为每个想要评论的模型实现一个简单的方法 :owner。因此,例如,如果可评论的是一张照片,则所有者就是发布照片的用户。

这个基本设计应该足以让您入门,但请注意,如果您想为评论以外的内容创建通知,您可以通过在更通用的 Notification 中使用多态关联来扩展此设计> 模型。

class Notification < ActiveRecord::Base
belongs_to :notifiable, :polymorphic => true
belongs_to :target_user
end

通过这种设计,您将“观察”所有notifiables(您要为其创建通知的模型)并在after_create 回调中执行类似以下操作:

class GenericObserver < ActiveRecord::Observer
observe :comment, :like, :wall_post

def after_create(notifiable)
...
Notification.create!(notifiable_id: notifiable.id,
notifiable_type: notifiable.class.name,
target_user_id: notifiable.user_to_notify.id)
...
end
end

这里唯一棘手的部分是 user_to_notify 方法。所有 notifiable 的模型都必须根据模型是什么以某种方式实现它。例如,wall_post.user_to_notify 只是墙的所有者,或者 like.user_to_notify 是被“点赞”的事物的所有者。您甚至可以通知多个人,例如当有人对照片发表评论时通知照片中标记的所有人。

希望这对您有所帮助。

关于ruby-on-rails - Notifications ala Facebook(数据库实现),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12596440/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com