Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to build "groups" that users can join, The flow of steps and things needed is in my head but the code to build this lacks some bit since I'm still learning rails. I would like to ask some advice on your ideas best practice of what would be needed to accomplish below:

  • You can create a group with a name 'test'
  • You automatically join the group test, other users can join to
  • If want to see a list of the users joined my group 'test'

Im thinking of creating a model sessions like groups|name| But then how could I store the multiple users that are in this session? Should I make an array of the user_id's for example and make an extra column like groups|name|user_ids ?

What would be best practice and what rails (3) methods could I use to get a very rough version of the above functionality up and running ?

share|improve this question
Do you want to achieve the above with devise or custom authentication (your own session handling...)? The purpose of sessions though is to be a unique means of identifying users, aren't you better off managing/tracking such via a user role. – Michael de Silva Sep 30 '11 at 12:01
Maybe the terms "sessions" is a bit causing for confusing, this is not about authenticating users or logging them in, I use devise for that already, these are "sessions" separated from devise, a better name for sessions instead would be "Group" I edited above post to change that since it causes for confusion – Rubytastic Sep 30 '11 at 13:36
So the question would change to: How to know which users of a group are currently active? To know which users belong_to a group is easy ... – mliebelt Sep 30 '11 at 13:53

1 Answer

up vote 2 down vote accepted

From what I understand this is a many to many relationship. So you would have 3 models :

class User < AR
  has_many :memberships
  has_many :groups, :through => :memberships
end

class Membership < AR
  belongs_to :user
  belongs_to :group
end

class Group < AR
  has_many :memberships
  has_many :users, :through => :memberships
end

and to know what users belong to a group :

@group = Group.find_by_name("test")
@users_group = @group.users

Update

to ensure the user creating the group also belongs to it :

# in group_controller.rb
def create
  @group = Group.new(params[:group])
  @goup.users << current_user

  if @group.save
    #etc ...
  end
end

of course the current_user should exist/be logged in with the usual before filter (authentcate! with if I remember correctly with devise)

share|improve this answer
Thanks this indeed seems like a reasonable solution and I have thought to complex. I try this out as im still learning rails. What If I wanted to know also who "initiated" the group. I forgot to mention that in the openingspost, 1 user can create this group and other can join but then I would need to know this 1 user that started the group. – Rubytastic Oct 2 '11 at 12:12
Hi I updated the answer. That is one way to do it. you can also pass the current user id in the params[:group] as a hidden field and create a virtual attribute that sets the association correctly. Watch ryan bates railscasts they'll teach a huge lot... – charlysisto Oct 3 '11 at 6:52
Working on this though Im confused over the columns each table should hold to make this work participants table has |id|created_at|updated_at currently wich can't be right – Rubytastic Oct 6 '11 at 13:12
participants table needs a user_id and a group_id to join users and groups. – charlysisto Oct 6 '11 at 13:45
Figured it out myself already thanks, Im going to search for some more to more relationship info/screencast to better understand the way it works coming from a php world rails is still new to me. – Rubytastic Oct 6 '11 at 15:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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