class JSONAPI::Consumer::Middleware::Status

Public Instance Methods

call(environment) click to toggle source
# File lib/jsonapi/consumer/middleware/status.rb, line 4
def call(environment)
  @app.call(environment).on_complete do |env|
    handle_status(env[:status], env)

    # look for meta[:status]
    if env[:body].is_a?(Hash)
      code = env[:body].fetch("meta", {}).fetch("status", 200).to_i
      handle_status(code, env)
    end
  end
rescue Faraday::ConnectionFailed, Faraday::TimeoutError
  raise Errors::ConnectionError, environment
end

Protected Instance Methods

handle_status(code, env) click to toggle source
# File lib/jsonapi/consumer/middleware/status.rb, line 20
def handle_status(code, env)
  case code
  when 200..399
  when 401
    raise Errors::NotAuthorized, env
  when 403
    raise Errors::AccessDenied, env
  when 404
    raise Errors::NotFound, env[:url]
  when 409
    raise Errors::Conflict, env
  when 400..499
    # some other error
  when 500..599
    raise Errors::ServerError, env
  else
    raise Errors::UnexpectedStatus.new(code, env[:url])
  end
end