* Add a limit to how many posts can get fetched as a result of a single request * Add tests * Always pass `request_id` when processing `Announce` activities --------- Co-authored-by: nametoolong <nametoolong@users.noreply.github.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			492 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			492 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| class FetchRemoteStatusService < BaseService
 | |
|   def call(url, prefetched_body: nil, request_id: nil)
 | |
|     if prefetched_body.nil?
 | |
|       resource_url, resource_options = FetchResourceService.new.call(url)
 | |
|     else
 | |
|       resource_url     = url
 | |
|       resource_options = { prefetched_body: prefetched_body }
 | |
|     end
 | |
| 
 | |
|     ActivityPub::FetchRemoteStatusService.new.call(resource_url, **resource_options.merge(request_id: request_id)) unless resource_url.nil?
 | |
|   end
 | |
| end
 |