Class: Kaui::ChargebacksController

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

Instance Method Summary collapse

Instance Method Details

#createObject



12
13
14
15
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
# File 'app/controllers/kaui/chargebacks_controller.rb', line 12

def create
  cached_options_for_klient = options_for_klient

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

  begin
    payment = @chargeback.chargeback(current_user.kb_username, params[:reason], params[:comment], cached_options_for_klient)
  rescue StandardError => 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, cached_options_for_klient)
      .bundles(cached_options_for_klient).each do |bundle|
        bundle.subscriptions.each do |subscription|
          # Already cancelled?
          next if subscription.billing_end_date.present?

          # 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], cached_options_for_klient)
        end
      end
    rescue StandardError => e
      flash[:error] = "Error while cancelling subscriptions: #{as_string(e)}"
      render action: :new and return
    end
  end

  redirect_to kaui_engine.(payment., payment.payment_id), notice: 'Chargeback created'
end

#newObject



5
6
7
8
9
10
# File 'app/controllers/kaui/chargebacks_controller.rb', line 5

def new
  payment = Kaui::Payment.find_by_id(params.require(:payment_id), false, false, options_for_klient)
  @chargeback = Kaui::Chargeback.new(payment_id: payment.payment_id,
                                     amount: payment.paid_amount_to_money.to_f,
                                     currency: payment.currency)
end