2019-03-03 21:18:23 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::PollSerializer < ActiveModel::Serializer
|
|
|
|
attributes :id, :expires_at, :expired,
|
2019-09-29 20:58:01 +00:00
|
|
|
:multiple, :votes_count, :voters_count
|
2019-03-03 21:18:23 +00:00
|
|
|
|
2019-03-07 21:53:47 +00:00
|
|
|
has_many :loaded_options, key: :options
|
2019-03-20 16:29:12 +00:00
|
|
|
has_many :emojis, serializer: REST::CustomEmojiSerializer
|
2019-03-03 21:18:23 +00:00
|
|
|
|
|
|
|
attribute :voted, if: :current_user?
|
2019-09-22 12:15:18 +00:00
|
|
|
attribute :own_votes, if: :current_user?
|
2019-03-03 21:18:23 +00:00
|
|
|
|
|
|
|
def id
|
|
|
|
object.id.to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
def expired
|
|
|
|
object.expired?
|
|
|
|
end
|
|
|
|
|
|
|
|
def voted
|
2019-03-07 21:53:47 +00:00
|
|
|
object.voted?(current_user.account)
|
2019-03-03 21:18:23 +00:00
|
|
|
end
|
|
|
|
|
2019-09-22 12:15:18 +00:00
|
|
|
def own_votes
|
|
|
|
object.own_votes(current_user.account)
|
|
|
|
end
|
|
|
|
|
2019-03-03 21:18:23 +00:00
|
|
|
def current_user?
|
|
|
|
!current_user.nil?
|
|
|
|
end
|
|
|
|
|
|
|
|
class OptionSerializer < ActiveModel::Serializer
|
|
|
|
attributes :title, :votes_count
|
|
|
|
end
|
|
|
|
end
|