Module: Dropbox::API::Connection::Requests

Included in:
Dropbox::API::Connection
Defined in:
lib/dropbox-api/connection/requests.rb

Instance Method Summary collapse

Instance Method Details

#get(endpoint, path, data = {}, headers = {}) ⇒ Object



63
64
65
66
67
68
# File 'lib/dropbox-api/connection/requests.rb', line 63

def get(endpoint, path, data = {}, headers = {})
  query = Dropbox::API::Util.query(data)
  request do
    token(endpoint).get "#{Dropbox::API::Config.prefix}#{path}?#{URI.parse(URI.encode(query))}", headers
  end
end

#get_raw(endpoint, path, data = {}, headers = {}) ⇒ Object



56
57
58
59
60
61
# File 'lib/dropbox-api/connection/requests.rb', line 56

def get_raw(endpoint, path, data = {}, headers = {})
  query = Dropbox::API::Util.query(data)
  request(:raw => true) do
    token(endpoint).get "#{Dropbox::API::Config.prefix}#{path}?#{URI.parse(URI.encode(query))}", headers
  end
end

#handle_503(response) ⇒ Object



45
46
47
48
49
50
51
52
53
54
# File 'lib/dropbox-api/connection/requests.rb', line 45

def handle_503(response)
  if response.is_a? Net::HTTPServiceUnavailable
    raise Dropbox::API::Error.new("503 - #{response.message}")
  else
    parsed = MultiJson.decode(response.body)
    header_parse = MultiJson.decode(response.headers)
    error_message = "#{parsed["error"]}. Retry after: #{header_parse['Retry-After']}"
    raise Dropbox::API::Error.new("503 - #{error_message}")
  end
end

#post(endpoint, path, data = {}, headers = {}) ⇒ Object



70
71
72
73
74
# File 'lib/dropbox-api/connection/requests.rb', line 70

def post(endpoint, path, data = {}, headers = {})
  request do
    token(endpoint).post "#{Dropbox::API::Config.prefix}#{path}", data, headers
  end
end

#put(endpoint, path, data = {}, headers = {}) ⇒ Object



76
77
78
79
80
# File 'lib/dropbox-api/connection/requests.rb', line 76

def put(endpoint, path, data = {}, headers = {})
  request do
    token(endpoint).put "#{Dropbox::API::Config.prefix}#{path}", data, headers
  end
end

#request(options = {}) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/dropbox-api/connection/requests.rb', line 8

def request(options = {})
  response = yield
  raise Dropbox::API::Error::ConnectionFailed if !response
  status = response.code.to_i
  case status
    when 400
      parsed = MultiJson.decode(response.body)
      raise Dropbox::API::Error::BadInput.new("400 - Bad input parameter - #{parsed['error']}")
    when 401
      raise Dropbox::API::Error::Unauthorized.new("401 - Bad or expired token")
    when 403
      parsed = MultiJson.decode(response.body)
      raise Dropbox::API::Error::Forbidden.new('403 - Bad OAuth request')
    when 404
      raise Dropbox::API::Error::NotFound.new("404 - Not found")
    when 405
      parsed = MultiJson.decode(response.body)
      raise Dropbox::API::Error::WrongMethod.new("405 - Request method not expected - #{parsed['error']}")
    when 406
      parsed = MultiJson.decode(response.body)
      raise Dropbox::API::Error.new("#{status} - #{parsed['error']}")
    when 429
      raise Dropbox::API::Error::RateLimit.new('429 - Rate Limiting in affect')
    when 300..399
      raise Dropbox::API::Error::Redirect.new("#{status} - Redirect Error")
    when 503
      handle_503 response
    when 507
      raise Dropbox::API::Error::StorageQuota.new("507 - Dropbox storage quota exceeded.")
    when 500..502, 504..506, 508..599
      parsed = MultiJson.decode(response.body)
      raise Dropbox::API::Error.new("#{status} - Server error. Check http://status.dropbox.com/")
    else
      options[:raw] ? response.body : MultiJson.decode(response.body)
  end
end