Sha256: da802652cdbe8dbaa0949d260d162fe44dce26c7cae993661237831894836399
Contents?: true
Size: 762 Bytes
Versions: 3
Compression:
Stored size: 762 Bytes
Contents
# frozen_string_literal: true module Strava module Web class RaiseResponseError < ::Faraday::Middleware CLIENT_ERROR_STATUSES = (400...600).freeze def on_complete(env) case env[:status] when 404 raise Faraday::ResourceNotFound, response_values(env) when 407 # mimic the behavior that we get with proxy requests with HTTPS raise Faraday::ConnectionFailed, %(407 "Proxy Authentication Required ") when CLIENT_ERROR_STATUSES raise Strava::Errors::Fault, response_values(env) end end def response_values(env) { status: env.status, headers: env.response_headers, body: env.body } end end end end
Version data entries
3 entries across 3 versions & 1 rubygems