2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
# A class we can use to serialize the site data
|
|
|
|
require_dependency 'score_calculator'
|
|
|
|
require_dependency 'trust_level'
|
|
|
|
|
|
|
|
class Site
|
|
|
|
include ActiveModel::Serialization
|
|
|
|
|
2019-03-16 06:48:57 -05:00
|
|
|
cattr_accessor :preloaded_category_custom_fields
|
|
|
|
self.preloaded_category_custom_fields = Set.new
|
|
|
|
|
2013-05-13 03:04:03 -05:00
|
|
|
def initialize(guardian)
|
|
|
|
@guardian = guardian
|
2019-03-16 06:48:57 -05:00
|
|
|
Category.preload_custom_fields(categories, preloaded_category_custom_fields) if preloaded_category_custom_fields.present?
|
2013-05-13 03:04:03 -05:00
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
def site_setting
|
|
|
|
SiteSetting
|
|
|
|
end
|
|
|
|
|
|
|
|
def notification_types
|
2013-03-01 06:07:44 -06:00
|
|
|
Notification.types
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
def trust_levels
|
|
|
|
TrustLevel.all
|
|
|
|
end
|
2013-02-07 09:45:24 -06:00
|
|
|
|
2014-09-26 13:48:34 -05:00
|
|
|
def user_fields
|
|
|
|
UserField.all
|
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
def categories
|
2013-07-16 00:44:07 -05:00
|
|
|
@categories ||= begin
|
|
|
|
categories = Category
|
2019-01-09 19:37:21 -06:00
|
|
|
.includes(:uploaded_logo, :uploaded_background)
|
2013-07-16 00:44:07 -05:00
|
|
|
.secured(@guardian)
|
2015-09-28 01:49:39 -05:00
|
|
|
.joins('LEFT JOIN topics t on t.id = categories.topic_id')
|
2015-09-28 01:43:38 -05:00
|
|
|
.select('categories.*, t.slug topic_slug')
|
2013-11-06 15:56:49 -06:00
|
|
|
.order(:position)
|
2015-02-20 00:30:31 -06:00
|
|
|
|
|
|
|
categories = categories.to_a
|
2013-07-16 00:44:07 -05:00
|
|
|
|
2015-09-22 22:13:34 -05:00
|
|
|
with_children = Set.new
|
|
|
|
categories.each do |c|
|
|
|
|
if c.parent_category_id
|
|
|
|
with_children << c.parent_category_id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-12 10:09:28 -05:00
|
|
|
allowed_topic_create = nil
|
|
|
|
unless @guardian.is_admin?
|
|
|
|
allowed_topic_create_ids =
|
|
|
|
@guardian.anonymous? ? [] : Category.topic_create_allowed(@guardian).pluck(:id)
|
|
|
|
allowed_topic_create = Set.new(allowed_topic_create_ids)
|
|
|
|
end
|
2013-07-16 00:44:07 -05:00
|
|
|
|
2014-02-24 13:52:21 -06:00
|
|
|
by_id = {}
|
2014-04-17 04:17:39 -05:00
|
|
|
|
2014-06-17 20:21:53 -05:00
|
|
|
category_user = {}
|
|
|
|
unless @guardian.anonymous?
|
|
|
|
category_user = Hash[*CategoryUser.where(user: @guardian.user).pluck(:category_id, :notification_level).flatten]
|
|
|
|
end
|
|
|
|
|
2015-12-20 00:47:02 -06:00
|
|
|
regular = CategoryUser.notification_levels[:regular]
|
|
|
|
|
2014-06-17 20:21:53 -05:00
|
|
|
categories.each do |category|
|
2015-12-20 00:47:02 -06:00
|
|
|
category.notification_level = category_user[category.id] || regular
|
2017-05-12 10:09:28 -05:00
|
|
|
category.permission = CategoryGroup.permission_types[:full] if allowed_topic_create&.include?(category.id) || @guardian.is_admin?
|
2015-09-22 22:13:34 -05:00
|
|
|
category.has_children = with_children.include?(category.id)
|
2014-02-24 13:52:21 -06:00
|
|
|
by_id[category.id] = category
|
2013-07-16 00:44:07 -05:00
|
|
|
end
|
2014-02-24 13:52:21 -06:00
|
|
|
|
2015-09-02 16:46:04 -05:00
|
|
|
categories.reject! { |c| c.parent_category_id && !by_id[c.parent_category_id] }
|
2013-07-16 00:44:07 -05:00
|
|
|
categories
|
|
|
|
end
|
2013-02-07 09:45:24 -06:00
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2019-02-14 08:35:58 -06:00
|
|
|
def groups
|
2019-02-14 17:24:29 -06:00
|
|
|
Group.visible_groups(@guardian.user, "name ASC", include_everyone: true)
|
2019-02-14 08:35:58 -06:00
|
|
|
end
|
|
|
|
|
2018-02-21 16:56:18 -06:00
|
|
|
def suppressed_from_latest_category_ids
|
|
|
|
categories.select { |c| c.suppress_from_latest == true }.map(&:id)
|
2015-09-03 12:18:46 -05:00
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
def archetypes
|
2013-02-28 12:54:12 -06:00
|
|
|
Archetype.list.reject { |t| t.id == Archetype.private_message }
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2018-07-31 10:18:50 -05:00
|
|
|
def auth_providers
|
|
|
|
Discourse.enabled_auth_providers
|
|
|
|
end
|
|
|
|
|
2014-02-24 13:24:18 -06:00
|
|
|
def self.json_for(guardian)
|
2013-10-14 17:50:30 -05:00
|
|
|
|
|
|
|
if guardian.anonymous? && SiteSetting.login_required
|
2014-01-20 07:41:11 -06:00
|
|
|
return {
|
|
|
|
periods: TopTopic.periods.map(&:to_s),
|
|
|
|
filters: Discourse.filters.map(&:to_s),
|
2015-08-17 14:44:08 -05:00
|
|
|
user_fields: UserField.all.map do |userfield|
|
|
|
|
UserFieldSerializer.new(userfield, root: false, scope: guardian)
|
2018-08-07 03:20:09 -05:00
|
|
|
end,
|
|
|
|
auth_providers: Discourse.enabled_auth_providers.map do |provider|
|
|
|
|
AuthProviderSerializer.new(provider, root: false, scope: guardian)
|
2017-09-07 08:15:29 -05:00
|
|
|
end
|
2014-01-20 07:41:11 -06:00
|
|
|
}.to_json
|
2013-10-14 17:50:30 -05:00
|
|
|
end
|
|
|
|
|
2015-09-28 01:44:03 -05:00
|
|
|
seq = nil
|
|
|
|
|
|
|
|
if guardian.anonymous?
|
|
|
|
seq = MessageBus.last_id('/site_json')
|
|
|
|
|
|
|
|
cached_json, cached_seq, cached_version = $redis.mget('site_json', 'site_json_seq', 'site_json_version')
|
|
|
|
|
|
|
|
if cached_json && seq == cached_seq.to_i && Discourse.git_version == cached_version
|
|
|
|
return cached_json
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2013-05-13 03:04:03 -05:00
|
|
|
site = Site.new(guardian)
|
2015-09-28 01:44:03 -05:00
|
|
|
json = MultiJson.dump(SiteSerializer.new(site, root: false, scope: guardian))
|
|
|
|
|
|
|
|
if guardian.anonymous?
|
|
|
|
$redis.multi do
|
|
|
|
$redis.setex 'site_json', 1800, json
|
|
|
|
$redis.set 'site_json_seq', seq
|
|
|
|
$redis.set 'site_json_version', Discourse.git_version
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
json
|
|
|
|
end
|
|
|
|
|
2018-12-17 03:27:44 -06:00
|
|
|
SITE_JSON_CHANNEL = '/site_json'
|
|
|
|
|
2015-09-28 01:44:03 -05:00
|
|
|
def self.clear_anon_cache!
|
|
|
|
# publishing forces the sequence up
|
|
|
|
# the cache is validated based on the sequence
|
2018-12-17 03:27:44 -06:00
|
|
|
MessageBus.publish(SITE_JSON_CHANNEL, '')
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|