Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails 3 get request referrer

I'm using Rails 3.0.9, Ruby 1.9.2, Devise 1.3.4 and has a need in Devise session new view to access the request url parameters although I see this as a general Rails request handling question. Essentially, a request is made to a Devise authenticated resource which redirects the user to the login screen. In the login view, I need access to the request url, eg, this is the request url called in the beginning

http://mysite.com/article/5?type=blah 

In the redirect login page, I need access to that URL, anyone know how I can do this?

like image 802
Johnny Klassy Avatar asked Nov 09 '11 21:11

Johnny Klassy


2 Answers

You can use request.referer or request.env['HTTP_REFERER'] in your controller to get the referer url.

like image 144
topek Avatar answered Sep 20 '22 07:09

topek


I have just found out that WEBrick handles request.referrer incorrectly. But don't worry. Unicorn handles it right. I did't test that on other servers. You should check this with yours. I don't think that you use WEBrick as a production server.

like image 21
dRwg Avatar answered Sep 19 '22 07:09

dRwg