2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
class AdminDetailedUserSerializer < AdminUserSerializer
|
|
|
|
|
|
|
|
attributes :moderator,
|
2013-02-07 23:45:24 +08:00
|
|
|
:can_grant_admin,
|
2013-02-06 03:16:51 +08:00
|
|
|
:can_revoke_admin,
|
2013-02-13 06:58:08 +08:00
|
|
|
:can_grant_moderation,
|
|
|
|
:can_revoke_moderation,
|
|
|
|
:can_impersonate,
|
2013-02-06 03:16:51 +08:00
|
|
|
:like_count,
|
2014-08-23 03:23:10 +08:00
|
|
|
:like_given_count,
|
2013-02-06 03:16:51 +08:00
|
|
|
:post_count,
|
2013-07-27 03:40:08 +08:00
|
|
|
:topic_count,
|
2021-08-02 22:15:53 +08:00
|
|
|
:post_edits_count,
|
2013-02-06 03:16:51 +08:00
|
|
|
:flags_given_count,
|
|
|
|
:flags_received_count,
|
2013-02-07 15:11:56 +08:00
|
|
|
:private_topics_count,
|
2013-07-27 03:40:08 +08:00
|
|
|
:can_delete_all_posts,
|
2013-11-01 22:47:03 +08:00
|
|
|
:can_be_deleted,
|
2015-03-07 05:44:54 +08:00
|
|
|
:can_be_anonymized,
|
2020-04-22 20:12:09 +08:00
|
|
|
:can_be_merged,
|
2017-12-08 02:20:42 +08:00
|
|
|
:full_suspend_reason,
|
2017-09-14 04:44:47 +08:00
|
|
|
:suspended_till,
|
2017-11-14 02:41:36 +08:00
|
|
|
:silence_reason,
|
2021-07-13 02:36:56 +08:00
|
|
|
:penalty_counts,
|
|
|
|
:next_penalty,
|
2014-04-16 18:22:21 +08:00
|
|
|
:primary_group_id,
|
2014-09-08 23:11:56 +08:00
|
|
|
:badge_count,
|
2014-09-27 02:48:34 +08:00
|
|
|
:warnings_received_count,
|
2016-05-07 01:34:33 +08:00
|
|
|
:user_fields,
|
|
|
|
:bounce_score,
|
2017-02-21 20:45:30 +08:00
|
|
|
:reset_bounce_score_after,
|
2017-12-22 09:18:12 +08:00
|
|
|
:can_view_action_logs,
|
|
|
|
:second_factor_enabled,
|
2019-11-05 22:10:23 +08:00
|
|
|
:can_disable_second_factor,
|
2020-09-15 22:00:10 +08:00
|
|
|
:can_delete_sso_record,
|
2022-03-04 00:17:02 +08:00
|
|
|
:api_key_count,
|
|
|
|
:external_ids
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
has_one :approved_by, serializer: BasicUserSerializer, embed: :objects
|
2013-11-08 02:53:32 +08:00
|
|
|
has_one :suspended_by, serializer: BasicUserSerializer, embed: :objects
|
2017-11-14 02:41:36 +08:00
|
|
|
has_one :silenced_by, serializer: BasicUserSerializer, embed: :objects
|
2014-09-25 08:19:26 +08:00
|
|
|
has_one :tl3_requirements, serializer: TrustLevel3RequirementsSerializer, embed: :objects
|
2014-07-14 02:11:38 +08:00
|
|
|
has_many :groups, embed: :object, serializer: BasicGroupSerializer
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2018-02-20 14:44:51 +08:00
|
|
|
def second_factor_enabled
|
2019-11-08 13:11:53 +08:00
|
|
|
object.totp_enabled? || object.security_keys_enabled?
|
2017-12-22 09:18:12 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def can_disable_second_factor
|
2020-07-08 03:19:30 +08:00
|
|
|
scope.is_admin? && (object&.id != scope.user.id)
|
2017-12-22 09:18:12 +08:00
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
def can_revoke_admin
|
|
|
|
scope.can_revoke_admin?(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_grant_admin
|
|
|
|
scope.can_grant_admin?(object)
|
|
|
|
end
|
2013-02-07 23:45:24 +08:00
|
|
|
|
2013-02-13 06:58:08 +08:00
|
|
|
def can_revoke_moderation
|
|
|
|
scope.can_revoke_moderation?(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_grant_moderation
|
|
|
|
scope.can_grant_moderation?(object)
|
|
|
|
end
|
|
|
|
|
2013-02-07 15:11:56 +08:00
|
|
|
def can_delete_all_posts
|
|
|
|
scope.can_delete_all_posts?(object)
|
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-07-27 03:40:08 +08:00
|
|
|
def can_be_deleted
|
|
|
|
scope.can_delete_user?(object)
|
|
|
|
end
|
|
|
|
|
2015-03-07 05:44:54 +08:00
|
|
|
def can_be_anonymized
|
|
|
|
scope.can_anonymize_user?(object)
|
|
|
|
end
|
|
|
|
|
2020-04-22 20:12:09 +08:00
|
|
|
def can_be_merged
|
|
|
|
scope.can_merge_user?(object)
|
|
|
|
end
|
|
|
|
|
2013-07-27 03:40:08 +08:00
|
|
|
def topic_count
|
|
|
|
object.topics.count
|
|
|
|
end
|
|
|
|
|
2013-10-23 03:53:08 +08:00
|
|
|
def include_api_key?
|
2015-10-15 03:40:23 +08:00
|
|
|
scope.is_admin? && api_key.present?
|
2013-10-23 03:53:08 +08:00
|
|
|
end
|
|
|
|
|
2013-11-08 02:53:32 +08:00
|
|
|
def suspended_by
|
|
|
|
object.suspend_record.try(:acting_user)
|
2013-11-01 22:47:03 +08:00
|
|
|
end
|
|
|
|
|
2017-11-14 02:41:36 +08:00
|
|
|
def silence_reason
|
|
|
|
object.silence_reason
|
|
|
|
end
|
|
|
|
|
2021-07-13 02:36:56 +08:00
|
|
|
def penalty_counts
|
|
|
|
TrustLevel3Requirements.new(object).penalty_counts
|
|
|
|
end
|
|
|
|
|
|
|
|
def next_penalty
|
|
|
|
step_number = penalty_counts.total
|
|
|
|
steps = SiteSetting.penalty_step_hours.split('|')
|
|
|
|
step_number = [step_number, steps.length].min
|
|
|
|
penalty_hours = steps[step_number]
|
|
|
|
Integer(penalty_hours, 10).hours.from_now
|
|
|
|
rescue
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2017-11-14 02:41:36 +08:00
|
|
|
def silenced_by
|
|
|
|
object.silenced_record.try(:acting_user)
|
|
|
|
end
|
|
|
|
|
2014-09-25 08:19:26 +08:00
|
|
|
def include_tl3_requirements?
|
2014-09-05 13:20:39 +08:00
|
|
|
object.has_trust_level?(TrustLevel[2])
|
2014-01-23 06:09:56 +08:00
|
|
|
end
|
|
|
|
|
2014-09-27 02:48:34 +08:00
|
|
|
def include_user_fields?
|
|
|
|
object.user_fields.present?
|
|
|
|
end
|
|
|
|
|
2016-05-07 01:34:33 +08:00
|
|
|
def bounce_score
|
|
|
|
object.user_stat.bounce_score
|
|
|
|
end
|
|
|
|
|
|
|
|
def reset_bounce_score_after
|
|
|
|
object.user_stat.reset_bounce_score_after
|
|
|
|
end
|
|
|
|
|
2017-02-21 20:45:30 +08:00
|
|
|
def can_view_action_logs
|
|
|
|
scope.can_view_action_logs?(object)
|
|
|
|
end
|
|
|
|
|
2017-03-18 05:01:45 +08:00
|
|
|
def post_count
|
|
|
|
object.posts.count
|
|
|
|
end
|
|
|
|
|
2019-11-05 22:10:23 +08:00
|
|
|
def api_key_count
|
|
|
|
object.api_keys.active.count
|
|
|
|
end
|
2020-09-15 22:00:10 +08:00
|
|
|
|
2022-03-04 00:17:02 +08:00
|
|
|
def external_ids
|
|
|
|
external_ids = {}
|
|
|
|
|
|
|
|
object.user_associated_accounts.map do |user_associated_account|
|
|
|
|
external_ids[user_associated_account.provider_name] = user_associated_account.provider_uid
|
|
|
|
end
|
|
|
|
|
|
|
|
external_ids
|
|
|
|
end
|
|
|
|
|
2020-09-15 22:00:10 +08:00
|
|
|
def can_delete_sso_record
|
|
|
|
scope.can_delete_sso_record?(object)
|
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|