タグフィードと友達フィードがあります。これら2つを組み合わせて、究極の「すべて」のフィードを作成したいと思います。
フレンドフィードの場合:
class Post < ActiveRecord::Base
scope :friendfeed, lambda{|x| followed_by}
def self.followed_by(user)
where("user_id IN (?) OR user_id = ?", user.watched_ids, user.id)
end
end
タグフィードの場合:
class Post < ActiveRecord::Base
scope :tagfeed, lambda{|x| infatuated_with}
def self.infatuated_with(user)
joins(:attachments).where("attachments.tag_id IN (?)", user.tags).select("DISTINCT pages.*")
end
end
そして、私はコントローラーからこのようなものを呼び出します(私はページ付けにカミナリの宝石を使用しています):
@tag_feed = Post.tagfeed(current_user).page(params[:page]).per(21)
@friend_feed = Post.friendfeed(current_user).page(params[:page]).per(21)
今はユニバーサルフィードが欲しいのですが、迷ってしまいました。スコープは絞り込むためのものですが、この場合はOR操作を実行しようとしています。のようなことをする
@mother_of_all_feed = @tag_feed + @friend_feed
冗長になり、1ページに表示される投稿の数を制御できなくなります。どうすればこれを行うことができますか?ありがとう!
ちなみに、タグの場合、関連付けは次のように設定されています。
class Post < ActiveRecord::Base
has_many :attachments
has_many :tags, :through => :attachments
end
class Tag < ActiveRecord::Base
has_many :attachments
has_many :posts, :through => :attachments
end
class Attachment < ActiveRecord::Base
belongs_to :tag
belongs_to :post
end