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)
SLEEP_TIME =
self.sleep_time

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = {}) ⇒ Client

Returns a new instance of Client.

[View source]

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

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.


14
15
16
# File 'lib/reddit_api/client.rb', line 14

def agent
  @agent
end

#failuresObject

Returns the value of attribute failures.


14
15
16
# File 'lib/reddit_api/client.rb', line 14

def failures
  @failures
end

#idObject (readonly)

Returns the value of attribute id.


14
15
16
# File 'lib/reddit_api/client.rb', line 14

def id
  @id
end

#passwordObject (readonly)

Returns the value of attribute password.


14
15
16
# File 'lib/reddit_api/client.rb', line 14

def password
  @password
end

#secretObject (readonly)

Returns the value of attribute secret.


14
15
16
# File 'lib/reddit_api/client.rb', line 14

def secret
  @secret
end

#usernameObject (readonly)

Returns the value of attribute username.


14
15
16
# File 'lib/reddit_api/client.rb', line 14

def username
  @username
end

Class Method Details

.sleep_timeObject

[View source]

6
7
8
9
10
11
12
# File 'lib/reddit_api/client.rb', line 6

def self.sleep_time
  if ENV["ENVIRONMENT"] == "TEST"
    0
  else
    3
  end
end

Instance Method Details

#get(endpoint, count, resource_type) ⇒ Object

[View source]

35
36
37
38
39
40
41
42
43
44
45
# File 'lib/reddit_api/client.rb', line 35

def get(endpoint, count, resource_type)
  sleep(SLEEP_TIME)
  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