Class: GooglePlus::Response::RaiseServerError

Inherits:
Faraday::Response::Middleware
  • Object
show all
Defined in:
lib/google_plus/response/raise_server_error.rb

Instance Method Summary collapse

Instance Method Details

#on_complete(env) ⇒ Object



10
11
12
13
14
15
16
17
18
19
# File 'lib/google_plus/response/raise_server_error.rb', line 10

def on_complete(env)
  case env[:status].to_i
  when 500
    raise GooglePlus::Error::InternalServerError.new(error_message(env, "Something is technically wrong."), env[:response_headers])
  when 502
    raise GooglePlus::Error::BadGateway.new(error_message(env, "GooglePlus is down or being upgraded."), env[:response_headers])
  when 503
    raise GooglePlus::Error::ServiceUnavailable.new(error_message(env, "(__-){ GooglePlus is over capacity."), env[:response_headers])
  end
end