discourse/app/serializers/user_serializer.rb

124 lines
3.0 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
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,
:can_edit,
:can_edit_username,
:can_edit_email,
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
2013-02-05 14:16:51 -05:00
has_one :invited_by, embed: :object, serializer: BasicUserSerializer
2013-02-05 14:16:51 -05:00
def self.private_attributes(*attrs)
attributes(*attrs)
2013-02-05 14:16:51 -05:00
attrs.each do |attr|
2013-02-07 10:45:24 -05:00
define_method "include_#{attr}?" do
2013-02-05 14:16:51 -05:00
can_edit
end
end
end
def bio_excerpt
# If they have a bio return it
excerpt = object.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)
2013-02-05 14:16:51 -05:00
end
end
2013-02-07 10:45:24 -05:00
private_attributes :email,
: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,
:use_uploaded_avatar,
:has_uploaded_avatar,
:gravatar_template,
:uploaded_avatar_template,
:muted_category_ids,
:tracked_category_ids,
:watched_category_ids
2013-02-05 14:16:51 -05:00
def auto_track_topics_after_msecs
object.auto_track_topics_after_msecs || SiteSetting.auto_track_topics_after
end
2013-02-25 11:42:20 -05:00
def new_topic_duration_minutes
object.new_topic_duration_minutes || SiteSetting.new_topic_duration_minutes
end
2013-02-05 14:16:51 -05:00
def can_send_private_message_to_user
scope.can_send_private_message?(object)
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 stats
UserAction.stats(object.id, scope)
end
def gravatar_template
User.gravatar_template(object.email)
end
def include_suspended?
object.suspended?
end
def include_suspend_reason?
object.suspended?
end
def include_suspended_till?
object.suspended?
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
2013-02-05 14:16:51 -05:00
end