mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:09:35 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
79 lines
2.6 KiB
Ruby
79 lines
2.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module SiteSettings; end
|
|
|
|
module SiteSettings::DeprecatedSettings
|
|
SETTINGS = [
|
|
['logo_url', 'logo', false, '2.3'],
|
|
['logo_small_url', 'logo_small', false, '2.3'],
|
|
['digest_logo_url', 'digest_logo', false, '2.3'],
|
|
['mobile_logo_url', 'mobile_logo', false, '2.3'],
|
|
['large_icon_url', 'large_icon', false, '2.3'],
|
|
['favicon_url', 'favicon', false, '2.3'],
|
|
['apple_touch_icon_url', 'apple_touch_icon', false, '2.3'],
|
|
['default_opengraph_image_url', 'opengraph_image', false, '2.3'],
|
|
['twitter_summary_large_image_url', 'twitter_summary_large_image', false, '2.3'],
|
|
['push_notifications_icon_url', 'push_notifications_icon', false, '2.3'],
|
|
['show_email_on_profile', 'moderators_view_emails', true, '2.4'],
|
|
['allow_moderators_to_create_categories', 'moderators_create_categories', true, '2.4']
|
|
]
|
|
|
|
def setup_deprecated_methods
|
|
SETTINGS.each do |old_setting, new_setting, override, version|
|
|
unless override
|
|
SiteSetting.singleton_class.public_send(
|
|
:alias_method, :"_#{old_setting}", :"#{old_setting}"
|
|
)
|
|
end
|
|
|
|
define_singleton_method old_setting do |warn: true|
|
|
if warn
|
|
logger.warn(
|
|
"`SiteSetting.#{old_setting}` has been deprecated and will be " +
|
|
"removed in the #{version} Release. Please use " +
|
|
"`SiteSetting.#{new_setting}` instead"
|
|
)
|
|
end
|
|
|
|
self.public_send(override ? new_setting : "_#{old_setting}")
|
|
end
|
|
|
|
unless override
|
|
SiteSetting.singleton_class.public_send(
|
|
:alias_method, :"_#{old_setting}?", :"#{old_setting}?"
|
|
)
|
|
end
|
|
|
|
define_singleton_method "#{old_setting}?" do |warn: true|
|
|
if warn
|
|
logger.warn(
|
|
"`SiteSetting.#{old_setting}?` has been deprecated and will be " +
|
|
"removed in the #{version} Release. Please use " +
|
|
"`SiteSetting.#{new_setting}?` instead"
|
|
)
|
|
end
|
|
|
|
self.public_send("#{override ? new_setting : "_" + old_setting}?")
|
|
end
|
|
|
|
unless override
|
|
SiteSetting.singleton_class.public_send(
|
|
:alias_method, :"_#{old_setting}=", :"#{old_setting}="
|
|
)
|
|
end
|
|
|
|
define_singleton_method "#{old_setting}=" do |val, warn: true|
|
|
if warn
|
|
logger.warn(
|
|
"`SiteSetting.#{old_setting}=` has been deprecated and will be " +
|
|
"removed in the #{version} Release. Please use " +
|
|
"`SiteSetting.#{new_setting}=` instead"
|
|
)
|
|
end
|
|
|
|
self.public_send("#{override ? new_setting : "_" + old_setting}=", val)
|
|
end
|
|
end
|
|
end
|
|
end
|