mirror of
https://github.com/discourse/discourse-adplugin.git
synced 2025-03-09 13:19:11 +00:00
This commit adds 2 new settings to house ads to control whether an ad is shown to anonymous users and logged in users. Existing ads that were created before this feature will default to true for both settings; i.e., they will remain to be visible to both anonymous and logged-in users, but it will be possible to change the settings. Turning off both settings will effectively disable the ad completely.
81 lines
2.2 KiB
Ruby
81 lines
2.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module ::AdPlugin
|
|
class HouseAdSetting
|
|
DEFAULTS = {
|
|
topic_list_top: "",
|
|
topic_above_post_stream: "",
|
|
topic_above_suggested: "",
|
|
post_bottom: "",
|
|
topic_list_between: "",
|
|
}
|
|
|
|
def self.all
|
|
settings = DEFAULTS.dup
|
|
|
|
PluginStoreRow
|
|
.where(plugin_name: AdPlugin.plugin_name)
|
|
.where("key LIKE 'ad-setting:%'")
|
|
.each { |psr| settings[psr.key[11..-1].to_sym] = psr.value }
|
|
|
|
settings
|
|
end
|
|
|
|
def self.settings_and_ads(for_anons: true)
|
|
settings = AdPlugin::HouseAdSetting.all
|
|
ad_names = settings.values.map { |v| v.split("|") }.flatten.uniq
|
|
|
|
if for_anons
|
|
ads = AdPlugin::HouseAd.all_for_anons
|
|
else
|
|
ads = AdPlugin::HouseAd.all_for_logged_in_users
|
|
end
|
|
ads = ads.select { |ad| ad_names.include?(ad.name) }
|
|
|
|
{
|
|
settings:
|
|
settings.merge(
|
|
after_nth_post: SiteSetting.house_ads_after_nth_post,
|
|
after_nth_topic: SiteSetting.house_ads_after_nth_topic,
|
|
house_ads_frequency: SiteSetting.house_ads_frequency,
|
|
),
|
|
creatives:
|
|
ads.inject({}) do |h, ad|
|
|
h[ad.name] = ad.html
|
|
h
|
|
end,
|
|
}
|
|
end
|
|
|
|
def self.update(setting_name, value)
|
|
raise Discourse::NotFound unless DEFAULTS.keys.include?(setting_name.to_sym)
|
|
|
|
ad_names = value&.split("|") || []
|
|
|
|
raise Discourse::InvalidParameters if value && ad_names.any? { |v| v !~ HouseAd::NAME_REGEX }
|
|
|
|
ad_names = (HouseAd.all.map(&:name) & ad_names) unless ad_names.empty?
|
|
|
|
new_value = ad_names.join("|")
|
|
|
|
if value.nil? || new_value == DEFAULTS[setting_name.to_sym]
|
|
AdPlugin.pstore_delete("ad-setting:#{setting_name}")
|
|
else
|
|
AdPlugin.pstore_set("ad-setting:#{setting_name}", new_value)
|
|
end
|
|
Site.clear_anon_cache!
|
|
|
|
publish_settings
|
|
end
|
|
|
|
def self.publish_settings
|
|
MessageBus.publish("/site/house-creatives/anonymous", settings_and_ads(for_anons: true))
|
|
MessageBus.publish(
|
|
"/site/house-creatives/logged-in",
|
|
settings_and_ads(for_anons: false),
|
|
group_ids: [Group::AUTO_GROUPS[:trust_level_0]],
|
|
)
|
|
end
|
|
end
|
|
end
|