2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
class SiteSerializer < ApplicationSerializer
|
|
|
|
|
2018-03-14 03:59:12 +08:00
|
|
|
attributes(
|
|
|
|
:default_archetype,
|
|
|
|
:notification_types,
|
|
|
|
:post_types,
|
|
|
|
:groups,
|
|
|
|
:filters,
|
|
|
|
:periods,
|
|
|
|
:top_menu_items,
|
|
|
|
:anonymous_top_menu_items,
|
|
|
|
:uncategorized_category_id, # this is hidden so putting it here
|
|
|
|
:is_readonly,
|
|
|
|
:disabled_plugins,
|
|
|
|
:user_field_max_length,
|
|
|
|
:post_action_types,
|
|
|
|
:topic_flag_types,
|
|
|
|
:can_create_tag,
|
|
|
|
:can_tag_topics,
|
|
|
|
:can_tag_pms,
|
|
|
|
:tags_filter_regexp,
|
|
|
|
:top_tags,
|
|
|
|
:wizard_required,
|
|
|
|
:topic_featured_link_allowed_category_ids,
|
|
|
|
:user_themes,
|
2019-08-01 01:33:49 +08:00
|
|
|
:censored_regexp,
|
2018-03-14 03:59:12 +08:00
|
|
|
:shared_drafts_category_id
|
|
|
|
)
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2019-08-19 16:40:56 +08:00
|
|
|
has_many :categories, serializer: SiteCategorySerializer, embed: :objects
|
2013-02-06 03:16:51 +08:00
|
|
|
has_many :trust_levels, embed: :objects
|
|
|
|
has_many :archetypes, embed: :objects, serializer: ArchetypeSerializer
|
2018-07-31 23:18:50 +08:00
|
|
|
has_many :user_fields, embed: :objects, serializer: UserFieldSerializer
|
|
|
|
has_many :auth_providers, embed: :objects, serializer: AuthProviderSerializer
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2017-04-12 22:52:52 +08:00
|
|
|
def user_themes
|
|
|
|
cache_fragment("user_themes") do
|
2018-07-12 12:18:21 +08:00
|
|
|
Theme.where('id = :default OR user_selectable',
|
|
|
|
default: SiteSetting.default_theme_id)
|
2017-07-28 09:20:09 +08:00
|
|
|
.order(:name)
|
2018-07-12 12:18:21 +08:00
|
|
|
.pluck(:id, :name)
|
|
|
|
.map { |id, n| { theme_id: id, name: n, default: id == SiteSetting.default_theme_id } }
|
2017-07-28 09:20:09 +08:00
|
|
|
.as_json
|
2017-04-12 22:52:52 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-09-28 14:43:38 +08:00
|
|
|
def groups
|
2019-02-15 07:24:29 +08:00
|
|
|
cache_anon_fragment("group_names") do
|
|
|
|
object.groups.order(:name).pluck(:id, :name).map { |id, name| { id: id, name: name } }.as_json
|
|
|
|
end
|
2015-09-28 14:43:38 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def post_action_types
|
2015-10-19 08:42:33 +08:00
|
|
|
cache_fragment("post_action_types_#{I18n.locale}") do
|
2019-12-27 19:41:50 +08:00
|
|
|
types = ordered_flags(PostActionType.types.values)
|
2017-10-18 01:31:45 +08:00
|
|
|
ActiveModel::ArraySerializer.new(types).as_json
|
2015-09-28 14:43:38 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def topic_flag_types
|
2015-10-19 08:42:33 +08:00
|
|
|
cache_fragment("post_action_flag_types_#{I18n.locale}") do
|
2019-12-27 19:41:50 +08:00
|
|
|
types = ordered_flags(PostActionType.topic_flag_types.values)
|
2017-10-20 02:27:38 +08:00
|
|
|
ActiveModel::ArraySerializer.new(types, each_serializer: TopicFlagTypeSerializer).as_json
|
2015-09-28 14:43:38 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
def default_archetype
|
|
|
|
Archetype.default
|
|
|
|
end
|
|
|
|
|
2013-02-21 02:15:50 +08:00
|
|
|
def post_types
|
2013-03-19 04:03:46 +08:00
|
|
|
Post.types
|
2013-02-21 02:15:50 +08:00
|
|
|
end
|
2013-02-26 00:42:20 +08:00
|
|
|
|
2014-01-15 01:48:57 +08:00
|
|
|
def filters
|
|
|
|
Discourse.filters.map(&:to_s)
|
|
|
|
end
|
|
|
|
|
|
|
|
def periods
|
|
|
|
TopTopic.periods.map(&:to_s)
|
|
|
|
end
|
2014-02-06 06:54:16 +08:00
|
|
|
|
2014-01-15 01:48:57 +08: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 07:05:51 +08:00
|
|
|
def uncategorized_category_id
|
|
|
|
SiteSetting.uncategorized_category_id
|
2013-05-28 02:15:20 +08:00
|
|
|
end
|
|
|
|
|
2014-02-13 12:37:28 +08:00
|
|
|
def is_readonly
|
|
|
|
Discourse.readonly_mode?
|
|
|
|
end
|
|
|
|
|
2015-02-05 05:23:39 +08:00
|
|
|
def disabled_plugins
|
|
|
|
Discourse.disabled_plugin_names
|
|
|
|
end
|
|
|
|
|
2015-02-24 02:02:30 +08:00
|
|
|
def user_field_max_length
|
|
|
|
UserField.max_length
|
|
|
|
end
|
|
|
|
|
2016-04-26 03:55:15 +08:00
|
|
|
def can_create_tag
|
2018-02-14 04:46:25 +08:00
|
|
|
scope.can_create_tag?
|
2016-04-26 03:55:15 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def can_tag_topics
|
2018-02-14 04:46:25 +08:00
|
|
|
scope.can_tag_topics?
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_tag_pms
|
|
|
|
scope.can_tag_pms?
|
2016-04-26 03:55:15 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def include_tags_filter_regexp?
|
|
|
|
SiteSetting.tagging_enabled
|
|
|
|
end
|
2016-07-07 21:17:56 +08:00
|
|
|
|
2016-04-26 03:55:15 +08: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-26 03:55:15 +08:00
|
|
|
end
|
2016-07-07 21:17:56 +08:00
|
|
|
|
2016-04-26 03:55:15 +08:00
|
|
|
def top_tags
|
2016-09-23 03:23:10 +08:00
|
|
|
Tag.top_tags(guardian: scope)
|
2016-04-26 03:55:15 +08:00
|
|
|
end
|
2016-09-15 04:36:08 +08:00
|
|
|
|
|
|
|
def wizard_required
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_wizard_required?
|
2016-10-18 23:44:25 +08:00
|
|
|
Wizard.user_requires_completion?(scope.user)
|
2016-09-15 04:36:08 +08:00
|
|
|
end
|
2016-12-05 20:31:43 +08: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-29 04:56:44 +08:00
|
|
|
|
2019-08-01 01:33:49 +08:00
|
|
|
def censored_regexp
|
|
|
|
WordWatcher.word_matcher_regexp(:censor)&.source
|
2017-06-29 04:56:44 +08:00
|
|
|
end
|
2018-03-14 03:59:12 +08:00
|
|
|
|
|
|
|
def shared_drafts_category_id
|
|
|
|
SiteSetting.shared_drafts_category.to_i
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_shared_drafts_category_id?
|
|
|
|
scope.can_create_shared_draft?
|
|
|
|
end
|
|
|
|
|
2019-12-27 19:41:50 +08:00
|
|
|
private
|
|
|
|
|
|
|
|
def ordered_flags(flags)
|
|
|
|
notify_moderators_type = PostActionType.flag_types[:notify_moderators]
|
|
|
|
types = flags
|
|
|
|
|
|
|
|
if notify_moderators_flag = types.index(notify_moderators_type)
|
|
|
|
types.insert(types.length, types.delete_at(notify_moderators_flag))
|
|
|
|
end
|
|
|
|
|
|
|
|
types.map { |id| PostActionType.new(id: id) }
|
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|