2015-04-21 12:59:57 -05:00
|
|
|
require_dependency 'new_post_manager'
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
class CurrentUserSerializer < BasicUserSerializer
|
|
|
|
|
2013-02-25 10:42:20 -06:00
|
|
|
attributes :name,
|
|
|
|
:unread_notifications,
|
|
|
|
:unread_private_messages,
|
2016-11-08 02:12:40 -06:00
|
|
|
:read_first_notification?,
|
2013-02-25 10:42:20 -06:00
|
|
|
:admin?,
|
|
|
|
:notification_channel_position,
|
2013-02-07 15:40:48 -06:00
|
|
|
:site_flagged_posts_count,
|
2013-02-14 11:10:53 -06:00
|
|
|
:moderator?,
|
2013-05-02 02:22:27 -05:00
|
|
|
:staff?,
|
2015-01-21 14:58:04 -06:00
|
|
|
:title,
|
2013-02-14 16:58:44 -06:00
|
|
|
:reply_count,
|
2013-03-12 22:06:58 -05:00
|
|
|
:topic_count,
|
2013-04-27 19:37:53 -05:00
|
|
|
:enable_quoting,
|
|
|
|
:external_links_in_new_tab,
|
2013-06-15 01:58:24 -05:00
|
|
|
:dynamic_favicon,
|
2013-06-11 11:30:38 -05:00
|
|
|
:trust_level,
|
2017-08-28 11:07:30 -05:00
|
|
|
:can_send_private_email_messages,
|
2013-11-06 11:56:26 -06:00
|
|
|
:can_edit,
|
2014-01-21 11:42:20 -06:00
|
|
|
:can_invite_to_forum,
|
2014-02-13 10:42:35 -06:00
|
|
|
:no_password,
|
2014-03-07 11:58:53 -06:00
|
|
|
:can_delete_account,
|
|
|
|
:should_be_redirected_to_top,
|
2015-09-21 13:28:20 -05:00
|
|
|
:redirected_to_top,
|
2014-06-05 15:16:30 -05:00
|
|
|
:disable_jump_reply,
|
2014-06-17 20:21:40 -05:00
|
|
|
:custom_fields,
|
2014-06-18 13:04:10 -05:00
|
|
|
:muted_category_ids,
|
2015-04-07 03:02:10 -05:00
|
|
|
:dismissed_banner_key,
|
2015-04-10 15:29:13 -05:00
|
|
|
:is_anonymous,
|
2015-04-21 12:59:57 -05:00
|
|
|
:post_queue_new_count,
|
2015-09-04 15:56:02 -05:00
|
|
|
:show_queued_posts,
|
2016-02-16 22:46:19 -06:00
|
|
|
:read_faq,
|
2016-06-01 15:47:42 -05:00
|
|
|
:automatically_unpin_topics,
|
2016-08-18 20:58:20 -05:00
|
|
|
:mailing_list_mode,
|
2016-09-17 23:30:15 -05:00
|
|
|
:previous_visit_at,
|
2017-08-11 21:05:16 -05:00
|
|
|
:seen_notification_id,
|
|
|
|
:primary_group_id,
|
2018-02-08 11:56:10 -06:00
|
|
|
:can_create_topic,
|
2018-06-13 13:57:32 -05:00
|
|
|
:link_posting_access,
|
2018-07-27 01:41:07 -05:00
|
|
|
:external_id,
|
2018-10-10 12:00:08 -05:00
|
|
|
:top_category_ids,
|
2018-12-18 01:41:42 -06:00
|
|
|
:hide_profile_and_presence,
|
|
|
|
:groups
|
2018-02-08 11:56:10 -06:00
|
|
|
|
2018-12-18 01:41:42 -06:00
|
|
|
def groups
|
|
|
|
object.visible_groups.pluck(:id, :name).map { |id, name| { id: id, name: name.downcase } }
|
|
|
|
end
|
2018-12-10 09:23:29 -06:00
|
|
|
|
2018-06-13 13:57:32 -05:00
|
|
|
def link_posting_access
|
|
|
|
scope.link_posting_access
|
2018-02-08 11:56:10 -06:00
|
|
|
end
|
2017-12-20 18:23:45 -06:00
|
|
|
|
|
|
|
def can_create_topic
|
|
|
|
scope.can_create_topic?(nil)
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
|
|
|
|
def include_site_flagged_posts_count?
|
2013-05-02 02:22:27 -05:00
|
|
|
object.staff?
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2015-09-04 15:56:02 -05:00
|
|
|
def read_faq
|
|
|
|
object.user_stat.read_faq?
|
|
|
|
end
|
|
|
|
|
2013-02-14 16:58:44 -06:00
|
|
|
def topic_count
|
2015-09-10 01:27:04 -05:00
|
|
|
object.user_stat.topic_count
|
2013-02-14 16:58:44 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
def reply_count
|
2013-10-03 22:28:49 -05:00
|
|
|
object.user_stat.topic_reply_count
|
2013-02-14 11:10:53 -06:00
|
|
|
end
|
|
|
|
|
2018-10-10 12:00:08 -05:00
|
|
|
def hide_profile_and_presence
|
|
|
|
object.user_option.hide_profile_and_presence
|
|
|
|
end
|
|
|
|
|
2016-02-16 22:46:19 -06:00
|
|
|
def enable_quoting
|
|
|
|
object.user_option.enable_quoting
|
|
|
|
end
|
|
|
|
|
|
|
|
def disable_jump_reply
|
|
|
|
object.user_option.disable_jump_reply
|
|
|
|
end
|
|
|
|
|
|
|
|
def external_links_in_new_tab
|
|
|
|
object.user_option.external_links_in_new_tab
|
|
|
|
end
|
|
|
|
|
|
|
|
def dynamic_favicon
|
|
|
|
object.user_option.dynamic_favicon
|
|
|
|
end
|
|
|
|
|
|
|
|
def automatically_unpin_topics
|
|
|
|
object.user_option.automatically_unpin_topics
|
|
|
|
end
|
|
|
|
|
2016-02-17 23:57:22 -06:00
|
|
|
def should_be_redirected_to_top
|
|
|
|
object.user_option.should_be_redirected_to_top
|
|
|
|
end
|
|
|
|
|
|
|
|
def redirected_to_top
|
|
|
|
object.user_option.redirected_to_top
|
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
def site_flagged_posts_count
|
|
|
|
PostAction.flagged_posts_count
|
|
|
|
end
|
2013-02-14 16:58:44 -06:00
|
|
|
|
2017-08-28 11:07:30 -05:00
|
|
|
def can_send_private_email_messages
|
2018-08-26 20:38:11 -05:00
|
|
|
scope.can_send_private_messages_to_email?
|
2017-08-28 11:07:30 -05:00
|
|
|
end
|
|
|
|
|
2013-06-11 11:30:38 -05:00
|
|
|
def can_edit
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2013-11-06 11:56:26 -06:00
|
|
|
def can_invite_to_forum
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_can_invite_to_forum?
|
|
|
|
scope.can_invite_to_forum?
|
|
|
|
end
|
|
|
|
|
2014-01-21 11:42:20 -06:00
|
|
|
def no_password
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_no_password?
|
|
|
|
!object.has_password?
|
|
|
|
end
|
|
|
|
|
2014-02-13 10:42:35 -06:00
|
|
|
def include_can_delete_account?
|
2014-02-13 14:51:19 -06:00
|
|
|
scope.can_delete_user?(object)
|
2014-02-13 10:42:35 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
def can_delete_account
|
2014-02-13 14:51:19 -06:00
|
|
|
true
|
2014-02-13 10:42:35 -06:00
|
|
|
end
|
|
|
|
|
2015-09-21 13:28:20 -05:00
|
|
|
def include_redirected_to_top?
|
2016-02-17 23:57:22 -06:00
|
|
|
object.user_option.redirected_to_top.present?
|
2014-03-07 11:58:53 -06:00
|
|
|
end
|
|
|
|
|
2014-06-05 15:16:30 -05:00
|
|
|
def custom_fields
|
2014-06-10 20:57:22 -05:00
|
|
|
fields = nil
|
|
|
|
if SiteSetting.public_user_custom_fields.present?
|
|
|
|
fields = SiteSetting.public_user_custom_fields.split('|')
|
|
|
|
end
|
|
|
|
DiscoursePluginRegistry.serialized_current_user_fields.each do |f|
|
|
|
|
fields ||= []
|
|
|
|
fields << f
|
|
|
|
end
|
|
|
|
|
|
|
|
if fields.present?
|
2017-11-14 18:55:37 -06:00
|
|
|
User.custom_fields_for_ids([object.id], fields)[object.id] || {}
|
2014-06-10 20:57:22 -05:00
|
|
|
else
|
|
|
|
{}
|
|
|
|
end
|
2014-06-05 15:16:30 -05:00
|
|
|
end
|
|
|
|
|
2014-06-17 20:21:40 -05:00
|
|
|
def muted_category_ids
|
2018-07-27 01:41:07 -05:00
|
|
|
CategoryUser.lookup(object, :muted).pluck(:category_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def top_category_ids
|
2018-07-30 05:36:36 -05:00
|
|
|
omitted_notification_levels = [CategoryUser.notification_levels[:muted], CategoryUser.notification_levels[:regular]]
|
2018-07-27 01:41:07 -05:00
|
|
|
CategoryUser.where(user_id: object.id)
|
2018-07-30 05:36:36 -05:00
|
|
|
.where.not(notification_level: omitted_notification_levels)
|
2018-07-27 01:41:07 -05:00
|
|
|
.order("
|
|
|
|
CASE
|
|
|
|
WHEN notification_level = 3 THEN 1
|
|
|
|
WHEN notification_level = 2 THEN 2
|
|
|
|
WHEN notification_level = 4 THEN 3
|
|
|
|
END")
|
2017-07-27 20:20:09 -05:00
|
|
|
.pluck(:category_id)
|
2018-07-30 22:42:30 -05:00
|
|
|
.slice(0, SiteSetting.header_dropdown_category_count)
|
2014-06-17 20:21:40 -05:00
|
|
|
end
|
|
|
|
|
2014-06-18 13:04:10 -05:00
|
|
|
def dismissed_banner_key
|
|
|
|
object.user_profile.dismissed_banner_key
|
|
|
|
end
|
|
|
|
|
2015-04-07 03:02:10 -05:00
|
|
|
def is_anonymous
|
2015-04-07 21:29:43 -05:00
|
|
|
object.anonymous?
|
2015-04-07 03:02:10 -05:00
|
|
|
end
|
|
|
|
|
2015-04-10 15:29:13 -05:00
|
|
|
def post_queue_new_count
|
|
|
|
QueuedPost.new_count
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_post_queue_new_count?
|
|
|
|
object.staff?
|
|
|
|
end
|
|
|
|
|
2015-04-21 12:59:57 -05:00
|
|
|
def show_queued_posts
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_show_queued_posts?
|
2015-05-28 10:53:59 -05:00
|
|
|
object.staff? && (NewPostManager.queue_enabled? || QueuedPost.new_count > 0)
|
2015-04-21 12:59:57 -05:00
|
|
|
end
|
|
|
|
|
2016-06-01 15:47:42 -05:00
|
|
|
def mailing_list_mode
|
|
|
|
object.user_option.mailing_list_mode
|
|
|
|
end
|
|
|
|
|
2017-08-11 21:05:16 -05:00
|
|
|
def include_primary_group_id?
|
|
|
|
object.primary_group_id.present?
|
|
|
|
end
|
|
|
|
|
2018-03-07 21:54:31 -06:00
|
|
|
def external_id
|
|
|
|
object&.single_sign_on_record&.external_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_external_id?
|
|
|
|
SiteSetting.enable_sso
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|