discourse/app/serializers/user_serializer.rb

448 lines
10 KiB
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
class UserSerializer < BasicUserSerializer
2013-02-07 10:45:24 -05:00
attr_accessor :omit_stats,
:topic_post_count
def self.staff_attributes(*attrs)
attributes(*attrs)
attrs.each do |attr|
define_method "include_#{attr}?" do
scope.is_staff?
end
end
end
def self.private_attributes(*attrs)
attributes(*attrs)
attrs.each do |attr|
define_method "include_#{attr}?" do
can_edit
end
end
end
# attributes that are hidden for TL0 users when seen by anonymous
def self.untrusted_attributes(*attrs)
attrs.each do |attr|
method_name = "include_#{attr}?"
define_method(method_name) do
return false if scope.restrict_user_fields?(object)
send(attr).present?
end
end
end
2013-02-07 10:45:24 -05:00
attributes :name,
:email,
:last_posted_at,
:last_seen_at,
2013-02-05 14:16:51 -05:00
:bio_raw,
2013-02-07 10:45:24 -05:00
:bio_cooked,
:created_at,
:website,
:website_name,
:profile_background,
:card_background,
:location,
2013-02-07 10:45:24 -05:00
:can_edit,
:can_edit_username,
:can_edit_email,
:can_edit_name,
2013-02-07 10:45:24 -05:00
:stats,
:can_send_private_messages,
2013-02-05 14:16:51 -05:00
:can_send_private_message_to_user,
:bio_excerpt,
2013-05-02 03:40:44 -04:00
:trust_level,
:moderator,
:admin,
:title,
:suspend_reason,
:suspended_till,
2014-06-01 22:59:54 -04:00
:uploaded_avatar_id,
:badge_count,
2014-07-27 13:12:36 -04:00
:has_title_badges,
:custom_fields,
:user_fields,
2015-04-21 14:36:46 -04:00
:topic_post_count,
2015-09-14 03:51:17 -04:00
:pending_count,
2016-09-15 16:15:08 -04:00
:profile_view_count,
2017-11-08 15:25:56 -05:00
:time_read,
:recent_time_read,
2016-09-15 16:15:08 -04:00
:primary_group_name,
:primary_group_flair_url,
:primary_group_flair_bg_color,
:primary_group_flair_color,
:staged,
2018-06-28 04:12:32 -04:00
:second_factor_enabled,
:second_factor_backup_enabled,
:second_factor_remaining_backup_codes,
:associated_accounts
2013-02-05 14:16:51 -05:00
has_one :invited_by, embed: :object, serializer: BasicUserSerializer
has_many :groups, embed: :object, serializer: BasicGroupSerializer
has_many :group_users, embed: :object, serializer: BasicGroupUserSerializer
has_many :featured_user_badges, embed: :ids, serializer: UserBadgeSerializer, root: :user_badges
has_one :user_option, embed: :object, serializer: UserOptionSerializer
def include_user_option?
can_edit
end
2013-02-05 14:16:51 -05:00
staff_attributes :post_count,
:can_be_deleted,
:can_delete_all_posts
private_attributes :locale,
:muted_category_ids,
:watched_tags,
:watching_first_post_tags,
:tracked_tags,
:muted_tags,
:tracked_category_ids,
:watched_category_ids,
:watched_first_post_category_ids,
:private_messages_stats,
2015-09-11 06:56:34 -04:00
:system_avatar_upload_id,
:system_avatar_template,
:gravatar_avatar_upload_id,
2015-09-11 06:56:34 -04:00
:gravatar_avatar_template,
:custom_avatar_upload_id,
2015-09-11 06:56:34 -04:00
:custom_avatar_template,
:has_title_badges,
:muted_usernames,
:mailing_list_posts_per_day,
:can_change_bio,
:user_api_keys
untrusted_attributes :bio_raw,
:bio_cooked,
:bio_excerpt,
:location,
:website,
:website_name,
:profile_background,
:card_background
###
### ATTRIBUTES
###
def mailing_list_posts_per_day
val = Post.estimate_posts_per_day
2017-07-27 21:20:09 -04:00
[val, SiteSetting.max_emails_per_day_per_user].min
end
def groups
object.groups.order(:id)
2017-07-27 21:20:09 -04:00
.visible_groups(scope.user)
end
def group_users
object.group_users.order(:group_id)
end
def include_email?
(object.id && object.id == scope.user.try(:id)) ||
(scope.is_staff? && object.staged?)
end
def include_associated_accounts?
(object.id && object.id == scope.user.try(:id))
end
def include_second_factor_enabled?
(object&.id == scope.user&.id) || scope.is_staff?
end
def second_factor_enabled
object.totp_enabled?
end
2018-06-28 04:12:32 -04:00
def include_second_factor_backup_enabled?
object&.id == scope.user&.id
end
def second_factor_backup_enabled
object.backup_codes_enabled?
end
def include_second_factor_remaining_backup_codes?
(object&.id == scope.user&.id) && object.backup_codes_enabled?
end
def second_factor_remaining_backup_codes
object.remaining_backup_codes
end
def can_change_bio
!(SiteSetting.enable_sso && SiteSetting.sso_overrides_bio)
end
def user_api_keys
keys = object.user_api_keys.where(revoked_at: nil).map do |k|
{
id: k.id,
application_name: k.application_name,
2017-07-27 21:20:09 -04:00
scopes: k.scopes.map { |s| I18n.t("user_api_key.scopes.#{s}") },
created_at: k.created_at
}
end
keys.length > 0 ? keys : nil
end
def bio_raw
object.user_profile.bio_raw
end
def bio_cooked
object.user_profile.bio_processed
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
def website
object.user_profile.website
end
2013-02-05 14:16:51 -05:00
def website_name
uri = begin
URI(website.to_s)
rescue URI::Error
end
return if uri.nil? || uri.host.nil?
2017-07-27 21:20:09 -04:00
uri.host.sub(/^www\./, '') + uri.path
end
def include_website_name
website.present?
end
def profile_background
object.user_profile.profile_background
end
def card_background
object.user_profile.card_background
end
def location
object.user_profile.location
end
2013-02-05 14:16:51 -05:00
def can_edit
scope.can_edit?(object)
end
def can_edit_username
scope.can_edit_username?(object)
end
def can_edit_email
scope.can_edit_email?(object)
end
def can_edit_name
scope.can_edit_name?(object)
end
def include_stats?
!omit_stats == true
end
def stats
UserAction.stats(object.id, scope)
end
# Needed because 'send_private_message_to_user' will always return false
# when the current user is being serialized
def can_send_private_messages
scope.can_send_private_message?(Discourse.system_user)
end
def can_send_private_message_to_user
scope.can_send_private_message?(object) && scope.current_user != object
2014-06-07 00:54:32 -04:00
end
def bio_excerpt
2017-07-27 21:20:09 -04:00
object.user_profile.bio_excerpt(350 , keep_newlines: true, keep_emoji_images: true)
2014-06-10 01:19:08 -04:00
end
def include_suspend_reason?
scope.can_see_suspension_reason?(object) && object.suspended?
2014-06-10 01:19:08 -04:00
end
def include_suspended_till?
object.suspended?
2014-06-10 01:19:08 -04:00
end
2016-09-15 16:15:08 -04:00
def primary_group_name
object.primary_group.try(:name)
end
def primary_group_flair_url
object.try(:primary_group).try(:flair_url)
end
def primary_group_flair_bg_color
object.try(:primary_group).try(:flair_bg_color)
end
def primary_group_flair_color
object.try(:primary_group).try(:flair_color)
end
###
### STAFF ATTRIBUTES
###
def post_count
object.user_stat.try(:post_count)
end
def can_be_deleted
scope.can_delete_user?(object)
end
def can_delete_all_posts
scope.can_delete_all_posts?(object)
end
###
### PRIVATE ATTRIBUTES
###
def muted_tags
TagUser.lookup(object, :muted).joins(:tag).pluck('tags.name')
end
def tracked_tags
TagUser.lookup(object, :tracking).joins(:tag).pluck('tags.name')
end
def watching_first_post_tags
TagUser.lookup(object, :watching_first_post).joins(:tag).pluck('tags.name')
end
def watched_tags
TagUser.lookup(object, :watching).joins(:tag).pluck('tags.name')
end
def muted_category_ids
CategoryUser.lookup(object, :muted).pluck(:category_id)
end
def tracked_category_ids
CategoryUser.lookup(object, :tracking).pluck(:category_id)
end
def watched_category_ids
CategoryUser.lookup(object, :watching).pluck(:category_id)
end
def watched_first_post_category_ids
CategoryUser.lookup(object, :watching_first_post).pluck(:category_id)
end
def muted_usernames
MutedUser.where(user_id: object.id).joins(:muted_user).pluck(:username)
end
def include_private_messages_stats?
can_edit && !(omit_stats == true)
end
def private_messages_stats
UserAction.private_messages_stats(object.id, scope)
end
2015-09-11 06:56:34 -04:00
def system_avatar_upload_id
# should be left blank
end
def system_avatar_template
User.system_avatar_template(object.username)
end
2018-05-20 23:25:01 -04:00
def include_gravatar_avatar_upload_id?
object.user_avatar&.gravatar_upload_id
end
def gravatar_avatar_upload_id
2018-05-20 23:25:01 -04:00
object.user_avatar.gravatar_upload_id
end
def include_gravatar_avatar_template?
include_gravatar_avatar_upload_id?
end
2015-09-11 06:56:34 -04:00
def gravatar_avatar_template
2018-05-20 23:25:01 -04:00
User.avatar_template(object.username, object.user_avatar.gravatar_upload_id)
end
def include_custom_avatar_upload_id?
object.user_avatar&.custom_upload_id
2015-09-11 06:56:34 -04:00
end
def custom_avatar_upload_id
2018-05-20 23:25:01 -04:00
object.user_avatar.custom_upload_id
end
def include_custom_avatar_template?
include_custom_avatar_upload_id?
end
2015-09-11 06:56:34 -04:00
def custom_avatar_template
2018-05-20 23:25:01 -04:00
User.avatar_template(object.username, object.user_avatar.custom_upload_id)
2015-09-11 06:56:34 -04:00
end
def has_title_badges
2017-08-23 18:54:51 -04:00
object.badges.where(allow_title: true).exists?
end
def user_fields
object.user_fields
end
def include_user_fields?
user_fields.present?
end
def include_topic_post_count?
topic_post_count.present?
end
def custom_fields
fields = User.whitelisted_user_custom_fields(scope)
if scope.can_edit?(object)
fields += DiscoursePluginRegistry.serialized_current_user_fields.to_a
end
if fields.present?
User.custom_fields_for_ids([object.id], fields)[object.id] || {}
else
{}
end
end
2015-04-21 14:36:46 -04:00
def pending_count
0
end
2015-09-14 03:51:17 -04:00
def profile_view_count
object.user_profile.views
end
2017-11-08 15:25:56 -05:00
def time_read
object.user_stat&.time_read
end
def recent_time_read
time = object.recent_time_read
2017-11-08 15:25:56 -05:00
end
def include_staged?
scope.is_staff?
end
2013-02-05 14:16:51 -05:00
end