2021-02-16 16:14:43 +01:00
|
|
|
|
require_relative "boot"
|
2015-08-10 11:05:06 +02:00
|
|
|
|
|
2021-02-16 16:14:43 +01:00
|
|
|
|
require "rails/all"
|
2015-08-10 11:05:06 +02:00
|
|
|
|
|
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
|
|
|
# you've limited to :test, :development, or :production.
|
|
|
|
|
Bundler.require(*Rails.groups)
|
|
|
|
|
|
2018-03-09 10:00:11 +01:00
|
|
|
|
Dotenv::Railtie.load
|
|
|
|
|
|
2015-09-01 14:17:12 +02:00
|
|
|
|
module TPS
|
2015-08-10 11:05:06 +02:00
|
|
|
|
class Application < Rails::Application
|
2021-02-16 16:14:43 +01:00
|
|
|
|
# Initialize configuration defaults for originally generated Rails version.
|
2021-03-30 16:42:25 +02:00
|
|
|
|
config.load_defaults 6.1
|
2020-08-05 16:58:18 +02:00
|
|
|
|
|
2021-02-16 16:14:43 +01:00
|
|
|
|
# Configuration for the application, engines, and railties goes here.
|
|
|
|
|
#
|
|
|
|
|
# These settings can be overridden in specific environments using the files
|
|
|
|
|
# in config/environments, which are processed later.
|
2015-08-10 11:05:06 +02:00
|
|
|
|
|
2021-02-09 12:17:01 +01:00
|
|
|
|
Rails.autoloaders.main.ignore(Rails.root.join('lib/cops'))
|
|
|
|
|
Rails.autoloaders.main.ignore(Rails.root.join('lib/linters'))
|
|
|
|
|
Rails.autoloaders.main.ignore(Rails.root.join('lib/tasks/task_helper.rb'))
|
|
|
|
|
config.paths.add Rails.root.join('spec/mailers/previews').to_s, eager_load: true
|
2020-08-05 16:58:18 +02:00
|
|
|
|
|
2015-08-10 11:05:06 +02:00
|
|
|
|
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
|
|
|
|
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
2018-10-25 15:32:48 +02:00
|
|
|
|
config.time_zone = 'Paris'
|
2015-08-10 11:05:06 +02:00
|
|
|
|
|
2020-08-27 11:37:03 +02:00
|
|
|
|
# The default locale is :fr and all translations from config/locales/*.rb,yml are auto loaded.
|
2015-08-10 11:05:06 +02:00
|
|
|
|
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
2015-08-21 11:37:13 +02:00
|
|
|
|
config.i18n.default_locale = :fr
|
|
|
|
|
config.i18n.load_path += Dir[Rails.root.join('config', 'locales', '**', '*.{rb,yml}')]
|
2020-08-27 11:37:03 +02:00
|
|
|
|
config.i18n.available_locales = [:fr, :en]
|
|
|
|
|
config.i18n.fallbacks = [:fr]
|
2015-08-10 11:05:06 +02:00
|
|
|
|
|
|
|
|
|
config.assets.paths << Rails.root.join('app', 'assets', 'javascript')
|
2017-04-04 14:37:50 +02:00
|
|
|
|
config.assets.paths << Rails.root.join('app', 'assets', 'fonts')
|
2018-10-01 13:55:12 +02:00
|
|
|
|
config.assets.precompile += ['.woff']
|
2015-08-10 11:05:06 +02:00
|
|
|
|
|
2021-05-11 14:44:18 +02:00
|
|
|
|
default_allowed_tags = ActionView::Base.sanitized_allowed_tags
|
2020-06-30 17:22:26 +02:00
|
|
|
|
config.action_view.sanitized_allowed_tags = default_allowed_tags + ['u']
|
2020-01-28 12:02:06 +01:00
|
|
|
|
|
2020-04-14 18:28:15 +02:00
|
|
|
|
# Some mobile browsers have a behaviour where, although they will delete the session
|
|
|
|
|
# cookie when the browser shutdowns, they will still serve a cached version
|
|
|
|
|
# of the page on relaunch.
|
|
|
|
|
# The CSRF token in the HTML is then mismatched with the CSRF token in the session cookie
|
|
|
|
|
# (because the session cookie has been cleared). This causes form submissions to fail with
|
|
|
|
|
# a "ActionController::InvalidAuthenticityToken" exception.
|
|
|
|
|
# To prevent this, tell browsers to never cache the HTML of a page.
|
|
|
|
|
# (This doesn’t affect assets files, which are still sent with the proper cache headers).
|
|
|
|
|
#
|
|
|
|
|
# See https://github.com/rails/rails/issues/21948
|
|
|
|
|
config.action_dispatch.default_headers['Cache-Control'] = 'no-store, no-cache'
|
|
|
|
|
|
2021-03-11 18:28:10 +01:00
|
|
|
|
# ActionDispatch's IP spoofing detection is quite limited, and often rejects
|
|
|
|
|
# legitimate requests from misconfigured proxies (such as mobile telcos).
|
|
|
|
|
#
|
|
|
|
|
# As we have our own proxy stack before reaching the Rails app, we can
|
|
|
|
|
# disable the check performed by Rails.
|
|
|
|
|
config.action_dispatch.ip_spoofing_check = false
|
|
|
|
|
|
2021-03-30 12:26:44 +02:00
|
|
|
|
# Set the queue name for the mail delivery jobs to 'mailers'
|
|
|
|
|
config.action_mailer.deliver_later_queue_name = :mailers
|
|
|
|
|
|
|
|
|
|
# Set the queue name for the analysis jobs to 'active_storage_analysis'
|
|
|
|
|
config.active_storage.queues.analysis = :active_storage_analysis
|
|
|
|
|
|
2019-03-01 17:54:17 +01:00
|
|
|
|
config.to_prepare do
|
|
|
|
|
# Make main application helpers available in administrate
|
|
|
|
|
Administrate::ApplicationController.helper(TPS::Application.helpers)
|
|
|
|
|
end
|
2019-07-31 12:26:07 +02:00
|
|
|
|
|
2019-07-03 15:22:31 +02:00
|
|
|
|
config.middleware.use Rack::Attack
|
2021-04-06 14:58:23 +02:00
|
|
|
|
config.middleware.use Flipper::Middleware::Memoizer,
|
|
|
|
|
preload: [:instructeur_bypass_email_login_token]
|
2019-11-19 14:40:28 +01:00
|
|
|
|
|
2021-03-24 15:05:24 +01:00
|
|
|
|
config.ds_env = ENV.fetch('DS_ENV', Rails.env)
|
|
|
|
|
|
|
|
|
|
config.ds_weekly_overview = Rails.env.production? && config.ds_env != 'staging'
|
2019-11-19 14:40:28 +01:00
|
|
|
|
|
|
|
|
|
config.ds_autosave = {
|
|
|
|
|
debounce_delay: 3000,
|
|
|
|
|
status_visible_duration: 6000
|
|
|
|
|
}
|
2019-12-05 08:48:51 +01:00
|
|
|
|
|
|
|
|
|
config.skylight.probes += [:graphql]
|
2015-08-10 11:05:06 +02:00
|
|
|
|
end
|
|
|
|
|
end
|