vote up 5 vote down star
2

What is the simplest way to identify and separate GET and POST parameters from a controller in Ruby on Rails, which will be equivalent to $_GET and $_POST variables in PHP?

flag
I think the question is more 'given a request which has both POST data, and a query string' (which is entirely likely), how can you tell which parameters came from where? - Is this right? – Orion Edwards Oct 1 '08 at 1:04

5 Answers

vote up 8 vote down check

You can use the get? and post? methods to distinguish between HTTP Gets and Posts.

link|flag
The same link details how to get the parameters. That is what he is after. – Till Sep 30 '08 at 12:21
vote up 0 vote down

I think what you want to do isn't very "Rails", if you know what I mean. Your GET requests should be idempotent - you should be able to issue the same GET request many times and get the same result each time.

link|flag
That's not just a Rails thing - all well-behaved web applications should do that. – John Topley Sep 30 '08 at 11:14
vote up 3 vote down

I don't know of any convenience methods in Rails for this, but you can access the querystring directly to parse out parameters that are set there. Something like the following:

request.query_string.split(/&/).inject({}) do |hash, setting|
  key, val = setting.split(/=/)
  hash[key.to_sym] = val
  hash
end
link|flag
Wow, why the downvotes? This answer solves the stated problem (unlike most of the other). – Ben Scofield Oct 1 '08 at 16:44
This is over the top; get?, post? or even request_method are much better options for determining the request type. – MatthewFord Oct 2 '08 at 23:42
but... the question wasn't to determine the request type, and that isn't even close to what this code does. As I understood the question, it was (paraphrasing) "how do I retrieve parameters from get and post separately?" Guess I'm just way off the mark with my reading comprehension... – Ben Scofield Oct 3 '08 at 12:09
vote up 4 vote down

If you want to check the type of request in order to prevent doing anything when the wrong method is used, be aware that you can also specify it in your routes.rb file:

map.connect '/posts/:post_id', :controller => 'posts', :action => 'update', :conditions => {:method => :post}

or

map.resources :posts, :conditions => {:method => :post}

Your PostsController's update method will now only be called when you effectively had a post. Check out the doc for resources.

link|flag
You can also use :verify :method => :post etc. in a before filter. Won't your second example break the index, new, edit, update, show & destroy actions in a RESTful controller? – John Topley Sep 30 '08 at 12:51
I think you're right. I went from memory ;-) – webmat Sep 30 '08 at 15:20
vote up 2 vote down

You don't need to know that level of detail in the controller. Your routes and forms will cause appropriate items to be added to the params hash. Then in the controller you just access say params[:foo] to get the foo parameter and do whatever you need to with it.

The mapping between GET and POST (and PUT and DELETE) and controller actions is set up in config/routes.rb in most modern Rails code.

link|flag

Your Answer

Get an OpenID
or

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