Sha256: abe744b0b027cc45a8bfe288b9ba3bea69a48eed11b3f36a2b408aa52a837c17

Contents?: true

Size: 1.99 KB

Versions: 15

Compression:

Stored size: 1.99 KB

Contents

module Effective
  module Providers
    module MonerisCheckout
      extend ActiveSupport::Concern

      def moneris_checkout
        raise('moneris_checkout provider is not available') unless EffectiveOrders.moneris_checkout?

        @order = Order.find(params[:id])

        # We do this even if we're not authorized.
        EffectiveResources.authorized?(self, :update, @order)

        payment = moneris_checkout_receipt_request(moneris_checkout_params[:ticket])
        purchased = (1..49).include?(payment['response_code'].to_i) # Must be > 0 and < 50 to be valid. Sometimes we get the string 'null'

        if purchased == false
          return order_declined(
            payment: payment,
            provider: 'moneris_checkout',
            declined_url: moneris_checkout_params[:declined_url]
          )
        end

        order_purchased(
          payment: payment,
          provider: 'moneris_checkout',
          card: payment['card_type'],
          purchased_url: moneris_checkout_params[:purchased_url],
          current_user: current_user
        )
      end

      private

      def moneris_checkout_params
        params.require(:moneris_checkout).permit(:ticket, :purchased_url, :declined_url)
      end

      def moneris_checkout_receipt_request(ticket)
        params = {
          environment: EffectiveOrders.moneris_checkout.fetch(:environment),

          api_token: EffectiveOrders.moneris_checkout.fetch(:api_token),
          store_id: EffectiveOrders.moneris_checkout.fetch(:store_id),
          checkout_id: EffectiveOrders.moneris_checkout.fetch(:checkout_id),

          action: :receipt,
          ticket: ticket
        }

        response = Effective::Http.post(EffectiveOrders.moneris_request_url, params: params)
        response = response['response'] if response

        raise("moneris receipt error #{response}") unless response && response['success'].to_s == 'true'

        response.dig('receipt', 'cc') || response.dig('receipt', 'gift') || response
      end

    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
effective_orders-6.7.0 app/controllers/effective/providers/moneris_checkout.rb
effective_orders-6.6.3 app/controllers/effective/providers/moneris_checkout.rb
effective_orders-6.6.2 app/controllers/effective/providers/moneris_checkout.rb
effective_orders-6.6.1 app/controllers/effective/providers/moneris_checkout.rb
effective_orders-6.6.0 app/controllers/effective/providers/moneris_checkout.rb
effective_orders-6.5.9 app/controllers/effective/providers/moneris_checkout.rb
effective_orders-6.5.8 app/controllers/effective/providers/moneris_checkout.rb
effective_orders-6.5.7 app/controllers/effective/providers/moneris_checkout.rb
effective_orders-6.5.6 app/controllers/effective/providers/moneris_checkout.rb
effective_orders-6.5.5 app/controllers/effective/providers/moneris_checkout.rb
effective_orders-6.5.4 app/controllers/effective/providers/moneris_checkout.rb
effective_orders-6.5.3 app/controllers/effective/providers/moneris_checkout.rb
effective_orders-6.5.2 app/controllers/effective/providers/moneris_checkout.rb
effective_orders-6.5.1 app/controllers/effective/providers/moneris_checkout.rb
effective_orders-6.5.0 app/controllers/effective/providers/moneris_checkout.rb