X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/94c89838d4e7f3c767cea5f20709c52e1b8e4816..9126d989c8bccf645846fe51c4d414a44fd0972c:/app/controllers/application.rb diff --git a/app/controllers/application.rb b/app/controllers/application.rb index 6c6ffacb2..6ead2d668 100644 --- a/app/controllers/application.rb +++ b/app/controllers/application.rb @@ -100,6 +100,21 @@ class ApplicationController < ActionController::Base response.headers['Error'] = message render :text => message, :status => status end + + def set_locale + if @user + if !@user.languages.empty? + request.user_preferred_languages = @user.languages + elsif !request.user_preferred_languages.empty? + @user.languages = request.user_preferred_languages + @user.save + end + end + + I18n.locale = request.compatible_language_from(I18n.available_locales) + + response.headers['Content-Language'] = I18n.locale + end def api_call_handle_error begin @@ -113,8 +128,7 @@ class ApplicationController < ActionController::Base ex.record.errors.each { |attr,msg| message << "#{attr}: #{msg} (#{ex.record[attr].inspect})" } report_error message, :bad_request rescue OSM::APIError => ex - render_opts = ex.render_opts - report_error render_opts[:text], render_opts[:status] + report_error ex.message, ex.status rescue Exception => ex report_error "#{ex.class}: #{ex.message}", :internal_server_error end @@ -135,7 +149,6 @@ class ApplicationController < ActionController::Base end private - # extract authorisation credentials from headers, returns user = nil if none def get_auth_data if request.env.has_key? 'X-HTTP_AUTHORIZATION' # where mod_rewrite might have put it