Implement Message console

0 views
Skip to first unread message

Rails junkie

unread,
Feb 25, 2007, 12:23:41 PM2/25/07
to Ruby on Rails: Talk
What would be the best way to implement Message console in RoR?
What I am trying to accomplish is to broadcast all the events for user
activity for a session in a comsole DIV.
e.g. If usr deleted something, it would show up 'You deleted this' ,
if they added something, it will show up as 'You added this' . This
don't need to persist after user logs off but i do want to persisit
it for admin
Because I would want admin to monitor those messages and keep an eye
on what's going into the system.
for admin , mesasge would show up as 'User A deleted this , 'User A
added that'

Also i want to use the same message console window to capture admin
notifications/announcements. e.g. If admin want to announce a meeting,
it should show up in mesage console of the user.

Now If the user wasnt logged on when it was announced, user show see
the mesasage when they log in.

Any suggestios?

Alex Wayne

unread,
Feb 25, 2007, 9:32:00 PM2/25/07
to rubyonra...@googlegroups.com

I would create a Log model. Then use callbacks in the models, like
after_create, after_update and after_destroy to create records.

class Foo < ActiveRecord::Base
after_create :log_creation

def log_creation
Log.create(
:message => "a new #{self.class} with id of #{id} was created",
:other_attr => '...'
)
end
end

--
Posted via http://www.ruby-forum.com/.

Rails junkie

unread,
Mar 2, 2007, 1:03:08 AM3/2/07
to Ruby on Rails: Talk
Thanks for taking time to reply.
I think i took the right direction.

On Feb 25, 6:32 pm, Alex Wayne <rails-mailing-l...@andreas-s.net>
wrote:
> Rails junkie wrote:
> > What would be the best way to implement Messageconsolein RoR?
> > What I am trying to accomplish is tobroadcastall the events for user


> > activity for a session in a comsole DIV.
> > e.g. If usr deleted something, it would show up 'You deleted this' ,
> > if they added something, it will show up as 'You added this' . This
> > don't need to persist after user logs off but i do want to persisit
> > it for admin
> > Because I would want admin to monitor those messages and keep an eye
> > on what's going into the system.
> > for admin , mesasge would show up as 'User A deleted this , 'User A
> > added that'
>

> > Also i want to use the same messageconsolewindow to capture admin


> > notifications/announcements. e.g. If admin want to announce a meeting,

> > it should show up in mesageconsoleof the user.


>
> > Now If the user wasnt logged on when it was announced, user show see
> > the mesasage when they log in.
>
> > Any suggestios?
>
> I would create a Log model. Then use callbacks in the models, like
> after_create, after_update and after_destroy to create records.
>
> class Foo < ActiveRecord::Base
> after_create :log_creation
>
> def log_creation
> Log.create(
> :message => "a new #{self.class} with id of #{id} was created",
> :other_attr => '...'
> )
> end
> end
>
> --

> Posted viahttp://www.ruby-forum.com/.- Hide quoted text -
>
> - Show quoted text -

Reply all
Reply to author
Forward
0 new messages