2017-08-08 21:52:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::InboxesController < Api::BaseController
|
|
|
|
include SignatureVerification
|
2019-03-20 17:20:16 +01:00
|
|
|
include JsonLdHelper
|
2017-08-08 21:52:15 +02:00
|
|
|
|
|
|
|
before_action :set_account
|
|
|
|
|
|
|
|
def create
|
2019-03-20 17:20:16 +01:00
|
|
|
if unknown_deleted_account?
|
|
|
|
head 202
|
|
|
|
elsif signed_request_account
|
2017-08-21 01:14:40 +02:00
|
|
|
upgrade_account
|
2017-08-08 21:52:15 +02:00
|
|
|
process_payload
|
|
|
|
head 202
|
2017-10-03 23:21:19 +02:00
|
|
|
else
|
2018-02-08 05:00:45 +01:00
|
|
|
render plain: signature_verification_failure_reason, status: 401
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-03-20 17:20:16 +01: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 21:52:15 +02:00
|
|
|
def set_account
|
2017-08-31 00:02:59 +02:00
|
|
|
@account = Account.find_local!(params[:account_username]) if params[:account_username]
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def body
|
2019-03-20 17:20:16 +01:00
|
|
|
@body ||= request.body.read.force_encoding('UTF-8')
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
2017-08-21 01:14:40 +02:00
|
|
|
def upgrade_account
|
2017-09-03 01:11:23 +02:00
|
|
|
if signed_request_account.ostatus?
|
|
|
|
signed_request_account.update(last_webfingered_at: nil)
|
2018-01-22 14:25:09 +01:00
|
|
|
ResolveAccountWorker.perform_async(signed_request_account.acct)
|
2017-09-03 01:11:23 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
Pubsubhubbub::UnsubscribeWorker.perform_async(signed_request_account.id) if signed_request_account.subscribed?
|
2017-09-29 03:16:20 +02:00
|
|
|
DeliveryFailureTracker.track_inverse_success!(signed_request_account)
|
2017-08-21 01:14:40 +02:00
|
|
|
end
|
|
|
|
|
2017-08-08 21:52:15 +02:00
|
|
|
def process_payload
|
2019-03-20 17:20:16 +01:00
|
|
|
ActivityPub::ProcessingWorker.perform_async(signed_request_account.id, body, @account&.id)
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
end
|