2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-03-05 20:52:20 +08:00
|
|
|
class UserBadgeSerializer < ApplicationSerializer
|
2022-10-27 11:26:14 +08:00
|
|
|
include UserBadgePostAndTopicAttributesMixin
|
2016-01-18 14:59:07 +08:00
|
|
|
|
|
|
|
class UserSerializer < BasicUserSerializer
|
2018-12-06 19:18:52 +08:00
|
|
|
include UserPrimaryGroupMixin
|
|
|
|
|
|
|
|
attributes :name, :moderator, :admin
|
2016-01-18 14:59:07 +08:00
|
|
|
end
|
|
|
|
|
2020-04-21 01:03:25 +08:00
|
|
|
attributes :id, :granted_at, :created_at, :count, :post_id, :post_number
|
2014-03-05 20:52:20 +08:00
|
|
|
|
|
|
|
has_one :badge
|
2016-01-18 14:59:07 +08:00
|
|
|
has_one :user, serializer: UserSerializer, root: :users
|
|
|
|
has_one :granted_by, serializer: UserSerializer, root: :users
|
2014-06-28 03:08:03 +08:00
|
|
|
has_one :topic, serializer: BasicTopicSerializer
|
2014-05-21 15:22:42 +08:00
|
|
|
|
|
|
|
def include_count?
|
|
|
|
object.respond_to? :count
|
|
|
|
end
|
2014-06-28 03:08:03 +08:00
|
|
|
|
|
|
|
def include_post_id?
|
2022-10-27 11:26:14 +08:00
|
|
|
include_post_attributes?
|
2014-06-28 03:08:03 +08:00
|
|
|
end
|
2014-07-01 20:00:31 +08:00
|
|
|
|
2014-07-23 09:42:24 +08:00
|
|
|
alias include_post_number? include_post_id?
|
2014-06-28 03:08:03 +08:00
|
|
|
|
2014-07-01 20:00:31 +08:00
|
|
|
def post_number
|
|
|
|
object.post && object.post.post_number
|
|
|
|
end
|
|
|
|
|
2014-06-28 03:08:03 +08:00
|
|
|
def topic
|
|
|
|
object.post.topic
|
|
|
|
end
|
2022-10-27 11:26:14 +08:00
|
|
|
|
|
|
|
def include_topic?
|
|
|
|
include_topic_attributes?
|
|
|
|
end
|
2014-03-05 20:52:20 +08:00
|
|
|
end
|