117 lines
2.7 KiB
Ruby
117 lines
2.7 KiB
Ruby
class UserSerializer < BasicUserSerializer
|
|
|
|
attributes :name,
|
|
:email,
|
|
:last_posted_at,
|
|
:last_seen_at,
|
|
:bio_raw,
|
|
:bio_cooked,
|
|
:created_at,
|
|
:website,
|
|
:can_edit,
|
|
:can_edit_username,
|
|
:can_edit_email,
|
|
:stats,
|
|
:can_send_private_message_to_user,
|
|
:bio_excerpt,
|
|
:trust_level,
|
|
:moderator,
|
|
:admin,
|
|
:title,
|
|
:suspended,
|
|
:suspend_reason,
|
|
:suspended_till
|
|
|
|
has_one :invited_by, embed: :object, serializer: BasicUserSerializer
|
|
|
|
def self.private_attributes(*attrs)
|
|
attributes *attrs
|
|
attrs.each do |attr|
|
|
define_method "include_#{attr}?" do
|
|
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)
|
|
end
|
|
end
|
|
|
|
private_attributes :email,
|
|
:email_digests,
|
|
:email_private_messages,
|
|
:email_direct,
|
|
:email_always,
|
|
:digest_after_days,
|
|
: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
|
|
|
|
|
|
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 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_name?
|
|
SiteSetting.enable_names?
|
|
end
|
|
|
|
def suspended
|
|
object.suspended?
|
|
end
|
|
|
|
def include_suspended?
|
|
object.suspended?
|
|
end
|
|
def include_suspend_reason?
|
|
object.suspended?
|
|
end
|
|
def include_suspended_till?
|
|
object.suspended?
|
|
end
|
|
|
|
end
|