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
|
|
|
|
|
|
|
|
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-02-06 03:16:51 +08:00
|
|
|
def categories
|
2013-03-28 04:17:49 +08:00
|
|
|
Category.latest.includes(:topic_only_relative_url)
|
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
|
|
|
|
|
|
|
|
def self.cache_key
|
|
|
|
"site_json"
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.cached_json
|
|
|
|
# Sam: bumping this way down, SiteSerializer will serialize post actions as well,
|
2013-02-07 23:45:24 +08:00
|
|
|
# On my local this was not being flushed as post actions types changed, it turn this
|
|
|
|
# broke local.
|
2013-02-06 03:16:51 +08:00
|
|
|
Rails.cache.fetch(Site.cache_key, expires_in: 1.minute) do
|
|
|
|
MultiJson.dump(SiteSerializer.new(Site.new, root: false))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.invalidate_cache
|
|
|
|
Rails.cache.delete(Site.cache_key)
|
|
|
|
end
|
|
|
|
end
|