* ActivityPub migration procedure Once one account is detected as going from OStatus to ActivityPub, invalidate WebFinger cache for other accounts from the same domain * Unsubscribe from PuSH updates once we receive an ActivityPub payload * Re-subscribe to PuSH unless already unsubscribed, regardless of protocol
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			738 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			738 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class ActivityPub::InboxesController < Api::BaseController
 | 
						|
  include SignatureVerification
 | 
						|
 | 
						|
  before_action :set_account
 | 
						|
 | 
						|
  def create
 | 
						|
    if signed_request_account
 | 
						|
      upgrade_account
 | 
						|
      process_payload
 | 
						|
      head 201
 | 
						|
    else
 | 
						|
      head 202
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  private
 | 
						|
 | 
						|
  def set_account
 | 
						|
    @account = Account.find_local!(params[:account_username])
 | 
						|
  end
 | 
						|
 | 
						|
  def body
 | 
						|
    @body ||= request.body.read
 | 
						|
  end
 | 
						|
 | 
						|
  def upgrade_account
 | 
						|
    return unless signed_request_account.subscribed?
 | 
						|
    Pubsubhubbub::UnsubscribeWorker.perform_async(signed_request_account.id)
 | 
						|
  end
 | 
						|
 | 
						|
  def process_payload
 | 
						|
    ActivityPub::ProcessingWorker.perform_async(signed_request_account.id, body.force_encoding('UTF-8'))
 | 
						|
  end
 | 
						|
end
 |