Class: RedditApi::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/reddit_api/client.rb

Constant Summary collapse

MAXIMUM_RECORDS =
100
MAX_FAILURES =
5
ERROR_CODES =
(400..511)

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = {}) ⇒ Client

Returns a new instance of Client.


12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/reddit_api/client.rb', line 12

def initialize(args = {})
  @agent = ENV["REDDIT_AGENT"]
  @client = args.fetch(:client, HTTParty)
  @id = ENV["REDDIT_AGENT"]
  @password = ENV["REDDIT_AGENT"]
  @secret = ENV["REDDIT_AGENT"]
  @username = ENV["REDDIT_AGENT"]
  @base_url = "https://oauth.reddit.com/"
  @failures = args.fetch(:failures, 0)
  @null_response_factory = RedditApi:: NullResponse
  @last_record = nil
end

Instance Attribute Details

#agentObject (readonly)

Returns the value of attribute agent.


6
7
8
# File 'lib/reddit_api/client.rb', line 6

def agent
  @agent
end

#failuresObject

Returns the value of attribute failures.


6
7
8
# File 'lib/reddit_api/client.rb', line 6

def failures
  @failures
end

#idObject (readonly)

Returns the value of attribute id.


6
7
8
# File 'lib/reddit_api/client.rb', line 6

def id
  @id
end

#passwordObject (readonly)

Returns the value of attribute password.


6
7
8
# File 'lib/reddit_api/client.rb', line 6

def password
  @password
end

#secretObject (readonly)

Returns the value of attribute secret.


6
7
8
# File 'lib/reddit_api/client.rb', line 6

def secret
  @secret
end

#usernameObject (readonly)

Returns the value of attribute username.


6
7
8
# File 'lib/reddit_api/client.rb', line 6

def username
  @username
end

Instance Method Details

#get(endpoint, count, resource_type) ⇒ Object


25
26
27
28
29
30
31
32
33
34
35
# File 'lib/reddit_api/client.rb', line 25

def get(endpoint, count, resource_type)
  sleep(3)
  records = {}
  loop do
    new_records = request_records(endpoint, resource_type)
    collect_records(new_records, records, count)
    break if break_get?(records, count)
  end
  self.last_record = nil
  records.keys
end