2020-04-01 12:51:18 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Provides methods to manage wallets
|
2016-07-05 13:20:25 +02:00
|
|
|
class WalletService
|
|
|
|
def initialize(user: nil, wallet: nil)
|
|
|
|
@user = user
|
|
|
|
@wallet = wallet
|
|
|
|
end
|
|
|
|
|
2016-07-20 13:03:46 +02:00
|
|
|
## credit an amount to wallet, if credit success then return a wallet transaction and notify to admin
|
2016-07-05 13:20:25 +02:00
|
|
|
def credit(amount)
|
2016-07-20 13:03:46 +02:00
|
|
|
ActiveRecord::Base.transaction do
|
|
|
|
if @wallet.credit(amount)
|
2020-04-01 12:51:18 +02:00
|
|
|
transaction = WalletTransaction.new(
|
|
|
|
invoicing_profile: @user.invoicing_profile,
|
|
|
|
wallet: @wallet,
|
|
|
|
transaction_type: 'credit',
|
|
|
|
amount: amount
|
|
|
|
)
|
2016-07-20 13:03:46 +02:00
|
|
|
if transaction.save
|
|
|
|
NotificationCenter.call type: 'notify_user_wallet_is_credited',
|
|
|
|
receiver: @wallet.user,
|
|
|
|
attached_object: transaction
|
|
|
|
NotificationCenter.call type: 'notify_admin_user_wallet_is_credited',
|
2020-04-29 15:34:30 +02:00
|
|
|
receiver: User.admins_and_managers,
|
2016-07-20 13:03:46 +02:00
|
|
|
attached_object: transaction
|
|
|
|
return transaction
|
|
|
|
end
|
|
|
|
end
|
|
|
|
raise ActiveRecord::Rollback
|
2016-07-05 13:20:25 +02:00
|
|
|
end
|
2016-12-12 14:20:26 +01:00
|
|
|
false
|
2016-07-07 15:57:06 +02:00
|
|
|
end
|
|
|
|
|
2016-07-20 13:03:46 +02:00
|
|
|
## debit an amount to wallet, if debit success then return a wallet transaction
|
2016-07-07 15:57:06 +02:00
|
|
|
def debit(amount, transactable)
|
2016-07-20 13:03:46 +02:00
|
|
|
ActiveRecord::Base.transaction do
|
|
|
|
if @wallet.debit(amount)
|
2019-06-03 16:00:09 +02:00
|
|
|
transaction = WalletTransaction.new(
|
|
|
|
invoicing_profile: @user&.invoicing_profile,
|
|
|
|
wallet: @wallet,
|
|
|
|
transaction_type: 'debit',
|
|
|
|
amount: amount,
|
|
|
|
transactable: transactable
|
|
|
|
)
|
|
|
|
|
|
|
|
return transaction if transaction.save
|
2016-07-20 13:03:46 +02:00
|
|
|
end
|
|
|
|
raise ActiveRecord::Rollback
|
2016-07-07 15:57:06 +02:00
|
|
|
end
|
2016-12-12 14:20:26 +01:00
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
## create a refund invoice associated with the given wallet transaction
|
|
|
|
def create_avoir(wallet_transaction, avoir_date, description)
|
|
|
|
avoir = Avoir.new
|
|
|
|
avoir.type = 'Avoir'
|
|
|
|
avoir.invoiced = wallet_transaction
|
|
|
|
avoir.avoir_date = avoir_date
|
|
|
|
avoir.created_at = avoir_date
|
|
|
|
avoir.description = description
|
2019-09-17 14:48:06 +02:00
|
|
|
avoir.payment_method = 'wallet'
|
2016-12-12 14:20:26 +01:00
|
|
|
avoir.subscription_to_expire = false
|
2020-04-01 17:58:32 +02:00
|
|
|
avoir.invoicing_profile_id = wallet_transaction.wallet.user.invoicing_profile.id
|
2020-04-01 12:51:18 +02:00
|
|
|
avoir.statistic_profile_id = wallet_transaction.wallet.user.statistic_profile.id
|
2016-12-12 14:20:26 +01:00
|
|
|
avoir.total = wallet_transaction.amount * 100.0
|
|
|
|
avoir.save!
|
2016-12-13 15:05:40 +01:00
|
|
|
|
|
|
|
ii = InvoiceItem.new
|
|
|
|
ii.amount = wallet_transaction.amount * 100.0
|
|
|
|
ii.description = I18n.t('invoices.wallet_credit')
|
|
|
|
ii.invoice = avoir
|
|
|
|
ii.save!
|
2016-07-05 13:20:25 +02:00
|
|
|
end
|
|
|
|
end
|