discourse/app/models/site.rb

50 lines
986 B
Ruby
Raw Normal View History

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
def site_setting
SiteSetting
end
def post_action_types
PostActionType.ordered
end
def notification_types
Notification.Types
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
Category.popular
2013-02-07 10:45:24 -05:00
end
2013-02-05 14:16:51 -05:00
def archetypes
Archetype.list.reject{|t| t.id==Archetype.private_message}
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 10:45:24 -05:00
# On my local this was not being flushed as post actions types changed, it turn this
# broke local.
2013-02-05 14:16:51 -05: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