2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 18:09:25 +00:00
|
|
|
class Api::BaseController < ApplicationController
|
2016-11-09 16:48:44 +00:00
|
|
|
DEFAULT_STATUSES_LIMIT = 20
|
|
|
|
DEFAULT_ACCOUNTS_LIMIT = 40
|
|
|
|
|
2017-06-07 15:23:26 +00:00
|
|
|
include RateLimitHeaders
|
|
|
|
|
2016-08-17 15:56:23 +00:00
|
|
|
skip_before_action :verify_authenticity_token
|
2017-04-09 20:21:52 +00:00
|
|
|
skip_before_action :store_current_location
|
2016-03-07 11:42:33 +00:00
|
|
|
|
2017-02-26 22:23:06 +00:00
|
|
|
rescue_from ActiveRecord::RecordInvalid, Mastodon::ValidationError do |e|
|
2016-09-30 20:31:16 +00:00
|
|
|
render json: { error: e.to_s }, status: 422
|
2016-08-26 17:12:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
rescue_from ActiveRecord::RecordNotFound do
|
|
|
|
render json: { error: 'Record not found' }, status: 404
|
|
|
|
end
|
|
|
|
|
2017-07-19 23:59:07 +00:00
|
|
|
rescue_from HTTP::Error, Mastodon::UnexpectedResponseError do
|
2016-09-17 15:03:36 +00:00
|
|
|
render json: { error: 'Remote data could not be fetched' }, status: 503
|
|
|
|
end
|
|
|
|
|
2016-10-05 11:26:44 +00:00
|
|
|
rescue_from OpenSSL::SSL::SSLError do
|
|
|
|
render json: { error: 'Remote SSL certificate could not be verified' }, status: 503
|
|
|
|
end
|
|
|
|
|
2017-02-26 22:23:06 +00:00
|
|
|
rescue_from Mastodon::NotPermittedError do
|
2016-12-22 20:34:19 +00:00
|
|
|
render json: { error: 'This action is not allowed' }, status: 403
|
|
|
|
end
|
|
|
|
|
2016-11-21 15:19:35 +00:00
|
|
|
def doorkeeper_unauthorized_render_options(error: nil)
|
|
|
|
{ json: { error: (error.try(:description) || 'Not authorized') } }
|
2016-10-22 17:38:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def doorkeeper_forbidden_render_options(*)
|
|
|
|
{ json: { error: 'This action is outside the authorized scopes' } }
|
|
|
|
end
|
|
|
|
|
2016-03-07 11:42:33 +00:00
|
|
|
protected
|
|
|
|
|
2016-11-09 16:48:44 +00:00
|
|
|
def set_pagination_headers(next_path = nil, prev_path = nil)
|
|
|
|
links = []
|
2016-11-15 15:56:29 +00:00
|
|
|
links << [next_path, [%w(rel next)]] if next_path
|
|
|
|
links << [prev_path, [%w(rel prev)]] if prev_path
|
2017-08-18 08:42:59 +00:00
|
|
|
response.headers['Link'] = LinkHeader.new(links) unless links.empty?
|
2016-11-09 16:48:44 +00:00
|
|
|
end
|
|
|
|
|
2017-01-24 03:22:10 +00:00
|
|
|
def limit_param(default_limit)
|
|
|
|
return default_limit unless params[:limit]
|
|
|
|
[params[:limit].to_i.abs, default_limit * 2].min
|
|
|
|
end
|
|
|
|
|
2016-03-07 11:42:33 +00:00
|
|
|
def current_resource_owner
|
2016-11-23 08:20:34 +00:00
|
|
|
@current_user ||= User.find(doorkeeper_token.resource_owner_id) if doorkeeper_token
|
2016-03-07 11:42:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def current_user
|
2017-04-18 13:57:46 +00:00
|
|
|
current_resource_owner || super
|
2016-11-08 22:22:44 +00:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def require_user!
|
2017-08-15 12:14:12 +00:00
|
|
|
if current_user
|
|
|
|
set_user_activity
|
|
|
|
else
|
|
|
|
render json: { error: 'This method requires an authenticated user' }, status: 422
|
|
|
|
end
|
2016-03-07 11:42:33 +00:00
|
|
|
end
|
2016-09-26 21:55:21 +00:00
|
|
|
|
|
|
|
def render_empty
|
|
|
|
render json: {}, status: 200
|
|
|
|
end
|
2016-10-16 16:57:54 +00:00
|
|
|
|
2016-11-15 15:56:29 +00:00
|
|
|
def set_maps(statuses) # rubocop:disable Style/AccessorMethodName
|
2016-11-08 22:22:44 +00:00
|
|
|
if current_account.nil?
|
|
|
|
@reblogs_map = {}
|
|
|
|
@favourites_map = {}
|
Feature conversations muting (#3017)
* Add <ostatus:conversation /> tag to Atom input/output
Only uses ref attribute (not href) because href would be
the alternate link that's always included also.
Creates new conversation for every non-reply status. Carries
over conversation for every reply. Keeps remote URIs verbatim,
generates local URIs on the fly like the rest of them.
* Conversation muting - prevents notifications that reference a conversation
(including replies, favourites, reblogs) from being created. API endpoints
/api/v1/statuses/:id/mute and /api/v1/statuses/:id/unmute
Currently no way to tell when a status/conversation is muted, so the web UI
only has a "disable notifications" button, doesn't work as a toggle
* Display "Dismiss notifications" on all statuses in notifications column, not just own
* Add "muted" as a boolean attribute on statuses JSON
For now always false on contained reblogs, since it's only relevant for
statuses returned from the notifications endpoint, which are not nested
Remove "Disable notifications" from detailed status view, since it's
only relevant in the notifications column
* Up max class length
* Remove pending test for conversation mute
* Add tests, clean up
* Rename to "mute conversation" and "unmute conversation"
* Raise validation error when trying to mute/unmute status without conversation
2017-05-15 01:04:13 +00:00
|
|
|
@mutes_map = {}
|
2016-11-08 22:22:44 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
Feature conversations muting (#3017)
* Add <ostatus:conversation /> tag to Atom input/output
Only uses ref attribute (not href) because href would be
the alternate link that's always included also.
Creates new conversation for every non-reply status. Carries
over conversation for every reply. Keeps remote URIs verbatim,
generates local URIs on the fly like the rest of them.
* Conversation muting - prevents notifications that reference a conversation
(including replies, favourites, reblogs) from being created. API endpoints
/api/v1/statuses/:id/mute and /api/v1/statuses/:id/unmute
Currently no way to tell when a status/conversation is muted, so the web UI
only has a "disable notifications" button, doesn't work as a toggle
* Display "Dismiss notifications" on all statuses in notifications column, not just own
* Add "muted" as a boolean attribute on statuses JSON
For now always false on contained reblogs, since it's only relevant for
statuses returned from the notifications endpoint, which are not nested
Remove "Disable notifications" from detailed status view, since it's
only relevant in the notifications column
* Up max class length
* Remove pending test for conversation mute
* Add tests, clean up
* Rename to "mute conversation" and "unmute conversation"
* Raise validation error when trying to mute/unmute status without conversation
2017-05-15 01:04:13 +00:00
|
|
|
status_ids = statuses.compact.flat_map { |s| [s.id, s.reblog_of_id] }.uniq
|
|
|
|
conversation_ids = statuses.compact.map(&:conversation_id).compact.uniq
|
|
|
|
@reblogs_map = Status.reblogs_map(status_ids, current_account)
|
|
|
|
@favourites_map = Status.favourites_map(status_ids, current_account)
|
|
|
|
@mutes_map = Status.mutes_map(conversation_ids, current_account)
|
2016-10-16 16:57:54 +00:00
|
|
|
end
|
2016-03-05 11:50:59 +00:00
|
|
|
end
|