Class: Kaui::AccountTimelinesController

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

Instance Method Summary collapse

Methods inherited from EngineController

#current_user

Methods included from ErrorHelper

#as_string

Instance Method Details

#indexObject



2
3
4
5
6
# File 'app/controllers/kaui/account_timelines_controller.rb', line 2

def index
  if params[:account_id].present?
    redirect_to kaui_engine.(params[:account_id])
  end
end

#showObject



8
9
10
11
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'app/controllers/kaui/account_timelines_controller.rb', line 8

def show
  @account_id = params[:id]
  unless @account_id.present?
    flash[:notice] = "No id given"
    redirect_to :back
    return
  end
  begin
    @account = Kaui::KillbillHelper::(@account_id)
    @timeline = Kaui::KillbillHelper::(@account_id)
  rescue => e
    flash[:error] = "Could not load the account timeline for #{@account_id}: #{as_string(e)}"
    redirect_to :action => :index
    return
  end

  @invoices_by_id = {}
  @bundle_names = {}
  unless @timeline.nil?
    @timeline.payments.each do |payment|
      if payment.invoice_id.present? && payment.payment_id.present?
        begin
          @invoices_by_id[payment.invoice_id] = Kaui::KillbillHelper::get_invoice(payment.invoice_id)
        rescue => e
          flash[:error] = "Could not get invoice information for the timeline #{@account_id}: #{as_string(e)}"
        end
        payment.bundle_keys.split(",").each do |bundle_key|
          unless @bundle_names.has_key?(bundle_key)
            @bundle_names[bundle_key] = Kaui.bundle_key_display_string.call(bundle_key)
          end
        end
      end
    end
    @timeline.invoices.each do |invoice|
      if invoice.invoice_id.present? && !@invoices_by_id.has_key?(invoice.invoice_id)
        begin
          @invoices_by_id[invoice.invoice_id] = Kaui::KillbillHelper::get_invoice(invoice.invoice_id)
        rescue => e
          flash[:error] = "Could not get invoice information for the timeline #{@account_id}: #{as_string(e)}"
        end
        invoice.bundle_keys.split(",").each do |bundle_key|
          unless @bundle_names.has_key?(bundle_key)
            @bundle_names[bundle_key] = Kaui.bundle_key_display_string.call(bundle_key)
          end
        end
      end
    end
    @timeline.bundles.each do |bundle|
      unless @bundle_names.has_key?(bundle.external_key)
        @bundle_names[bundle.external_key] = Kaui.bundle_key_display_string.call(bundle.external_key)
      end
    end
    if params.has_key?(:external_key)
      @selected_bundle = @bundle_names[params[:external_key]]
    end
  end
end