forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix poll API not requiring authentication on non-public polls (mastod…
…on#10960) * Fix poll API not requiring authentication on non-public polls That API does not reveal the content of the status, i.e. the question itself, nor who the author is, nor which status it belongs to, but it does reveal the poll options and how many answers they got Fix mastodon#10959 * Add test
- Loading branch information
Showing
2 changed files
with
31 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,28 @@ | ||
# frozen_string_literal: true | ||
|
||
class Api::V1::PollsController < Api::BaseController | ||
include Authorization | ||
|
||
before_action -> { authorize_if_got_token! :read, :'read:statuses' }, only: :show | ||
before_action :set_poll | ||
before_action :refresh_poll | ||
|
||
respond_to :json | ||
|
||
def show | ||
render json: @poll, serializer: REST::PollSerializer, include_results: true | ||
end | ||
|
||
private | ||
|
||
def set_poll | ||
@poll = Poll.attached.find(params[:id]) | ||
authorize @poll.status, :show? | ||
rescue Mastodon::NotPermittedError | ||
raise ActiveRecord::RecordNotFound | ||
end | ||
|
||
def refresh_poll | ||
ActivityPub::FetchRemotePollService.new.call(@poll, current_account) if user_signed_in? && @poll.possibly_stale? | ||
render json: @poll, serializer: REST::PollSerializer, include_results: true | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters