houdini/app/models/stripe_charge.rb

78 lines
1.8 KiB
Ruby
Raw Normal View History

2021-05-05 16:35:17 +00:00
# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
class StripeCharge < ApplicationRecord
include Model::SubtransactionPaymentable
belongs_to :payment
delegate :gross_amount, :net_amount, :fee_total, to: :payment
delegate :currency, to: :nonprofit
concerning :JBuilder do # rubocop:disable Metrics/BlockLength
included do
setup_houid :stripechrg
end
def to_builder(*expand) # rubocop:disable Metrics/MethodLength, Metrics/AbcSize
init_builder(*expand) do |json|
json.object 'stripe_transaction_charge'
json.gross_amount do
json.cents gross_amount
json.currency currency
end
json.net_amount do
json.cents net_amount
json.currency currency
end
json.fee_total do
json.cents fee_total
json.currency currency
end
json.created payment.date.to_i
json.stripe_id payment.charge.stripe_charge_id
json.type 'payment'
json.add_builder_expansion :nonprofit, :supporter, :subtransaction
json.add_builder_expansion :trx, json_attribute: :transaction
end
end
def to_id
::Jbuilder.new do |json|
json.(self, :id)
json.object 'stripe_transaction_charge'
json.type 'payment'
end
end
def publish_created # rubocop:disable Metrics/MethodLength
Houdini.event_publisher.announce(
:stripe_transaction_charge_created,
to_event('stripe_transaction_charge.created',
:nonprofit,
:trx,
:supporter,
:subtransaction).attributes!
)
Houdini.event_publisher.announce(
:payment_created,
to_event(
'payment.created',
:nonprofit,
:trx,
:supporter,
:subtransaction
).attributes!
)
end
end
end