Sha256: 5207d3240243e19c9f5c8055c93f8f7574d8c704d27047129c6f6123c9f83a8f
Contents?: true
Size: 1.55 KB
Versions: 2
Compression:
Stored size: 1.55 KB
Contents
# frozen_string_literal: true require 'json' module Zerobounce # The base Zerobounce error. # # @author Aaron Frase class Error < StandardError def initialize(env={}) @env = env end # Message for the error. # # @return [String] def message @env[:body] end class << self # Parse the response for errors. # # @param [Hash] env # @return [Error] def from_response(env) case env[:status] when 500 parse_500(env) when 200 parse_200(env) end end private # @param [Hash] env # @return [Error] def parse_500(env) if env[:body]&.start_with?('Missing parameter') MissingParameter.new(env) else InternalServerError.new(env) end end # @param [Hash] env # @return [Error, nil] def parse_200(env) # The body hasn't been parsed yet and to avoid potentially parsing the body twice # we just use String#start_with? ApiError.new(env) if env[:body]&.start_with?('{"error":"') end end end # Server returned a 500 error. # # @author Aaron Frase class InternalServerError < Error end # A parameter was missing, usually the apiKey. # # @author Aaron Frase class MissingParameter < Error end # General API error, the response code was 200 but an error still occurred. # # @author Aaron Frase class ApiError < Error # @see #message def message JSON.parse(@env[:body])['error'] end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
zerobounce-0.0.3 | lib/zerobounce/error.rb |
zerobounce-0.0.2 | lib/zerobounce/error.rb |