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
|
|
|
|
|
2014-02-05 17:54:16 -05:00
|
|
|
def topic_flag_types
|
|
|
|
post_action_types.where(name_key: ['inappropriate', 'spam', 'notify_moderators'])
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
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
|
|
|
|
2014-09-20 16:05:21 -04:00
|
|
|
def groups
|
2015-09-02 17:46:04 -04:00
|
|
|
@groups ||= Group.order(:name).map { |g| { id: g.id, name: g.name } }
|
2013-07-16 01:44:07 -04:00
|
|
|
end
|
|
|
|
|
2014-09-26 14:48:34 -04:00
|
|
|
def user_fields
|
|
|
|
UserField.all
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def categories
|
2013-07-16 01:44:07 -04:00
|
|
|
@categories ||= begin
|
|
|
|
categories = Category
|
|
|
|
.secured(@guardian)
|
2015-09-02 17:46:04 -04:00
|
|
|
.includes(:topic_only_relative_url, :subcategories)
|
2013-11-06 16:56:49 -05:00
|
|
|
.order(:position)
|
2015-02-20 01:30:31 -05:00
|
|
|
|
|
|
|
unless SiteSetting.allow_uncategorized_topics
|
|
|
|
categories = categories.where('categories.id <> ?', SiteSetting.uncategorized_category_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
categories = categories.to_a
|
2013-07-16 01:44:07 -04:00
|
|
|
|
|
|
|
allowed_topic_create = Set.new(Category.topic_create_allowed(@guardian).pluck(:id))
|
|
|
|
|
2014-02-24 14:52:21 -05:00
|
|
|
by_id = {}
|
2014-04-17 05:17:39 -04:00
|
|
|
|
2014-06-17 21:21:53 -04:00
|
|
|
category_user = {}
|
|
|
|
unless @guardian.anonymous?
|
|
|
|
category_user = Hash[*CategoryUser.where(user: @guardian.user).pluck(:category_id, :notification_level).flatten]
|
|
|
|
end
|
|
|
|
|
|
|
|
categories.each do |category|
|
|
|
|
category.notification_level = category_user[category.id]
|
2013-07-16 01:44:07 -04:00
|
|
|
category.permission = CategoryGroup.permission_types[:full] if allowed_topic_create.include?(category.id)
|
2015-09-02 17:46:04 -04:00
|
|
|
category.has_children = category.subcategories.present?
|
2014-02-24 14:52:21 -05:00
|
|
|
by_id[category.id] = category
|
2013-07-16 01:44:07 -04:00
|
|
|
end
|
2014-02-24 14:52:21 -05:00
|
|
|
|
2015-09-02 17:46:04 -04:00
|
|
|
categories.reject! { |c| c.parent_category_id && !by_id[c.parent_category_id] }
|
2013-07-16 01:44:07 -04:00
|
|
|
categories
|
|
|
|
end
|
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
|
|
|
|
|
2014-02-24 14:24:18 -05:00
|
|
|
def self.json_for(guardian)
|
2013-10-14 18:50:30 -04:00
|
|
|
|
|
|
|
if guardian.anonymous? && SiteSetting.login_required
|
2014-01-20 08:41:11 -05:00
|
|
|
return {
|
|
|
|
periods: TopTopic.periods.map(&:to_s),
|
|
|
|
filters: Discourse.filters.map(&:to_s),
|
2015-08-17 15:44:08 -04:00
|
|
|
user_fields: UserField.all.map do |userfield|
|
|
|
|
UserFieldSerializer.new(userfield, root: false, scope: guardian)
|
|
|
|
end
|
2014-01-20 08:41:11 -05:00
|
|
|
}.to_json
|
2013-10-14 18:50:30 -04:00
|
|
|
end
|
|
|
|
|
2013-05-13 04:04:03 -04:00
|
|
|
site = Site.new(guardian)
|
2014-08-12 13:30:28 -04:00
|
|
|
MultiJson.dump(SiteSerializer.new(site, root: false, scope: guardian))
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|