Class: Kaui::PaymentsController

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

Constant Summary

Constants included from EngineControllerUtil

EngineControllerUtil::MAXIMUM_NUMBER_OF_RECORDS_DOWNLOAD, EngineControllerUtil::SIMPLE_PAGINATION_THRESHOLD

Instance Method Summary collapse

Methods inherited from EngineController

#check_for_redirect_to_tenant_screen, #current_ability, #current_user, #options_for_klient, #populate_account_details, #retrieve_allowed_users_for_current_user, #retrieve_tenants_for_current_user

Methods included from ErrorHandler

#perform_redirect_after_error

Instance Method Details

#cancel_scheduled_paymentObject



187
188
189
190
191
192
193
194
195
196
197
# File 'app/controllers/kaui/payments_controller.rb', line 187

def cancel_scheduled_payment
  payment_transaction = Kaui::Transaction.new
  payment_transaction.transaction_external_key = params.require(:transaction_external_key)

  payment_transaction.cancel_scheduled_payment(current_user.kb_username, params[:reason], params[:comment], options_for_klient)

  redirect_to kaui_engine.(params.require(:account_id), params.require(:id)), notice: 'Payment attempt retry successfully deleted'
rescue StandardError => e
  flash[:error] = "Error deleting payment attempt retry: #{as_string(e)}"
  redirect_to kaui_engine.(params.require(:account_id))
end

#createObject



153
154
155
156
157
158
159
# File 'app/controllers/kaui/payments_controller.rb', line 153

def create
  payment = Kaui::InvoicePayment.new(invoice_payment_params)
  external_payment = params[:external] == '1'
  payment.payment_method_id = nil if external_payment || payment.payment_method_id.blank?
  payment.create(external_payment, current_user.kb_username, params[:reason], params[:comment], options_for_klient)
  redirect_to kaui_engine.(payment., payment.target_invoice_id), notice: 'Payment triggered'
end

#downloadObject



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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'app/controllers/kaui/payments_controller.rb', line 18

def download
   = params[:account_id]
  start_date = params[:startDate]
  end_date = params[:endDate]
  all_fields_checked = params[:allFieldsChecked] == 'true'
  query_string = params[:search]

  if all_fields_checked
    columns = KillBillClient::Model::PaymentAttributes.instance_variable_get('@json_attributes') - %w[transactions audit_logs]
    csv_headers = columns.dup
    Kaui::Payment::REMAPPING_FIELDS.each do |k, v|
      index = csv_headers.index(k)
      csv_headers[index] = v if index
    end
  else
    columns = params.require(:columnsString).split(',').map { |attr| attr.split.join('_').downcase }
    csv_headers = columns.dup
    Kaui::Payment::REMAPPING_FIELDS.each do |k, v|
      index = columns.index(v)
      columns[index] = k if index
    end
  end
  query_string = remapping_addvanced_search_fields(query_string, Kaui::Payment::ADVANCED_SEARCH_NAME_CHANGES)
  kb_params = {}
  kb_params[:startDate] = Date.parse(start_date).strftime('%Y-%m-%d') if start_date
  kb_params[:endDate] = Date.parse(end_date).strftime('%Y-%m-%d') if end_date
   = .present? ? Kaui::.find_by_id_or_key(, false, false, options_for_klient) : nil

  payments = if .present? && query_string.blank?
               Kaui::.paginated_payments(, nil, nil, 'NONE', options_for_klient).map! { |payment| Kaui::Payment.build_from_raw_invoice(payment) }
             else
               Kaui::Payment.list_or_search(query_string, 0, MAXIMUM_NUMBER_OF_RECORDS_DOWNLOAD, options_for_klient.merge(params: kb_params))
             end

  payments.each do |payment|
    created_date = nil
    payment.transactions.each do |transaction|
      transaction_date = Date.parse(transaction.effective_date)
      created_date = transaction_date if created_date.nil? || (transaction_date < created_date)
    end
    payment.payment_date = created_date
  end

  csv_string = CSV.generate(headers: true) do |csv|
    csv << columns

    payments.each do |payment|
      next if start_date && end_date && (payment.payment_date < Date.parse(start_date) || payment.payment_date > Date.parse(end_date))

      data = columns.map do |attr|
        case attr
        when 'payment_number'
          payment.payment_number
        when 'payment_date'
          view_context.format_date(payment.payment_date, &.time_zone)
        when 'total_authed_amount_to_money'
          view_context.humanized_money_with_symbol(payment.total_authed_amount_to_money)
        when 'paid_amount_to_money'
          view_context.humanized_money_with_symbol(payment.paid_amount_to_money)
        when 'returned_amount_to_money'
          view_context.humanized_money_with_symbol(payment.returned_amount_to_money)
        when 'status'
          payment.transactions.empty? ? nil : payment.transactions[-1].status
        else
          payment&.send(attr.downcase)
        end
      end
      csv << data
    end
  end
  send_data csv_string, filename: "payments-#{Date.today}.csv", type: 'text/csv'
