2019-03-03 21:18:23 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::PollsController < Api::BaseController
|
2019-06-04 18:10:26 +00:00
|
|
|
include Authorization
|
|
|
|
|
2019-03-03 21:18:23 +00:00
|
|
|
before_action -> { authorize_if_got_token! :read, :'read:statuses' }, only: :show
|
2019-06-04 18:10:26 +00:00
|
|
|
before_action :set_poll
|
|
|
|
before_action :refresh_poll
|
2019-03-03 21:18:23 +00:00
|
|
|
|
|
|
|
def show
|
2023-04-25 13:41:34 +00:00
|
|
|
cache_if_unauthenticated!
|
2019-06-04 18:10:26 +00:00
|
|
|
render json: @poll, serializer: REST::PollSerializer, include_results: true
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_poll
|
2019-03-03 21:18:23 +00:00
|
|
|
@poll = Poll.attached.find(params[:id])
|
2019-06-04 18:10:26 +00:00
|
|
|
authorize @poll.status, :show?
|
|
|
|
rescue Mastodon::NotPermittedError
|
2020-05-03 14:30:36 +00:00
|
|
|
not_found
|
2019-06-04 18:10:26 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def refresh_poll
|
2019-03-03 21:18:23 +00:00
|
|
|
ActivityPub::FetchRemotePollService.new.call(@poll, current_account) if user_signed_in? && @poll.possibly_stale?
|
|
|
|
end
|
|
|
|
end
|