2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
class BasicUserSerializer < ApplicationSerializer
|
2018-08-21 07:58:11 -04:00
|
|
|
attributes :id, :username, :name, :avatar_template
|
|
|
|
|
|
|
|
def name
|
|
|
|
Hash === user ? user[:name] : user.try(:name)
|
|
|
|
end
|
2013-12-08 09:01:25 -05:00
|
|
|
|
2017-09-12 06:11:08 -04:00
|
|
|
def include_name?
|
|
|
|
SiteSetting.enable_names?
|
|
|
|
end
|
|
|
|
|
2014-05-22 03:37:02 -04:00
|
|
|
def avatar_template
|
|
|
|
if Hash === object
|
|
|
|
User.avatar_template(user[:username], user[:uploaded_avatar_id])
|
|
|
|
else
|
2017-09-08 01:07:22 -04:00
|
|
|
user&.avatar_template
|
2014-05-22 03:37:02 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def user
|
2019-12-19 12:48:01 -05:00
|
|
|
object[:user] || object.try(:user) || object
|
2014-05-22 03:37:02 -04:00
|
|
|
end
|
2021-05-05 19:14:07 -04:00
|
|
|
|
2021-05-13 19:45:14 -04:00
|
|
|
def user_is_current_user
|
|
|
|
object.id == scope.user&.id
|
|
|
|
end
|
|
|
|
|
2021-05-05 19:14:07 -04:00
|
|
|
def categories_with_notification_level(lookup_level)
|
2023-01-09 07:20:10 -05:00
|
|
|
category_user_notification_levels
|
|
|
|
.select { |id, level| level == CategoryUser.notification_levels[lookup_level] }
|
|
|
|
.keys
|
2021-05-05 19:14:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def category_user_notification_levels
|
2021-05-13 19:45:14 -04:00
|
|
|
@category_user_notification_levels ||= CategoryUser.notification_levels_for(user)
|
2021-05-05 19:14:07 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|