application_controller.rb
1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
require 'http_accept_language'
class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
add_flash_types :error, :alert
before_filter :configure_permitted_parameters, if: :devise_controller?
before_filter :set_locale
rescue_from ActiveRecord::RecordNotFound, with: :not_found
rescue_from KalibroClient::Errors::RecordNotFound, with: :not_found
class << self
# This is necessary for correct devise routing with locales: https://github.com/plataformatec/devise/wiki/How-To:--Redirect-with-locale-after-authentication-failure
def default_url_options
locale_options
end
def locale_options
{ locale: I18n.locale }
end
end
# This happens after the *_url *_path helpers
def default_url_options
self.class.locale_options
end
protected
def not_found
begin
respond_to do |format|
format.html { render file: "#{Rails.root}/public/404", layout: false, status: :not_found }
format.json { head :not_found }
end
rescue ActionController::UnknownFormat
render status: 404, text: "The page you were looking for doesn't exist (404)"
end
end
# We don't have a way to test this unless we have the Devise controllers among our code.
# Since creating the controllers looks wronger than not testing this two
# lines. I think we can live without 100% of coverage
# :nocov:
def configure_permitted_parameters
devise_parameter_sanitizer.for(:sign_up) << :name
devise_parameter_sanitizer.for(:account_update) << :name
end
def set_locale
I18n.locale = (
params[:locale] ||
http_accept_language.compatible_language_from(I18n.available_locales) ||
I18n.default_locale
)
end
end