2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-03-30 07:01:06 -04:00
|
|
|
# we want MesageBus to be close to the front
|
2015-12-08 19:48:41 -05:00
|
|
|
# this is important cause the vast majority of web requests go to it
|
|
|
|
# this allows us to avoid full middleware crawls each time
|
2020-03-30 07:01:06 -04:00
|
|
|
#
|
|
|
|
# We aren't manipulating the middleware stack directly because of
|
|
|
|
# https://github.com/rails/rails/pull/27936
|
2017-09-04 08:42:22 -04:00
|
|
|
|
2020-05-07 20:44:51 -04:00
|
|
|
Rails.configuration.middleware.unshift(MessageBus::Rack::Middleware)
|
2015-12-08 19:48:41 -05:00
|
|
|
|
|
|
|
# no reason to track this in development, that is 300+ redis calls saved per
|
|
|
|
# page view (we serve all assets out of thin in development)
|
|
|
|
if Rails.env != 'development' || ENV['TRACK_REQUESTS']
|
|
|
|
require 'middleware/request_tracker'
|
|
|
|
Rails.configuration.middleware.unshift Middleware::RequestTracker
|
2019-06-05 02:08:11 -04:00
|
|
|
|
|
|
|
if GlobalSetting.enable_performance_http_headers
|
|
|
|
MethodProfiler.ensure_discourse_instrumentation!
|
|
|
|
end
|
2015-12-08 19:48:41 -05:00
|
|
|
end
|
2020-03-30 07:01:06 -04:00
|
|
|
|
|
|
|
if Rails.configuration.multisite
|
2020-09-17 05:11:57 -04:00
|
|
|
assets_hostnames = GlobalSetting.cdn_hostnames
|
|
|
|
|
|
|
|
if assets_hostnames.empty?
|
|
|
|
assets_hostnames =
|
|
|
|
Discourse::Application.config.database_configuration[Rails.env]["host_names"]
|
|
|
|
end
|
|
|
|
|
|
|
|
RailsMultisite::ConnectionManagement.asset_hostnames = assets_hostnames
|
2020-09-15 05:07:03 -04:00
|
|
|
|
2020-05-07 20:44:51 -04:00
|
|
|
# Multisite needs to be first, because the request tracker and message bus rely on it
|
|
|
|
Rails.configuration.middleware.unshift RailsMultisite::Middleware, RailsMultisite::DiscoursePatches.config
|
|
|
|
Rails.configuration.middleware.delete ActionDispatch::Executor
|
2020-06-15 04:23:24 -04:00
|
|
|
|
2020-06-15 23:03:47 -04:00
|
|
|
if defined?(RailsFailover::ActiveRecord) && Rails.configuration.active_record_rails_failover
|
2020-06-15 04:23:24 -04:00
|
|
|
Rails.configuration.middleware.insert_after(RailsMultisite::Middleware, RailsFailover::ActiveRecord::Middleware)
|
|
|
|
end
|
2020-06-15 23:03:47 -04:00
|
|
|
elsif defined?(RailsFailover::ActiveRecord) && Rails.configuration.active_record_rails_failover
|
2020-06-11 01:45:46 -04:00
|
|
|
Rails.configuration.middleware.insert_before(MessageBus::Rack::Middleware, RailsFailover::ActiveRecord::Middleware)
|
2020-06-04 05:13:59 -04:00
|
|
|
end
|