Sha256: 95c9259f2f993928d956da835b0e9dd6ba2c9f47359094c2ab1612cfae4f2897

Contents?: true

Size: 1.64 KB

Versions: 2

Compression:

Stored size: 1.64 KB

Contents

class Supercharged::GatewayNotificationsController < ApplicationController
  skip_before_filter :verify_authenticity_token
  before_filter :check_any_params, only: :create

  def create
    persistent_logger.info("Notification for #{params[:gateway]}")
    persistent_logger.info("params = #{params.inspect}")

    @notification = GatewayNotification.create!(params: params, gateway: params[:gateway], raw_post: request.raw_post)
    @notification.logger = persistent_logger

    error = if !@notification.complete?
      "not_completed"
    elsif !@notification.acknowledge
      "acknowledge_failed"
    elsif !@notification.charge
      "charge not found"
    end

    if error
      persistent_logger.error("Error: #{error.inspect}")

      charge = @notification.charge

      if charge && !charge.error?
        @notification.charge.failed!
        @notification.charge.update_attribute(:error, error)
      end

      head :bad_request
    else
      persistent_logger.info("Success")
      @notification.approve
      if @notification.need_response?
        persistent_logger.info("Need need_response: #{@notification.success_response.inspect}")
        render text: @notification.success_response
      else
        persistent_logger.info("Redirecting")
        redirect_to root_url
      end
    end
  end

  def success
    redirect_to root_url, notice: "Success"
  end

  def fail
    redirect_to root_url, error: "Fail"
  end

  private

  def persistent_logger
    @persistent_logger ||= Logger.new("log/supercharged/gateway_notifications.log")
  end

  def check_any_params
    if request.raw_post.blank?
      head :bad_request
      false
    end
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
supercharged-2.0.3 app/controllers/supercharged/gateway_notifications_controller.rb
supercharged-2.0.2 app/controllers/supercharged/gateway_notifications_controller.rb