Sha256: fa2405a4d4d9d9bb81cd57e7b054c5628e1241d2b079d5bed9c8de3b0d3b0c40

Contents?: true

Size: 1.77 KB

Versions: 5

Compression:

Stored size: 1.77 KB

Contents

# encoding: utf-8

require 'base64'
require 'addressable/uri'
require 'set'

module Github
  # Defines HTTP verbs
  module Request
    
    METHODS = [:get, :post, :put, :delete, :patch]
    METHODS_WITH_BODIES = [ :post, :put, :patch ]

    TOKEN_REQUIRED_REGEXP = [
      /repos\/.*\/.*\/comments/,
    ]

    def get(path, params={}, options={})
      request(:get, path, params, options)
    end

    def patch(path, params={}, options={})
      request(:patch, path, params, options)
    end

    def post(path, params={}, options={})
      request(:post, path, params, options)
    end

    def put(path, params={}, options={})
      request(:put, path, params, options)
    end

    def delete(path, params={}, options={})
      request(:delete, path, params, options)
    end

    def request(method, path, params, options)
      if !METHODS.include?(method)
        raise ArgumentError, "unkown http method: #{method}"
      end

      puts "EXECUTED: #{method} - #{path} with #{params} and #{options}"

      response = connection(options).send(method) do |request|
        case method.to_sym
        when *(METHODS - METHODS_WITH_BODIES)
          request.url(path, params)
        when *METHODS_WITH_BODIES
          request.path = path
          request.body = _process_params(params) unless params.empty?
        end
      end
      response.body
    end

    def _process_params(params)
      return params['data'] if params.has_key?('data')
      return params
    end
    # no need for this smizzle
    def formatted_path(path, options={})
      [ path, options.fetch(:format, format) ].compact.join('.')
    end

    def basic_auth(login, password)
      auth = Base64.encode("#{login}:#{password}")
      auth.gsub!("\n", "")
    end

    def token_auth
    end

  end # Request
end # Github

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
github_api-0.2.0 lib/github_api/request.rb
github_api-0.1.2 lib/github_api/request.rb
github_api-0.1.1 lib/github_api/request.rb
github_api-0.1.0 lib/github_api/request.rb
github_api-0.1.0.pre lib/github_api/request.rb