mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Initial release of Discourse
This commit is contained in:
49
app/models/site.rb
Normal file
49
app/models/site.rb
Normal file
@@ -0,0 +1,49 @@
|
||||
# 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
|
||||
|
||||
def categories
|
||||
Category.popular
|
||||
end
|
||||
|
||||
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,
|
||||
# On my local this was not being flushed as post actions types changed, it turn this
|
||||
# broke local.
|
||||
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
|
||||
Reference in New Issue
Block a user