discourse/app/serializers/user_serializer.rb

241 lines
5.5 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
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
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,
:profile_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,
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,
:has_title_badges
2013-02-05 14:16:51 -05:00
has_one :invited_by, embed: :object, serializer: BasicUserSerializer
2014-02-06 17:34:48 -05:00
has_many :custom_groups, embed: :object, serializer: BasicGroupSerializer
has_many :featured_user_badges, embed: :ids, serializer: UserBadgeSerializer, root: :user_badges
2013-02-05 14:16:51 -05:00
staff_attributes :number_of_deleted_posts,
:number_of_flagged_posts,
:number_of_flags_given,
:number_of_suspensions
2013-02-05 14:16:51 -05:00
2013-02-07 10:45:24 -05:00
private_attributes :email,
:locale,
:email_digests,
:email_private_messages,
:email_direct,
:email_always,
:digest_after_days,
:mailing_list_mode,
:auto_track_topics_after_msecs,
:new_topic_duration_minutes,
:external_links_in_new_tab,
:dynamic_favicon,
:enable_quoting,
:muted_category_ids,
:tracked_category_ids,
:watched_category_ids,
:private_messages_stats,
:disable_jump_reply,
:gravatar_avatar_upload_id,
:custom_avatar_upload_id,
:custom_fields,
:has_title_badges,
:edit_history_public
###
### ATTRIBUTES
###
def bio_raw
object.user_profile.bio_raw
end
def include_bio_raw?
bio_raw.present?
end
2013-02-05 14:16:51 -05:00
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 include_website?
website.present?
end
def profile_background
object.user_profile.profile_background
end
def include_profile_background?
profile_background.present?
end
def location
object.user_profile.location
end
def include_location?
location.present?
2013-02-05 14:16:51 -05:00
end
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 stats
UserAction.stats(object.id, scope)
end
def can_send_private_message_to_user
scope.can_send_private_message?(object)
2014-06-07 00:54:32 -04:00
end
def bio_excerpt
# If they have a bio return it
excerpt = object.user_profile.bio_excerpt
return excerpt if excerpt.present?
# Without a bio, determine what message to show
if scope.user && scope.user.id == object.id
I18n.t('user_profile.no_info_me', username_lower: object.username_lower)
else
I18n.t('user_profile.no_info_other', name: object.name)
end
2014-06-10 01:19:08 -04:00
end
def include_suspend_reason?
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
###
### STAFF ATTRIBUTES
###
def number_of_deleted_posts
Post.with_deleted
.where(user_id: object.id)
.where(user_deleted: false)
.where.not(deleted_by_id: object.id)
.count
end
def number_of_flagged_posts
Post.with_deleted
.where(user_id: object.id)
.where(id: PostAction.with_deleted
.where(post_action_type_id: PostActionType.notify_flag_type_ids)
.select(:post_id))
.count
end
def number_of_flags_given
PostAction.with_deleted
.where(user_id: object.id)
.where(post_action_type_id: PostActionType.notify_flag_type_ids)
.count
end
def number_of_suspensions
UserHistory.for(object, :suspend_user).count
end
###
### PRIVATE ATTRIBUTES
###
def auto_track_topics_after_msecs
object.auto_track_topics_after_msecs || SiteSetting.auto_track_topics_after
end
def new_topic_duration_minutes
object.new_topic_duration_minutes || SiteSetting.new_topic_duration_minutes
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 private_messages_stats
UserAction.private_messages_stats(object.id, scope)
end
def gravatar_avatar_upload_id
object.user_avatar.try(:gravatar_upload_id)
end
def custom_avatar_upload_id
object.user_avatar.try(:custom_upload_id)
end
def has_title_badges
object.badges.where(allow_title: true).count > 0
end
2013-02-05 14:16:51 -05:00
end