* Move ActivityPub::FetchRemoteAccountService to ActivityPub::FetchRemoteActorService ActivityPub::FetchRemoteAccountService is kept as a wrapper for when the actor is specifically required to be an Account * Refactor SignatureVerification to allow non-Account actors * fixup! Move ActivityPub::FetchRemoteAccountService to ActivityPub::FetchRemoteActorService * Refactor ActivityPub::FetchRemoteKeyService to potentially return non-Account actors * Refactor inbound ActivityPub payload processing to accept non-Account actors * Refactor inbound ActivityPub processing to accept activities relayed through non-Account * Refactor how Account key URIs are built * Refactor Request and drop unused key_id_format parameter * Rename ActivityPub::Dereferencer `signature_account` to `signature_actor`
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			1,016 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			1,016 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| class ActivityPub::FollowersSynchronizationsController < ActivityPub::BaseController
 | |
|   include SignatureVerification
 | |
|   include AccountOwnedConcern
 | |
| 
 | |
|   before_action :require_account_signature!
 | |
|   before_action :set_items
 | |
|   before_action :set_cache_headers
 | |
| 
 | |
|   def show
 | |
|     expires_in 0, public: false
 | |
|     render json: collection_presenter,
 | |
|            serializer: ActivityPub::CollectionSerializer,
 | |
|            adapter: ActivityPub::Adapter,
 | |
|            content_type: 'application/activity+json'
 | |
|   end
 | |
| 
 | |
|   private
 | |
| 
 | |
|   def uri_prefix
 | |
|     signed_request_account.uri[Account::URL_PREFIX_RE]
 | |
|   end
 | |
| 
 | |
|   def set_items
 | |
|     @items = @account.followers.where(Account.arel_table[:uri].matches("#{Account.sanitize_sql_like(uri_prefix)}/%", false, true)).or(@account.followers.where(uri: uri_prefix)).pluck(:uri)
 | |
|   end
 | |
| 
 | |
|   def collection_presenter
 | |
|     ActivityPub::CollectionPresenter.new(
 | |
|       id: account_followers_synchronization_url(@account),
 | |
|       type: :ordered,
 | |
|       items: @items
 | |
|     )
 | |
|   end
 | |
| end
 |