Class: RedditApi::Client

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

Constant Summary collapse

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.


20
21
22
23
24
25
26
# File 'lib/reddit_api/client.rb', line 20

def initialize(args = {})
  @client = args.fetch(:client, HTTParty)
  @requestor = args.fetch(:requestor, RedditApi::Requestor.new(client: client))
  @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


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

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

Instance Method Details

#get(endpoint, count, resource_type) ⇒ Object


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

def get(endpoint, count, resource_type)
  if count > 1
    get_many(endpoint, count, resource_type)
  else
    get_one(endpoint, count, resource_type)
  end
end