Sha256: 6eb7e81960a517e3eed35b403ae7e6ac62110798209e00dfd8250100ea302419

Contents?: true

Size: 1.87 KB

Versions: 1

Compression:

Stored size: 1.87 KB

Contents

require 'httparty'
require 'nokogiri'

%w{version exceptions utilities account flair links_comments listings moderation pms subreddits users}.each do |local|
  require "snoo/#{local}"
end
# Snoo reddit API wrapper
#
# @author Jeff Sandberg <paradox460@gmail.com>
module Snoo
  # Snoo reddit API wrapper
  #
  # @author (see Snoo)
  class Client
    include HTTParty
    [Account, Flair, LinksComments, Listings, Moderation, PM, Utilities, User, Subreddit].each do |inc|
      include inc
    end

    attr_reader(:modhash, :username, :userid, :cookies)


    # Creates a new instance of Snoo.
    #
    # As of 0.1.0.pre.4, you can auth or log-in via initializers, saving you from having to run the log-in or auth command seperately.
    # Simply pass username-password options, OR modhash-cookie options (you cannot do both)
    #
    # @param opts [Hash] A hash of options
    # @option opts [String] :url The base url of the reddit instance to use. Only change this if you have a private reddit
    # @option opts [String] :useragent The useragent the bot uses. Please change this if you write your own complex bot
    # @option opts [String] :username The username the bot will log in as
    # @option opts [String] :password The password the bot will log in with
    # @option opts [String] :modhash The modhash the bot will auth with
    # @option opts [String] :cookies The cookie string the bot will auth with
    def initialize( opts = {} )
      options = {url: "http://www.reddit.com", useragent: "Snoo ruby reddit api wrapper v#{VERSION}" }.merge opts
      @baseurl = options[:url]
      self.class.base_uri options[:url]
      @headers = {'User-Agent' => options[:useragent] }
      self.class.headers @headers
      @cookies = nil
      @modhash = nil

      if !(options[:username].nil? && options[:password].nil?)
        self.log_in options[:username], options[:password]
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
snoo-0.1.0.pre.6 lib/snoo.rb