2013-02-06 03:16:51 +08:00
|
|
|
# A class we can use to serialize the site data
|
|
|
|
require_dependency 'score_calculator'
|
|
|
|
require_dependency 'trust_level'
|
|
|
|
|
|
|
|
class Site
|
|
|
|
include ActiveModel::Serialization
|
|
|
|
|
2013-05-13 16:04:03 +08:00
|
|
|
def initialize(guardian)
|
|
|
|
@guardian = guardian
|
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
def site_setting
|
|
|
|
SiteSetting
|
|
|
|
end
|
|
|
|
|
|
|
|
def post_action_types
|
|
|
|
PostActionType.ordered
|
|
|
|
end
|
|
|
|
|
|
|
|
def notification_types
|
2013-03-01 20:07:44 +08:00
|
|
|
Notification.types
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def trust_levels
|
|
|
|
TrustLevel.all
|
|
|
|
end
|
2013-02-07 23:45:24 +08:00
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
def group_names
|
|
|
|
@group_name ||= Group.pluck(:name)
|
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
def categories
|
2013-07-16 13:44:07 +08:00
|
|
|
@categories ||= begin
|
|
|
|
categories = Category
|
|
|
|
.secured(@guardian)
|
2013-11-07 05:56:49 +08:00
|
|
|
.includes(:topic_only_relative_url)
|
|
|
|
.order(:position)
|
|
|
|
.to_a
|
2013-07-16 13:44:07 +08:00
|
|
|
|
|
|
|
allowed_topic_create = Set.new(Category.topic_create_allowed(@guardian).pluck(:id))
|
|
|
|
|
|
|
|
categories.each do |category|
|
|
|
|
category.permission = CategoryGroup.permission_types[:full] if allowed_topic_create.include?(category.id)
|
|
|
|
end
|
|
|
|
categories
|
|
|
|
end
|
2013-02-07 23:45:24 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
def archetypes
|
2013-03-01 02:54:12 +08:00
|
|
|
Archetype.list.reject { |t| t.id == Archetype.private_message }
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-05-13 16:04:03 +08:00
|
|
|
def cache_key
|
2013-10-18 03:49:06 +08:00
|
|
|
k = "site_json_cats_"
|
2013-05-13 16:04:03 +08:00
|
|
|
k << @guardian.secure_category_ids.join("_") if @guardian
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-05-13 16:04:03 +08:00
|
|
|
def self.cached_json(guardian)
|
2013-10-15 06:50:30 +08:00
|
|
|
|
|
|
|
if guardian.anonymous? && SiteSetting.login_required
|
2014-01-20 21:41:11 +08:00
|
|
|
return {
|
|
|
|
periods: TopTopic.periods.map(&:to_s),
|
|
|
|
filters: Discourse.filters.map(&:to_s),
|
|
|
|
}.to_json
|
2013-10-15 06:50:30 +08:00
|
|
|
end
|
|
|
|
|
2013-05-13 16:04:03 +08:00
|
|
|
site = Site.new(guardian)
|
2013-10-18 03:49:06 +08:00
|
|
|
MultiJson.dump(SiteSerializer.new(site, root: false))
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.invalidate_cache
|
2013-05-13 16:04:03 +08:00
|
|
|
Discourse.cache.delete_by_family("site")
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
end
|