* Add a more descriptive PrivateNetworkAddressError exception class * Remove unnecessary exception class to rescue clause * Remove unnecessary include to JsonLdHelper * Give more neutral error message when too many webfinger redirects * Remove unnecessary guard condition * Rework how “ActivityPub::FetchRemoteAccountService” handles errors Add “suppress_errors” keyword argument to avoid raising errors in ActivityPub::FetchRemoteAccountService#call (default/previous behavior). * Rework how “ActivityPub::FetchRemoteKeyService” handles errors Add “suppress_errors” keyword argument to avoid raising errors in ActivityPub::FetchRemoteKeyService#call (default/previous behavior). * Fix Webfinger::RedirectError not being a subclass of Webfinger::Error * Add suppress_errors option to ResolveAccountService Defaults to true (to preserve previous behavior). If set to false, errors will be raised instead of caught, allowing the caller to be informed of what went wrong. * Return more precise error when failing to fetch account signing AP payloads * Add tests * Fixes * Refactor error handling a bit * Fix various issues * Add specific error when provided Digest is not 256 bits of base64-encoded data * Please CodeClimate * Improve webfinger error reporting
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			925 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			925 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| module Mastodon
 | |
|   class Error < StandardError; end
 | |
|   class NotPermittedError < Error; end
 | |
|   class ValidationError < Error; end
 | |
|   class HostValidationError < ValidationError; end
 | |
|   class LengthValidationError < ValidationError; end
 | |
|   class DimensionsValidationError < ValidationError; end
 | |
|   class StreamValidationError < ValidationError; end
 | |
|   class RaceConditionError < Error; end
 | |
|   class RateLimitExceededError < Error; end
 | |
|   class SyntaxError < Error; end
 | |
| 
 | |
|   class UnexpectedResponseError < Error
 | |
|     attr_reader :response
 | |
| 
 | |
|     def initialize(response = nil)
 | |
|       @response = response
 | |
| 
 | |
|       if response.respond_to? :uri
 | |
|         super("#{response.uri} returned code #{response.code}")
 | |
|       else
 | |
|         super
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   class PrivateNetworkAddressError < HostValidationError
 | |
|     attr_reader :host
 | |
| 
 | |
|     def initialize(host)
 | |
|       @host = host
 | |
|       super()
 | |
|     end
 | |
|   end
 | |
| end
 |