end

#indexObject



7
8
9
10
11
12
13
14
15
16
# File 'app/controllers/kaui/payments_controller.rb', line 7

def index
  @search_query = params[:q] || params[:account_id]
  @advance_search_query = request.query_string
  @ordering = params[:ordering] || (@search_query.blank? ? 'desc' : 'asc')
  @offset = params[:offset] || 0
  @limit = params[:limit] || 50
  @search_fields = Kaui::Payment::ADVANCED_SEARCH_COLUMNS.map { |attr| [attr, attr.split('_').join(' ').capitalize] }

  @max_nb_records = @search_query.blank? ? Kaui::Payment.list_or_search(nil, 0, 0, options_for_klient).pagination_max_nb_records : 0
end

#newObject



142
143
144
145
146
147
148
149
150
151
# File 'app/controllers/kaui/payments_controller.rb', line 142

def new
  cached_options_for_klient = options_for_klient
  fetch_invoice = promise { Kaui::Invoice.find_by_id(params.require(:invoice_id), false, 'NONE', cached_options_for_klient) }
  fetch_payment_methods = promise { Kaui::PaymentMethod.(params.require(:account_id), false, cached_options_for_klient) }

  @invoice = wait(fetch_invoice)
  @payment_methods = wait(fetch_payment_methods)

  @payment = Kaui::InvoicePayment.new('accountId' => @account., 'targetInvoiceId' => @invoice.invoice_id, 'purchasedAmount' => @invoice.balance)
end

#paginationObject



91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# File 'app/controllers/kaui/payments_controller.rb', line 91

def pagination
   = nil
  searcher = lambda do |search_key, offset, limit|
    if Kaui::Payment::TRANSACTION_STATUSES.include?(search_key)
      # Search is done by payment state on the server side, see http://docs.killbill.io/latest/userguide_payment.html#_payment_states
      payment_state = if %w[PLUGIN_FAILURE UNKNOWN].include?(search_key)
                        '_ERRORED'
                      elsif search_key == 'PAYMENT_FAILURE'
                        '_FAILED'
                      else
                        "_#{search_key}"
                      end
      payments = Kaui::Payment.list_or_search(payment_state, offset, limit, options_for_klient)
    else
       = begin
        Kaui::.find_by_id_or_key(search_key, false, false, options_for_klient)
      rescue StandardError
        nil
      end

      payments = if .nil?
                   search_key = remapping_addvanced_search_fields(search_key, Kaui::Payment::ADVANCED_SEARCH_NAME_CHANGES)
                   Kaui::Payment.list_or_search(search_key, offset, limit, options_for_klient)
                 else
                   .payments(options_for_klient).map! { |payment| Kaui::Payment.build_from_raw_payment(payment) }
                 end
    end

    payments.each do |payment|
      created_date = nil
      payment.transactions.each do |transaction|
        transaction_date = Date.parse(transaction.effective_date)
        created_date = transaction_date if created_date.nil? || (transaction_date < created_date)
      end
      payment.payment_date = created_date
    end

    payments
  end

  data_extractor = lambda do |payment, column|
    Kaui..call(, payment, view_context)[2][column]
  end

  formatter = lambda do |payment|
    Kaui..call(, payment, view_context)[1]
  end

  paginate searcher, data_extractor, formatter
end

#restful_showObject



178
179
180
181
182
183
184
185
# File 'app/controllers/kaui/payments_controller.rb', line 178

def restful_show
  begin
    payment = Kaui::InvoicePayment.find_by_id(params.require(:id), false, true, options_for_klient)
  rescue KillBillClient::API::NotFound
    payment = Kaui::Payment.find_by_external_key(params.require(:id), false, true, options_for_klient)
  end
  redirect_to (payment., payment.payment_id)
end

#showObject



161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# File 'app/controllers/kaui/payments_controller.rb', line 161

def show
  cached_options_for_klient = options_for_klient

  invoice_payment = Kaui::InvoicePayment.find_safely_by_id(params.require(:id), cached_options_for_klient)
  @payment = Kaui::InvoicePayment.build_from_raw_payment(invoice_payment)

  fetch_payment_fields = promise do
    direct_payment = Kaui::Payment.new(payment_id: @payment.payment_id)
    direct_payment.custom_fields('NONE', cached_options_for_klient).sort { |cf_a, cf_b| cf_a.name.downcase <=> cf_b.name.downcase }
  end
  # The payment method may have been deleted
  fetch_payment_method = promise { Kaui::PaymentMethod.find_safely_by_id(@payment.payment_method_id, cached_options_for_klient) }

  @custom_fields = wait(fetch_payment_fields)
  @payment_method = wait(fetch_payment_method)
end