2017-08-08 19:52:15 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::InboxesController < Api::BaseController
|
|
|
|
include SignatureVerification
|
2019-03-20 16:20:16 +00:00
|
|
|
include JsonLdHelper
|
2017-08-08 19:52:15 +00:00
|
|
|
|
|
|
|
before_action :set_account
|
|
|
|
|
|
|
|
def create
|
2019-03-20 16:20:16 +00:00
|
|
|
if unknown_deleted_account?
|
|
|
|
head 202
|
|
|
|
elsif signed_request_account
|
2017-08-20 23:14:40 +00:00
|
|
|
upgrade_account
|
2017-08-08 19:52:15 +00:00
|
|
|
process_payload
|
|
|
|
head 202
|
2017-10-03 21:21:19 +00:00
|
|
|
else
|
2018-02-08 04:00:45 +00:00
|
|
|
render plain: signature_verification_failure_reason, status: 401
|
2017-08-08 19:52:15 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-03-20 16:20:16 +00:00
|
|
|
def unknown_deleted_account?
|
|
|
|
json = Oj.load(body, mode: :strict)
|
|
|
|
json['type'] == 'Delete' && json['actor'].present? && json['actor'] == value_or_id(json['object']) && !Account.where(uri: json['actor']).exists?
|
|
|
|
rescue Oj::ParseError
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2017-08-08 19:52:15 +00:00
|
|
|
def set_account
|
2017-08-30 22:02:59 +00:00
|
|
|
@account = Account.find_local!(params[:account_username]) if params[:account_username]
|
2017-08-08 19:52:15 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def body
|
2019-03-20 16:20:16 +00:00
|
|
|
@body ||= request.body.read.force_encoding('UTF-8')
|
2017-08-08 19:52:15 +00:00
|
|
|
end
|
|
|
|
|
2017-08-20 23:14:40 +00:00
|
|
|
def upgrade_account
|
2017-09-02 23:11:23 +00:00
|
|
|
if signed_request_account.ostatus?
|
|
|
|
signed_request_account.update(last_webfingered_at: nil)
|
2018-01-22 13:25:09 +00:00
|
|
|
ResolveAccountWorker.perform_async(signed_request_account.acct)
|
2017-09-02 23:11:23 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
Pubsubhubbub::UnsubscribeWorker.perform_async(signed_request_account.id) if signed_request_account.subscribed?
|
2017-09-29 01:16:20 +00:00
|
|
|
DeliveryFailureTracker.track_inverse_success!(signed_request_account)
|
2017-08-20 23:14:40 +00:00
|
|
|
end
|
|
|
|
|
2017-08-08 19:52:15 +00:00
|
|
|
def process_payload
|
2019-03-20 16:20:16 +00:00
|
|
|
ActivityPub::ProcessingWorker.perform_async(signed_request_account.id, body, @account&.id)
|
2017-08-08 19:52:15 +00:00
|
|
|
end
|
|
|
|
end
|