2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
class CurrentUserSerializer < BasicUserSerializer
|
2022-06-14 02:39:56 -05:00
|
|
|
include UserTagNotificationsMixin
|
2022-12-22 21:45:29 -06:00
|
|
|
include UserSidebarMixin
|
2024-02-26 07:40:48 -06:00
|
|
|
include UserStatusMixin
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2013-02-25 10:42:20 -06:00
|
|
|
attributes :name,
|
|
|
|
:unread_notifications,
|
2020-03-31 18:09:20 -05:00
|
|
|
:unread_high_priority_notifications,
|
2022-08-03 00:57:59 -05:00
|
|
|
:all_unread_notifications_count,
|
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-14 11:10:53 -06:00
|
|
|
:moderator?,
|
2013-05-02 02:22:27 -05:00
|
|
|
:staff?,
|
2022-06-29 19:18:12 -05:00
|
|
|
:whisperer?,
|
2015-01-21 14:58:04 -06:00
|
|
|
:title,
|
2020-05-14 17:42:00 -05:00
|
|
|
:any_posts,
|
2013-06-11 11:30:38 -05:00
|
|
|
:trust_level,
|
2017-08-28 11:07:30 -05:00
|
|
|
:can_send_private_email_messages,
|
2021-03-31 19:22:40 -05:00
|
|
|
:can_send_private_messages,
|
2024-02-01 17:32:45 -06:00
|
|
|
:can_upload_avatar,
|
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,
|
2024-02-07 17:43:34 -06:00
|
|
|
:can_post_anonymously,
|
2024-02-13 22:17:19 -06:00
|
|
|
:can_ignore_users,
|
2024-02-18 20:25:59 -06:00
|
|
|
:can_delete_all_posts_and_topics,
|
|
|
|
:can_summarize,
|
2014-06-17 20:21:40 -05:00
|
|
|
:custom_fields,
|
2014-06-18 13:04:10 -05:00
|
|
|
:muted_category_ids,
|
2022-02-16 17:42:02 -06:00
|
|
|
:indirectly_muted_category_ids,
|
2021-05-05 18:14:07 -05:00
|
|
|
:regular_category_ids,
|
|
|
|
:tracked_category_ids,
|
|
|
|
:watched_first_post_category_ids,
|
|
|
|
:watched_category_ids,
|
|
|
|
:watched_tags,
|
|
|
|
:watching_first_post_tags,
|
|
|
|
:tracked_tags,
|
|
|
|
:muted_tags,
|
|
|
|
:regular_tags,
|
2015-04-07 03:02:10 -05:00
|
|
|
:dismissed_banner_key,
|
2015-04-10 15:29:13 -05:00
|
|
|
:is_anonymous,
|
2019-01-03 11:03:01 -06:00
|
|
|
:reviewable_count,
|
2022-08-03 00:57:59 -05:00
|
|
|
:unseen_reviewable_count,
|
2022-11-30 17:05:32 -06:00
|
|
|
:new_personal_messages_notifications_count,
|
2021-08-26 11:16:00 -05:00
|
|
|
:read_faq?,
|
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,
|
2021-07-08 02:46:21 -05:00
|
|
|
:flair_group_id,
|
2018-02-08 11:56:10 -06:00
|
|
|
:can_create_topic,
|
2020-08-19 09:41:40 -05:00
|
|
|
:can_create_group,
|
2018-06-13 13:57:32 -05:00
|
|
|
:link_posting_access,
|
2018-07-27 01:41:07 -05:00
|
|
|
:external_id,
|
2022-09-27 02:10:20 -05:00
|
|
|
:associated_account_ids,
|
2018-10-10 12:00:08 -05:00
|
|
|
:top_category_ids,
|
2019-03-19 23:40:25 -05:00
|
|
|
:groups,
|
2019-04-05 09:13:36 -05:00
|
|
|
:second_factor_enabled,
|
2019-04-11 18:02:18 -05:00
|
|
|
:ignored_users,
|
2020-08-14 08:40:56 -05:00
|
|
|
:featured_topic,
|
2020-12-18 09:03:51 -06:00
|
|
|
:do_not_disturb_until,
|
2021-03-19 08:19:15 -05:00
|
|
|
:has_topic_draft,
|
2021-05-05 18:14:07 -05:00
|
|
|
:can_review,
|
2021-07-27 06:05:33 -05:00
|
|
|
:draft_count,
|
2022-04-28 02:27:06 -05:00
|
|
|
:pending_posts_count,
|
2022-08-30 20:16:28 -05:00
|
|
|
:grouped_unread_notifications,
|
2022-12-22 21:45:29 -06:00
|
|
|
:display_sidebar_tags,
|
|
|
|
:sidebar_tags,
|
|
|
|
:sidebar_category_ids,
|
2023-02-02 21:44:40 -06:00
|
|
|
:sidebar_sections,
|
2024-01-25 10:12:06 -06:00
|
|
|
:new_new_view_enabled?,
|
2024-02-08 20:52:22 -06:00
|
|
|
:use_experimental_topic_bulk_actions?,
|
2024-02-23 12:08:15 -06:00
|
|
|
:use_admin_sidebar,
|
2024-03-03 21:48:16 -06:00
|
|
|
:can_view_raw_email
|
2021-08-26 11:16:00 -05:00
|
|
|
|
|
|
|
delegate :user_stat, to: :object, private: true
|
|
|
|
delegate :any_posts, :draft_count, :pending_posts_count, :read_faq?, to: :user_stat
|
2018-02-08 11:56:10 -06:00
|
|
|
|
2022-12-05 10:25:30 -06:00
|
|
|
has_one :user_option, embed: :object, serializer: CurrentUserOptionSerializer
|
|
|
|
|
2024-02-26 07:40:48 -06:00
|
|
|
def initialize(object, options = {})
|
|
|
|
super
|
|
|
|
options[:include_status] = true
|
|
|
|
end
|
|
|
|
|
2023-02-21 15:55:44 -06:00
|
|
|
def sidebar_sections
|
|
|
|
SidebarSection
|
2023-04-05 17:55:47 -05:00
|
|
|
.public_sections
|
|
|
|
.or(SidebarSection.where(user_id: object.id))
|
2023-05-24 20:10:32 -05:00
|
|
|
.includes(:sidebar_urls)
|
2023-05-03 21:14:09 -05:00
|
|
|
.order("(section_type IS NOT NULL) DESC, (public IS TRUE) DESC")
|
2023-02-21 15:55:44 -06:00
|
|
|
.map { |section| SidebarSectionSerializer.new(section, root: false) }
|
|
|
|
end
|
|
|
|
|
2018-12-18 01:41:42 -06:00
|
|
|
def groups
|
2021-05-12 05:06:39 -05:00
|
|
|
owned_group_ids = GroupUser.where(user_id: id, owner: true).pluck(:group_id).to_set
|
2022-09-20 23:32:47 -05:00
|
|
|
|
2023-01-09 06:20:10 -06:00
|
|
|
object
|
|
|
|
.visible_groups
|
|
|
|
.pluck(:id, :name, :has_messages)
|
|
|
|
.map do |id, name, has_messages|
|
|
|
|
group = { id: id, name: name, has_messages: has_messages }
|
|
|
|
group[:owner] = true if owned_group_ids.include?(id)
|
|
|
|
group
|
|
|
|
end
|
2018-12-18 01:41:42 -06:00
|
|
|
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
|
|
|
|
2020-08-19 09:41:40 -05:00
|
|
|
def can_create_group
|
|
|
|
scope.can_create_group?
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_can_create_group?
|
|
|
|
scope.can_create_group?
|
|
|
|
end
|
|
|
|
|
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
|
|
|
|
|
2021-03-31 19:22:40 -05:00
|
|
|
def can_send_private_messages
|
2022-11-06 17:11:18 -06:00
|
|
|
scope.can_send_private_messages?
|
2021-03-31 19:22:40 -05:00
|
|
|
end
|
|
|
|
|
2024-02-08 20:52:22 -06:00
|
|
|
def use_admin_sidebar
|
2024-04-28 20:32:47 -05:00
|
|
|
object.staff? && object.in_any_groups?(SiteSetting.admin_sidebar_enabled_groups_map)
|
2024-02-08 20:52:22 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
def include_user_admin_sidebar?
|
|
|
|
object.admin?
|
|
|
|
end
|
|
|
|
|
2024-02-07 17:43:34 -06:00
|
|
|
def can_post_anonymously
|
|
|
|
SiteSetting.allow_anonymous_posting &&
|
|
|
|
(is_anonymous || object.in_any_groups?(SiteSetting.anonymous_posting_allowed_groups_map))
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_ignore_users
|
|
|
|
!is_anonymous && object.in_any_groups?(SiteSetting.ignore_allowed_groups_map)
|
|
|
|
end
|
|
|
|
|
2024-02-18 20:25:59 -06:00
|
|
|
def can_delete_all_posts_and_topics
|
|
|
|
object.in_any_groups?(SiteSetting.delete_all_posts_and_topics_allowed_groups_map)
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_summarize
|
|
|
|
object.in_any_groups?(SiteSetting.custom_summarization_allowed_groups_map)
|
|
|
|
end
|
|
|
|
|
2024-02-01 17:32:45 -06:00
|
|
|
def can_upload_avatar
|
|
|
|
!is_anonymous && object.in_any_groups?(SiteSetting.uploaded_avatars_allowed_groups_map)
|
|
|
|
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
|
2020-05-06 15:57:26 -05:00
|
|
|
scope.can_invite_to_forum?
|
2013-11-06 11:56:26 -06:00
|
|
|
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
|
|
|
|
|
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?
|
2023-01-09 06:20:10 -06:00
|
|
|
fields = SiteSetting.public_user_custom_fields.split("|")
|
2014-06-10 20:57:22 -05:00
|
|
|
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
|
2021-05-05 18:14:07 -05:00
|
|
|
categories_with_notification_level(:muted)
|
2018-07-27 01:41:07 -05:00
|
|
|
end
|
|
|
|
|
2022-02-16 17:42:02 -06:00
|
|
|
def indirectly_muted_category_ids
|
|
|
|
CategoryUser.indirectly_muted_category_ids(object)
|
|
|
|
end
|
|
|
|
|
2021-05-05 18:14:07 -05:00
|
|
|
def regular_category_ids
|
|
|
|
categories_with_notification_level(:regular)
|
|
|
|
end
|
|
|
|
|
|
|
|
def tracked_category_ids
|
|
|
|
categories_with_notification_level(:tracking)
|
|
|
|
end
|
|
|
|
|
|
|
|
def watched_category_ids
|
|
|
|
categories_with_notification_level(:watching)
|
|
|
|
end
|
|
|
|
|
|
|
|
def watched_first_post_category_ids
|
|
|
|
categories_with_notification_level(:watching_first_post)
|
|
|
|
end
|
|
|
|
|
2019-04-05 09:13:36 -05:00
|
|
|
def ignored_users
|
|
|
|
IgnoredUser.where(user: object.id).joins(:ignored_user).pluck(:username)
|
|
|
|
end
|
|
|
|
|
2018-07-27 01:41:07 -05:00
|
|
|
def top_category_ids
|
2023-01-09 06:20:10 -06:00
|
|
|
omitted_notification_levels = [
|
|
|
|
CategoryUser.notification_levels[:muted],
|
|
|
|
CategoryUser.notification_levels[:regular],
|
|
|
|
]
|
|
|
|
CategoryUser
|
|
|
|
.where(user_id: object.id)
|
2018-07-30 05:36:36 -05:00
|
|
|
.where.not(notification_level: omitted_notification_levels)
|
2023-01-09 06:20:10 -06:00
|
|
|
.order(
|
|
|
|
"
|
2018-07-27 01:41:07 -05:00
|
|
|
CASE
|
|
|
|
WHEN notification_level = 3 THEN 1
|
|
|
|
WHEN notification_level = 2 THEN 2
|
|
|
|
WHEN notification_level = 4 THEN 3
|
2023-01-09 06:20:10 -06:00
|
|
|
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
|
|
|
|
|
2021-03-19 14:20:41 -05:00
|
|
|
def can_review
|
|
|
|
scope.can_see_review_queue?
|
|
|
|
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?
|
2021-02-08 04:04:33 -06:00
|
|
|
SiteSetting.enable_discourse_connect
|
2018-03-07 21:54:31 -06:00
|
|
|
end
|
2019-03-19 23:40:25 -05:00
|
|
|
|
2022-09-27 02:10:20 -05:00
|
|
|
def associated_account_ids
|
|
|
|
values = {}
|
|
|
|
|
|
|
|
object.user_associated_accounts.map do |user_associated_account|
|
|
|
|
values[user_associated_account.provider_name] = user_associated_account.provider_uid
|
|
|
|
end
|
|
|
|
|
|
|
|
values
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_associated_account_ids?
|
|
|
|
SiteSetting.include_associated_account_ids
|
|
|
|
end
|
|
|
|
|
2019-03-19 23:40:25 -05:00
|
|
|
def second_factor_enabled
|
2022-12-07 16:41:22 -06:00
|
|
|
object.totp_enabled? || object.security_keys_enabled?
|
2019-03-19 23:40:25 -05:00
|
|
|
end
|
2019-12-09 13:15:47 -06:00
|
|
|
|
|
|
|
def featured_topic
|
|
|
|
object.user_profile.featured_topic
|
|
|
|
end
|
2021-03-19 08:19:15 -05:00
|
|
|
|
|
|
|
def has_topic_draft
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_has_topic_draft?
|
|
|
|
Draft.has_topic_draft(object)
|
|
|
|
end
|
2022-04-28 02:27:06 -05:00
|
|
|
|
2022-11-30 17:09:57 -06:00
|
|
|
def unseen_reviewable_count
|
|
|
|
Reviewable.unseen_reviewable_count(object)
|
|
|
|
end
|
2024-01-25 10:12:06 -06:00
|
|
|
|
|
|
|
def use_experimental_topic_bulk_actions?
|
|
|
|
scope.user.in_any_groups?(SiteSetting.experimental_topic_bulk_actions_enabled_groups_map)
|
|
|
|
end
|
2024-03-03 21:48:16 -06:00
|
|
|
|
|
|
|
def can_view_raw_email
|
|
|
|
scope.user.in_any_groups?(SiteSetting.view_raw_email_allowed_groups_map)
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|