2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-31 07:53:30 +08:00
|
|
|
require "middleware/anonymous_cache"
|
2013-04-11 14:24:08 +08:00
|
|
|
|
2013-10-16 13:39:18 +08:00
|
|
|
enabled =
|
|
|
|
if Rails.configuration.respond_to?(:enable_anon_caching)
|
|
|
|
Rails.configuration.enable_anon_caching
|
|
|
|
else
|
2023-07-28 19:53:44 +08:00
|
|
|
Rails.env.production? || Rails.env.test?
|
2013-10-16 13:39:18 +08:00
|
|
|
end
|
2013-05-07 15:32:43 +08:00
|
|
|
|
2013-11-13 12:28:39 +08:00
|
|
|
if !ENV["DISCOURSE_DISABLE_ANON_CACHE"] && enabled
|
2014-01-09 11:08:42 +08:00
|
|
|
# in an ideal world this is position 0, but mobile detection uses ... session and request and params
|
2023-07-28 19:53:44 +08:00
|
|
|
Rails.configuration.middleware.insert_after Middleware::GtmScriptNonceInjector,
|
|
|
|
Middleware::AnonymousCache
|
2013-04-11 14:24:08 +08:00
|
|
|
end
|