I have an app where visitors can see offers in their cities. So a
visitor
must select his city first in order to access the app (much like
Groupon,
using just a cookie though).
How should I approach this? I mean,right now what I’m doing is I have
the
action for the homepage (which lists all offers) and a before_filter
applied to it, which redirects the user if no cookie is found. Is this
the
right way though?
I have an app where visitors can see offers in their cities. So a visitor must
select his city first in order to access the app (much like Groupon, using just a
cookie though).
How should I approach this? I mean,right now what I’m doing is I have the action
for the homepage (which lists all offers) and a before_filter applied to it, which
redirects the user if no cookie is found. Is this the right way though?
It would work, but you might look at Maxmind’s geoip lite city
database… if no cookie is found, look them up and try to get close.
Much nicer experience to say guess their city with a little link to let
them change it if you guessed wrong…
I have an app where visitors can see offers in their cities. So a visitor
must select his city first in order to access the app (much like Groupon,
using just a cookie though).
How should I approach this? I mean,right now what I’m doing is I have the
action for the homepage (which lists all offers) and a before_filter applied
to it, which redirects the user if no cookie is found. Is this the right way
though?
I would do it using the session rather than a cookie (though the same
thing underneath of course, but more railsey).
On Monday, March 19, 2012 6:30:35 PM UTC+2, Colin L. wrote:
applied
to it, which redirects the user if no cookie is found. Is this the right
way
though?
I would do it using the session rather than a cookie (though the same
thing underneath of course, but more railsey).
Colin
I’m using the cookie rather than session since a user that will set his
city for the first time, is unlikely to “change a city”. So I suppose
that
the visitor will always be interested in his City’s offers (well at
least
until the cookie expires), that’s why I wanted to persist this
information.
That way, since I don’t have any authentication system, the site always
remembers the device’s location so the user doesn’t have to choose the
city
everytime he closes the browser.
What do you think about that?
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.