Class: Redd::Clients::Script

Inherits:
Base
  • Object
show all
Defined in:
lib/redd/clients/script.rb

Overview

The client for an account you own (e.g. bots).

Constant Summary

Constants included from Base::Utilities

Base::Utilities::OBJECT_KINDS

Instance Attribute Summary collapse

Attributes inherited from Base

#access, #api_endpoint, #auth_endpoint, #rate_limit, #user_agent

Instance Method Summary collapse

Methods inherited from Base

#delete, #get, #patch, #post, #put, #revoke_access!, #with

Methods included from Base::Wikiread

#get_wikipages, #wikipage

Methods included from Base::Stream

#stream

Methods included from Base::Submit

#add_comment

Methods included from Base::Read

#from_fullname, #from_url, #get_comments, #get_controversial, #get_hot, #get_new, #get_top, #multi_from_path, #my_multis, #search, #subreddit_from_name, #user_from_name

Methods included from Base::Privatemessages

#my_messages, #read_all_messages

Methods included from Base::None

#captcha_url, #needs_captcha?, #new_captcha

Methods included from Base::Identity

#me, #my_prefs

Methods included from Base::Account

#edit_my_prefs

Methods included from Base::Utilities

#append_to_listing, #flat_comments, #object_from_body, #property, #request_object

Constructor Details

#initialize(client_id, secret, username, password, **options) ⇒ Script

Returns a new instance of Script.

Parameters:

  • options (Hash)

    The options to create the client with.

See Also:



16
17
18
19
20
21
22
# File 'lib/redd/clients/script.rb', line 16

def initialize(client_id, secret, username, password, **options)
  @client_id = client_id
  @secret = secret
  @username = username
  @password = password
  super(**options)
end

Instance Attribute Details

#client_idObject (readonly)

Returns the value of attribute client_id.



8
9
10
# File 'lib/redd/clients/script.rb', line 8

def client_id
  @client_id
end

#usernameObject (readonly)

Returns the value of attribute username.



11
12
13
# File 'lib/redd/clients/script.rb', line 11

def username
  @username
end

Instance Method Details

#authorize!Access Also known as: refresh_access!

Authorize using the given data.

Returns:

  • (Access)

    The access given by reddit.



26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/redd/clients/script.rb', line 26

def authorize!
  # reset the connection for when the access token is refreshed
  @connection = nil
  response = auth_connection.post(
    '/api/v1/access_token',
    grant_type: 'password',
    username: @username,
    password: @password
  )

  @access = Access.new(response.body)
end