I have a multi-language website and I'm puting the language in the URL like domain.com/en/. When the user doesn't put the language in the URL I want to redirect him to the page in the main language like "domain.com/posts" to "domain.com/en/posts". Is there an easy way to do this with Sinatra?

I have more than one hundred routes. So doing this for every route is not a very good option.

get "/:locale/posts" do... end

get "/posts" do... end

Can someone help me?

Thanks

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

Use a before filter, somewhat like this:

set :locales, %w[en sv de]
set :default_locale, 'en'
set :locale_pattern, /^\/?(#{Regexp.union(settings.locals)})(\/.+)$/

helpers do
  def locale
    @locale || settings.default_locale
  end
end

before do
  @locale, request.path_info = $1, $2 if request.path_info =~ settings.locale_pattern
end

get '/example' do
  case locale
  when 'en' then 'Hello my friend!'
  when 'de' then 'Hallo mein Freund!'
  when 'sv' then 'Hallå min vän!'
  else '???'
  end
end

With the upcoming release of Sinatra, you will be able to do this:

before('/:locale/*') { |params| @locale = params[:locale] }
link|improve this answer
thanks it worked perfectly – basex Jun 26 '10 at 15:21
@Konstantin: is there a way to make it work for root urls? (ex: / and /en/) – David Jan 12 at 14:09
maybe with "get '/?:locale?/' do" ? but that way it is giving always the default locale, and I have to hack it a little to behave like the other routes. is there any good practice about this? – David Jan 12 at 17:55
feedback

Your Answer

 
or
required, but never shown

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