Sha256: f147cee2253d6d838f5ca39d0d1a07305eefcc74086d4d8797cbf7daf38f09e0

Contents?: true

Size: 1.78 KB

Versions: 4

Compression:

Stored size: 1.78 KB

Contents

module Evrythng
  # Custom error class for rescuing from all Evrythng errors
  class Error < StandardError
    attr_reader :http_headers

    def initialize(message, http_headers)
      @http_headers = Hash[http_headers]
      super message
    end

    def ratelimit_reset
      Time.at(@http_headers.values_at('x-ratelimit-reset', 'X-RateLimit-Reset').detect{|value| value}.to_i)
    end

    def ratelimit_limit
      @http_headers.values_at('x-ratelimit-limit', 'X-RateLimit-Limit').detect{|value| value}.to_i
    end

    def ratelimit_remaining
      @http_headers.values_at('x-ratelimit-remaining', 'X-RateLimit-Remaining').detect{|value| value}.to_i
    end

    def retry_after
      [(ratelimit_reset - Time.now).ceil, 0].max
    end
  end

  # Raised when Evrythng returns the HTTP status code 400
  class BadRequest < Error; end

  # Raised when Evrythng returns the HTTP status code 401
  class Unauthorized < Error; end

  # Raised when Evrythng returns the HTTP status code 403
  class Forbidden < Error; end

  # Raised when Evrythng returns the HTTP status code 404
  class NotFound < Error; end

  # Raised when Evrythng returns the HTTP status code 406
  class NotAcceptable < Error; end

  # Raised when Evrythng returns the HTTP status code 420
  class EnhanceYourCalm < Error
    # The number of seconds your application should wait before requesting date from the Search API again
    def retry_after
      @http_headers.values_at('retry-after', 'Retry-After').detect {|value| value }.to_i
    end
  end

  # Raised when Evrythng returns the HTTP status code 500
  class InternalServerError < Error; end

  # Raised when Evrythng returns the HTTP status code 502
  class BadGateway < Error; end

  # Raised when Evrythng returns the HTTP status code 503
  class ServiceUnavailable < Error; end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
evrythng-0.0.5 lib/evrythng/error.rb
evrythng-0.0.3 lib/evrythng/error.rb
evrythng-0.0.2 lib/evrythng/error.rb
evrythng-0.0.1 lib/evrythng/error.rb