Class: Kaui::ChargebacksController

Inherits:
EngineController show all
Defined in:
app/controllers/kaui/chargebacks_controller.rb

Instance Method Summary collapse

Methods inherited from EngineController

#current_ability, #current_user, #options_for_klient

Instance Method Details

#createObject



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'app/controllers/kaui/chargebacks_controller.rb', line 16

def create
  @chargeback        = Kaui::Chargeback.new(params[:chargeback])
  should_cancel_subs = (params[:cancel_all_subs] == '1')

  begin
    payment = @chargeback.chargeback(current_user.kb_username, params[:reason], params[:comment], options_for_klient)
  rescue => e
    flash.now[:error] = "Error while creating a new chargeback: #{as_string(e)}"
    render :action => :new and return
  end

  # Cancel all subscriptions on the account, if required
  if should_cancel_subs
    begin
       = Kaui::Account.find_by_id(payment., false, false, options_for_klient)
      .bundles(options_for_klient).each do |bundle|
        bundle.subscriptions.each do |subscription|
          # Already cancelled?
          next unless subscription.billing_end_date.blank?

          # Cancel the entitlement immediately but use the default billing policy
          entitlement = Kaui::Subscription.new(:subscription_id => subscription.subscription_id)
          entitlement.cancel_entitlement_immediately(current_user.kb_username, params[:reason], params[:comment], options_for_klient)
        end
      end
    rescue => e
      flash[:error] = "Error while cancelling subscriptions: #{as_string(e)}"
      render :action => :new and return
    end
  end

  redirect_to kaui_engine.(:id => payment.), :notice => 'Chargeback created'
end

#newObject



3
4
5
6
7
8
9
10
11
12
13
14
# File 'app/controllers/kaui/chargebacks_controller.rb', line 3

def new
  begin
    payment = Kaui::Payment::find_by_id(params[:payment_id], options_for_klient)
  rescue => e
    flash[:error] = "Error while retrieving payment: #{as_string(e)}"
    redirect_to :back
  end

  @chargeback = Kaui::Chargeback.new(:payment_id => payment.payment_id,
                                     :amount     => payment.paid_amount_to_money.to_f,
                                     :currency   => payment.currency)
end