2013-02-05 14:16:51 -05: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 04:04:03 -04:00
|
|
|
def initialize(guardian)
|
|
|
|
@guardian = guardian
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def site_setting
|
|
|
|
SiteSetting
|
|
|
|
end
|
|
|
|
|
|
|
|
def post_action_types
|
|
|
|
PostActionType.ordered
|
|
|
|
end
|
|
|
|
|
|
|
|
def notification_types
|
2013-03-01 07:07:44 -05:00
|
|
|
Notification.types
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def trust_levels
|
|
|
|
TrustLevel.all
|
|
|
|
end
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def categories
|
2013-05-13 04:04:03 -04:00
|
|
|
Category
|
|
|
|
.secured(@guardian)
|
|
|
|
.latest
|
|
|
|
.includes(:topic_only_relative_url)
|
2013-02-07 10:45:24 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
def archetypes
|
2013-02-28 13:54:12 -05:00
|
|
|
Archetype.list.reject { |t| t.id == Archetype.private_message }
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-05-13 04:04:03 -04:00
|
|
|
def cache_key
|
|
|
|
k ="site_json_cats_"
|
|
|
|
k << @guardian.secure_category_ids.join("_") if @guardian
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-05-13 04:04:03 -04:00
|
|
|
def self.cached_json(guardian)
|
2013-02-05 14:16:51 -05:00
|
|
|
# Sam: bumping this way down, SiteSerializer will serialize post actions as well,
|
2013-02-07 10:45:24 -05:00
|
|
|
# On my local this was not being flushed as post actions types changed, it turn this
|
|
|
|
# broke local.
|
2013-05-13 04:04:03 -04:00
|
|
|
site = Site.new(guardian)
|
|
|
|
Discourse.cache.fetch(site.cache_key, family: "site", expires_in: 1.minute) do
|
|
|
|
MultiJson.dump(SiteSerializer.new(site, root: false))
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.invalidate_cache
|
2013-05-13 04:04:03 -04:00
|
|
|
Discourse.cache.delete_by_family("site")
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|