2016-04-25 15:55:15 -04:00
|
|
|
require_dependency 'discourse_tagging'
|
2016-09-14 16:36:08 -04:00
|
|
|
require_dependency 'wizard'
|
|
|
|
require_dependency 'wizard/builder'
|
2016-04-25 15:55:15 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
class SiteSerializer < ApplicationSerializer
|
|
|
|
|
2013-02-25 19:42:20 +03:00
|
|
|
attributes :default_archetype,
|
2013-02-20 13:15:50 -05:00
|
|
|
:notification_types,
|
2013-05-27 14:15:20 -04:00
|
|
|
:post_types,
|
2014-09-20 22:05:21 +02:00
|
|
|
:groups,
|
2014-01-14 12:48:57 -05:00
|
|
|
:filters,
|
|
|
|
:periods,
|
|
|
|
:top_menu_items,
|
|
|
|
:anonymous_top_menu_items,
|
2014-02-12 20:37:28 -08:00
|
|
|
:uncategorized_category_id, # this is hidden so putting it here
|
2015-02-04 16:23:39 -05:00
|
|
|
:is_readonly,
|
2015-02-23 13:02:30 -05:00
|
|
|
:disabled_plugins,
|
2015-09-03 19:18:46 +02:00
|
|
|
:user_field_max_length,
|
2015-09-28 16:43:38 +10:00
|
|
|
:suppressed_from_homepage_category_ids,
|
|
|
|
:post_action_types,
|
2016-04-25 15:55:15 -04:00
|
|
|
:topic_flag_types,
|
|
|
|
:can_create_tag,
|
|
|
|
:can_tag_topics,
|
|
|
|
:tags_filter_regexp,
|
2016-09-14 16:36:08 -04:00
|
|
|
:top_tags,
|
2016-12-05 13:31:43 +01:00
|
|
|
:wizard_required,
|
2017-04-12 10:52:52 -04:00
|
|
|
:topic_featured_link_allowed_category_ids,
|
2017-06-28 16:56:44 -04:00
|
|
|
:user_themes,
|
|
|
|
:censored_words
|
2013-02-20 13:15:50 -05:00
|
|
|
|
2013-05-13 18:04:03 +10:00
|
|
|
has_many :categories, serializer: BasicCategorySerializer, embed: :objects
|
2013-02-05 14:16:51 -05:00
|
|
|
has_many :trust_levels, embed: :objects
|
|
|
|
has_many :archetypes, embed: :objects, serializer: ArchetypeSerializer
|
2014-09-26 14:48:34 -04:00
|
|
|
has_many :user_fields, embed: :objects, serialzer: UserFieldSerializer
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2017-04-12 10:52:52 -04:00
|
|
|
def user_themes
|
|
|
|
cache_fragment("user_themes") do
|
|
|
|
Theme.where('key = :default OR user_selectable',
|
|
|
|
default: SiteSetting.default_theme_key)
|
2017-07-28 10:20:09 +09:00
|
|
|
.order(:name)
|
|
|
|
.pluck(:key, :name)
|
|
|
|
.map { |k, n| { theme_key: k, name: n, default: k == SiteSetting.default_theme_key } }
|
|
|
|
.as_json
|
2017-04-12 10:52:52 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-09-28 16:43:38 +10:00
|
|
|
def groups
|
|
|
|
cache_fragment("group_names") do
|
2017-07-28 10:20:09 +09:00
|
|
|
Group.order(:name).pluck(:id, :name).map { |id, name| { id: id, name: name } }.as_json
|
2015-09-28 16:43:38 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def post_action_types
|
2015-10-19 11:42:33 +11:00
|
|
|
cache_fragment("post_action_types_#{I18n.locale}") do
|
2015-09-28 16:43:38 +10:00
|
|
|
ActiveModel::ArraySerializer.new(PostActionType.ordered).as_json
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def topic_flag_types
|
2015-10-19 11:42:33 +11:00
|
|
|
cache_fragment("post_action_flag_types_#{I18n.locale}") do
|
2015-09-28 16:43:38 +10:00
|
|
|
flags = PostActionType.ordered.where(name_key: ['inappropriate', 'spam', 'notify_moderators'])
|
|
|
|
ActiveModel::ArraySerializer.new(flags, each_serializer: TopicFlagTypeSerializer).as_json
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def default_archetype
|
|
|
|
Archetype.default
|
|
|
|
end
|
|
|
|
|
2013-02-20 13:15:50 -05:00
|
|
|
def post_types
|
2013-03-18 16:03:46 -04:00
|
|
|
Post.types
|
2013-02-20 13:15:50 -05:00
|
|
|
end
|
2013-02-25 19:42:20 +03:00
|
|
|
|
2014-01-14 12:48:57 -05:00
|
|
|
def filters
|
|
|
|
Discourse.filters.map(&:to_s)
|
|
|
|
end
|
|
|
|
|
|
|
|
def periods
|
|
|
|
TopTopic.periods.map(&:to_s)
|
|
|
|
end
|
2014-02-05 17:54:16 -05:00
|
|
|
|
2014-01-14 12:48:57 -05:00
|
|
|
def top_menu_items
|
|
|
|
Discourse.top_menu_items.map(&:to_s)
|
|
|
|
end
|
|
|
|
|
|
|
|
def anonymous_top_menu_items
|
|
|
|
Discourse.anonymous_top_menu_items.map(&:to_s)
|
|
|
|
end
|
|
|
|
|
2013-10-24 10:05:51 +11:00
|
|
|
def uncategorized_category_id
|
|
|
|
SiteSetting.uncategorized_category_id
|
2013-05-27 14:15:20 -04:00
|
|
|
end
|
|
|
|
|
2014-02-12 20:37:28 -08:00
|
|
|
def is_readonly
|
|
|
|
Discourse.readonly_mode?
|
|
|
|
end
|
|
|
|
|
2015-02-04 16:23:39 -05:00
|
|
|
def disabled_plugins
|
|
|
|
Discourse.disabled_plugin_names
|
|
|
|
end
|
|
|
|
|
2015-02-23 13:02:30 -05:00
|
|
|
def user_field_max_length
|
|
|
|
UserField.max_length
|
|
|
|
end
|
|
|
|
|
2016-04-25 15:55:15 -04:00
|
|
|
def can_create_tag
|
|
|
|
SiteSetting.tagging_enabled && scope.can_create_tag?
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_tag_topics
|
|
|
|
SiteSetting.tagging_enabled && scope.can_tag_topics?
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_tags_filter_regexp?
|
|
|
|
SiteSetting.tagging_enabled
|
|
|
|
end
|
2016-07-07 21:17:56 +08:00
|
|
|
|
2016-04-25 15:55:15 -04:00
|
|
|
def tags_filter_regexp
|
|
|
|
DiscourseTagging::TAGS_FILTER_REGEXP.source
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_top_tags?
|
2016-07-07 21:17:56 +08:00
|
|
|
Tag.include_tags?
|
2016-04-25 15:55:15 -04:00
|
|
|
end
|
2016-07-07 21:17:56 +08:00
|
|
|
|
2016-04-25 15:55:15 -04:00
|
|
|
def top_tags
|
2016-09-22 15:23:10 -04:00
|
|
|
Tag.top_tags(guardian: scope)
|
2016-04-25 15:55:15 -04:00
|
|
|
end
|
2016-09-14 16:36:08 -04:00
|
|
|
|
|
|
|
def wizard_required
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_wizard_required?
|
2016-10-18 11:44:25 -04:00
|
|
|
Wizard.user_requires_completion?(scope.user)
|
2016-09-14 16:36:08 -04:00
|
|
|
end
|
2016-12-05 13:31:43 +01:00
|
|
|
|
|
|
|
def include_topic_featured_link_allowed_category_ids?
|
|
|
|
SiteSetting.topic_featured_link_enabled
|
|
|
|
end
|
|
|
|
|
|
|
|
def topic_featured_link_allowed_category_ids
|
|
|
|
scope.topic_featured_link_allowed_category_ids
|
|
|
|
end
|
2017-06-28 16:56:44 -04:00
|
|
|
|
|
|
|
def censored_words
|
|
|
|
WordWatcher.words_for_action(:censor).join('|')
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|