1
    c = "(f.profile_id = #{self.id} OR f.friend_id = #{self.id})"
    c += AND + "(CASE WHEN f.profile_id=#{self.id} THEN f.friend_id ELSE f.profile_id END = p.id)"
    c += AND + "(CASE WHEN f.profile_id=#{self.id} THEN f.profile_rejected ELSE f.friend_rejected END = 1)"
    c += AND + "(p.banned = 0)"

我需要在这样的 has_many 关系中使用它:

    has_many :removed_friends, :conditions => ???

我如何在那里设置 self.id?,或者我如何在那里传递 id?然后我想使用 will_paginate 插件:

    @profile.removed_friends.paginate(:page => 1, :per_page => 20)

谢谢你的帮助

编辑:

 class Profile < ActiveRecord::Base
    has_many :friendships
    has_many :removed_friends, :class_name => 'Profile', :through => :friendships, :conditions => 
        "(friendships.profile_id = #{self.id} OR friendships.friend_id = #{self.id})"
        "AND (CASE WHEN friendships.profile_id=#{self.id} THEN friendships.profile_rejected ELSE friendships.friend_rejected END = 1)" + 
        "AND (p.banned = 0)"
  end


class Friendship < ActiveRecord::Base
  belongs_to :profile
  belongs_to :removed_friend, :class_name => 'Profile', :foreign_key => "(CASE WHEN friendships.profile_id = #{self.id} THEN friend_id ELSE profile_id END)"
end
4

3 回答 3

3

使用单引号将条件括起来:

class Profile < ActiveRecord::Base
  has_many :friendships
  has_many :removed_friends, :class_name => 'Profile', :through => :friendships, 
                             :conditions => '
    ( friendships.profile_id = #{self.id} OR 
      friendships.friend_id = #{self.id}
    ) AND
    (CASE WHEN friendships.profile_id=#{self.id} 
          THEN friendships.profile_rejected 
          ELSE friendships.friend_rejected 
     END = 1
    ) AND 
    (p.banned = 0)'
end
于 2010-03-30T17:49:40.487 回答
1

您可能希望将其分解为一系列命名范围,这些范围可以分阶段应用,而不是一次全部应用。例如,提取被禁止的部分:

class Friend < ActiveRecord::Base
  named_scope :banned, lambda { |*banned| {
    :conditions => { :banned => banned.empty? ? 1 : (banned.first ? 1 : 0) }
  }}
end

@profile.friends.removed.banned(false).paginate(:page => 1, :per_page => 20)

在人际关系中使用繁重的条件必然会造成麻烦。如果可能,请尝试对表进行非规范化,创建具有“简单”数据版本的派生列,或其他使查询更容易的方法。

于 2010-03-30T17:51:35.877 回答
0

你在这里真的有两个关系。你有:

  • 被拒绝的profile_id友谊
  • 被拒绝的friend_id友谊

我不知道为什么双方都可以拒绝友谊,也许你需要在这里稍微看看你的模型(哪一方在请求它?最好考虑请求者取消请求而不是说它被profile侧面拒绝了?)

无论如何,我会将其建模为两个独立的关系:

class Profile
  has_many :rejected_friendships, :conditions => 'friendships.profile_rejected = 1'
  has_many :canceled_friendships, :foreign_key => 'friend_id', :conditions => 'friendships.friend_rejected = 1'

  named_scope :banned, lambda do |*banned| 
      { :conditions => {:banned => banned.empty? ? 1 : (banned.first ? 1 : 0) } }
  end

  has_many :rejected_friends, :class_name => 'Profile', :through => :rejected_friendships
  has_many :canceled_friends, :class_name => 'Profile', :through => :canceled_friendships

  def removed_friends
    (self.rejected_friends.banned(false).all + self.canceled_friends.banned(false).all).uniq
  end
end

这有点不可取,因为 removed_friends 不再是关系,因此您不能再做类似的事情Profile.removed_friends.find(:all, :conditions => {:name => "bleh"}),但这是一个非常复杂的情况。这个条件相当复杂。

于 2010-03-30T20:04:12.880 回答