Problem with blocking the user

9 views
Skip to first unread message

Tushar Gandhi

unread,
Jun 28, 2012, 3:35:27 AM6/28/12
to rubyonra...@googlegroups.com
Hi,
I have a problem with blocking user as follows:-

We have a Admin Panel from where Admin can block the user which is
working fine.
Suppose the user "te...@abc.com" is login and he is doing spam on our
site. Then Admin has decided to block that user. Admin blocks that user
but the user hasn't logged out yet due to that he still can do Spam the
site.

How can I fix this? I do not want to add any filter for each request.

Is it possible to get the session of that spam user and then reset that?

Thanks

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

aash dhariya

unread,
Jun 28, 2012, 4:09:25 AM6/28/12
to rubyonra...@googlegroups.com
I don't know if this is the correct way to do but you can add an "is_blocked" field in the user table whose default value is false. Then you can add a before_filter in the controller which validates the above field.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonra...@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en-US.




--
Thanks, 
Aash

Tushar Gandhi

unread,
Jun 28, 2012, 5:04:39 AM6/28/12
to rubyonra...@googlegroups.com
I do not want to use the filter. It will become an overhead for each and
every request. Is there any other way?


aash dhariya wrote in post #1066492:
> I don't know if this is the correct way to do but you can add an
> "is_blocked" field in the user table whose default value is false. Then
> you
> can add a before_filter in the controller which validates the above
> field.
>
> On Thu, Jun 28, 2012 at 1:05 PM, Tushar Gandhi <li...@ruby-forum.com>
> wrote:
>
>> How can I fix this? I do not want to add any filter for each request.
>> "Ruby on Rails: Talk" group.
>> To post to this group, send email to rubyonra...@googlegroups.com.
>> To unsubscribe from this group, send email to
>> rubyonrails-ta...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/rubyonrails-talk?hl=en-US.
>>
>>
>
>
> --
> Thanks,
> Aash

aash dhariya

unread,
Jun 28, 2012, 5:11:42 AM6/28/12
to rubyonra...@googlegroups.com
What is current method you use to block the user?

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.

To post to this group, send email to rubyonra...@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en-US.




--
Thanks, 
Aash

Colin Law

unread,
Jun 28, 2012, 5:54:16 AM6/28/12
to rubyonra...@googlegroups.com
On 28 June 2012 08:35, Tushar Gandhi <li...@ruby-forum.com> wrote:
> Hi,
> I have a problem with blocking user as follows:-
>
> We have a Admin Panel from where Admin can block the user which is
> working fine.
> Suppose the user "te...@abc.com" is login and he is doing spam on our
> site. Then Admin has decided to block that user. Admin blocks that user
> but the user hasn't logged out yet due to that he still can do Spam the
> site.
>
> How can I fix this? I do not want to add any filter for each request.

Why don't you want to do the test in a filter? Presumably you are
already running a before_filter to check that the user is logged in,
just put the check in there. The overheads will be trivial. If you
are seriously worried about the overheads then just do the test on
actions that matter, such as sending the spam.

Colin

Phillip

unread,
Jun 28, 2012, 8:08:22 AM6/28/12
to rubyonra...@googlegroups.com
Set 'session[:blocked]' when they make their next post.

Alex

unread,
Jun 28, 2012, 2:31:33 PM6/28/12
to rubyonra...@googlegroups.com
I'm not sure how your sessions are set up, but if done correctly you should be able to destroy the session (thus forcing the user to re-log in on next action). Given that their account has been disabled, the next login should also fail. 

Colin Law

unread,
Jun 28, 2012, 3:20:05 PM6/28/12
to rubyonra...@googlegroups.com
On 28 June 2012 19:31, Alex <al...@alexblom.com> wrote:
> I'm not sure how your sessions are set up, but if done correctly you should
> be able to destroy the session (thus forcing the user to re-log in on next
> action). Given that their account has been disabled, the next login should
> also fail.

The OP's problem is that he wants to destroy the session from the
admin operation rather than from an action invoked by the user who's
session it is.

Colin

>
>
> On Thursday, 28 June 2012 03:35:27 UTC-4, Ruby-Forum.com User wrote:
>>
>> Hi,
>> I have a problem with blocking user as follows:-
>>
>> We have a Admin Panel from where Admin can block the user which is
>> working fine.
>> Suppose the user "te...@abc.com" is login and he is doing spam on our
>> site. Then Admin has decided to block that user. Admin blocks that user
>> but the user hasn't logged out yet due to that he still can do Spam the
>> site.
>>
>> How can I fix this? I do not want to add any filter for each request.
>>
>> Is it possible to get the session of that spam user and then reset that?
>>
>> Thanks
>>
>> --
>> Posted via http://www.ruby-forum.com/.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Ruby on Rails: Talk" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/rubyonrails-talk/-/nRADAOT59L4J.
Reply all
Reply to author
Forward
0 new messages