Class: RedditApi::Client
- Inherits:
-
Object
- Object
- RedditApi::Client
- Defined in:
- lib/reddit_api/client.rb
Constant Summary collapse
- MAXIMUM_RECORDS =
100
- MAX_FAILURES =
5
- ERROR_CODES =
(400..511)
Instance Attribute Summary collapse
-
#agent ⇒ Object
readonly
Returns the value of attribute agent.
-
#failures ⇒ Object
readonly
Returns the value of attribute failures.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#password ⇒ Object
readonly
Returns the value of attribute password.
-
#secret ⇒ Object
readonly
Returns the value of attribute secret.
-
#username ⇒ Object
readonly
Returns the value of attribute username.
Instance Method Summary collapse
- #get(endpoint, count, resource_type) ⇒ Object
-
#initialize(args = {}) ⇒ Client
constructor
A new instance of Client.
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
#agent ⇒ Object (readonly)
Returns the value of attribute agent.
6 7 8 |
# File 'lib/reddit_api/client.rb', line 6 def agent @agent end |
#failures ⇒ Object
Returns the value of attribute failures.
6 7 8 |
# File 'lib/reddit_api/client.rb', line 6 def failures @failures end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
6 7 8 |
# File 'lib/reddit_api/client.rb', line 6 def id @id end |
#password ⇒ Object (readonly)
Returns the value of attribute password.
6 7 8 |
# File 'lib/reddit_api/client.rb', line 6 def password @password end |
#secret ⇒ Object (readonly)
Returns the value of attribute secret.
6 7 8 |
# File 'lib/reddit_api/client.rb', line 6 def secret @secret end |
#username ⇒ Object (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 |