Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Invoke block in current binding?

0 views
Skip to first unread message

Kip Cole

unread,
Jul 26, 2008, 7:43:08 PM7/26/08
to
I have a design pattern (Rails app, using RestfulAuthentication plugin
with modifications) that wants to have a method that will temporarily
elevate user privileges like so:

def sudo
saved_current_user = current_user
current_user = admin_user
yield
current_user = saved_current_user
end

And in a method, invoke it with

sudo do
puts "Something done as admin user"
end

However I know this doesn't work because at the time the block is
passed, the binding is fixed to the defining context.

So the question is: what is the right way to achieve the desired result.
Where the desired result is to pass a block to a method to be executed
in a different context, without the caller having to know any of the
implementation details.

Thanks for any help,

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

Joel VanderWerf

unread,
Jul 27, 2008, 3:19:15 PM7/27/08
to
Kip Cole wrote:
> So the question is: what is the right way to achieve the desired result.
> Where the desired result is to pass a block to a method to be executed
> in a different context, without the caller having to know any of the
> implementation details.

What about this?

Context = Struct.new :user

def sudo
context = Context.new
context.user = "admin_user"
yield context
end

outer_context = Context.new
outer_context.user = "normal_user"
puts "I am #{outer_context.user}"

sudo do |context|
puts "I am #{context.user}"
end

--
vjoel : Joel VanderWerf : path berkeley edu : 510 665 3407

Kip Cole

unread,
Jul 28, 2008, 4:58:46 PM7/28/08
to
Joel, thanks very much, much appreciated.

--Kip

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

0 new messages