I have a Friend model:

user_id, friend_id, status (approved, pending, ignored)

Given a user currently logged in, I want to be able to do something like

current_user.friendship_exists(@user)

Something to tell if a friendship exists for a logged in user looking at another user. To prevent either user from seeing "add friend" again when the record already exists.

Ideally I could show the user who created the friendship "Friend Request Sent"

And the user who needs to take action "respond to friendship request" where I can then so a approve & reject option.

Ideas on how I can do this? Show a button for either

  • "Add Friend"
  • "Friend Request Sent"
  • "Respond to Friend Request"
link|improve this question

70% accept rate
feedback

1 Answer

If you're just looking for the friendship_exists method, this is already built into Rails (assuming your User model has many friends):

current_user.friends.exists?(@user)
link|improve this answer
But which column is this checking, user_id or friend_id it's possible it could be in either. ANy thoughts on how to generate the 3 buttons? – AnApprentice Dec 14 '11 at 0:45
It shouldn't matter which column it's checking since the exists? method will just check the friend objects and see if they match @user. As far as the buttons go, what sort of advice are you looking for? Your question was a little vague in that area. – Beerlington Dec 14 '11 at 4:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.