Sha256: fd4c54df4382c37261d7d518c56beccde05b0935667915e03f610c66823b1f33

Contents?: true

Size: 1.42 KB

Versions: 9

Compression:

Stored size: 1.42 KB

Contents

module Paypal
  module NVP
    class Request < Base
      attr_required :username, :password, :signature
      attr_accessor :version

      ENDPOINT = {
        :production => 'https://api-3t.paypal.com/nvp',
        :sandbox => 'https://api-3t.sandbox.paypal.com/nvp'
      }

      def self.endpoint
        if Paypal.sandbox?
          ENDPOINT[:sandbox]
        else
          ENDPOINT[:production]
        end
      end

      def initialize(attributes = {})
        @version = API_VERSION
        super
      end

      def common_params
        {
          :USER => self.username,
          :PWD => self.password,
          :SIGNATURE => self.signature,
          :VERSION => self.version
        }
      end

      def request(method, params = {})
        handle_response do
          post(method, params)
        end
      end

      private

      def post(method, params)
        RestClient.post(self.class.endpoint, common_params.merge(params).merge(:METHOD => method))
      end

      def handle_response
        response = yield
        response = CGI.parse(response).inject({}) do |res, (k, v)|
          res.merge!(k.to_sym => v.first)
        end
        case response[:ACK]
        when 'Success', 'SuccessWithWarning'
          response
        else
          raise APIError.new(response)
        end
      rescue RestClient::Exception => e
        raise HttpError.new(e.http_code, e.message, e.http_body)
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
paypal-express-0.1.0 lib/paypal/nvp/request.rb
paypal-express-0.0.9 lib/paypal/nvp/request.rb
paypal-express-0.0.8 lib/paypal/nvp/request.rb
paypal-express-0.0.7 lib/paypal/nvp/request.rb
paypal-express-0.0.6 lib/paypal/nvp/request.rb
paypal-express-0.0.5 lib/paypal/nvp/request.rb
paypal-express-0.0.4 lib/paypal/nvp/request.rb
paypal-express-0.0.3 lib/paypal/nvp/request.rb
paypal-express-0.0.2 lib/paypal/nvp/request.rb