1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/controllers/api/payments_controller.rb

123 lines
4.9 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
# API Controller for handling payments process in the front-end
class API::PaymentsController < API::ApiController
before_action :authenticate_user!
2019-09-10 11:46:14 +02:00
##
# Client requests to confirm a card payment will ask this endpoint.
# It will check for the need of a strong customer authentication (SCA) to confirm the payment or confirm that the payment
# was successfully made. After the payment was made, the reservation/subscription will be created
##
def confirm_payment
begin
2019-09-09 17:37:54 +02:00
if params[:payment_method_id].present?
2019-09-10 11:46:14 +02:00
# Check the coupon
unless coupon_params[:coupon_code].nil?
coupon = Coupon.find_by(code: coupon_params[:coupon_code])
raise InvalidCouponError if coupon.nil? || coupon.status(current_user.id) != 'active'
end
2019-09-10 11:46:14 +02:00
# Compute the price
2019-09-09 17:37:54 +02:00
reservable = cart_items_params[:reservable_type].constantize.find(cart_items_params[:reservable_id])
price_details = Price.compute(false,
current_user,
reservable,
cart_items_params[:slots_attributes] || [],
cart_items_params[:plan_id],
cart_items_params[:nb_reserve_places],
cart_items_params[:tickets_attributes],
coupon_params[:coupon_code])
2019-09-09 17:37:54 +02:00
2019-09-10 11:46:14 +02:00
# Subtract wallet amount from total
total = price_details[:total]
wallet_debit = get_wallet_debit(current_user, total)
# Create the PaymentIntent
intent = Stripe::PaymentIntent.create(
2019-09-09 17:37:54 +02:00
payment_method: params[:payment_method_id],
2019-09-10 11:46:14 +02:00
amount: total - wallet_debit,
currency: Rails.application.secrets.stripe_currency,
confirmation_method: 'manual',
confirm: true,
customer: current_user.stp_customer_id,
)
2019-09-09 17:37:54 +02:00
elsif params[:payment_intent_id].present?
intent = Stripe::PaymentIntent.confirm(params[:payment_intent_id])
end
rescue Stripe::CardError => e
# Display error on client
2019-09-10 12:46:02 +02:00
render(status: 200, json: { error: e.message }) and return
end
render(on_payment_success(intent)) and return if intent.status == 'succeeded'
2019-09-10 11:46:14 +02:00
render generate_payment_response(intent)
end
2019-09-09 17:37:54 +02:00
2019-09-10 11:46:14 +02:00
private
def on_payment_success(intent)
2019-09-10 11:46:14 +02:00
# TODO create subscription is needed
user_id = params[:cart_items][:reservation][:user_id]
2019-09-10 11:46:14 +02:00
@reservation = Reservation.new(reservation_params)
is_reserve = Reservations::Reserve.new(user_id, current_user.invoicing_profile.id)
.pay_and_save(@reservation, coupon: coupon_params[:coupon_code], payment_intent_id: intent.id)
Stripe::PaymentIntent.update(
intent.id,
description: "Invoice reference: #{@reservation.invoice.reference}"
)
2019-09-09 17:37:54 +02:00
2019-09-10 11:46:14 +02:00
if is_reserve
SubscriptionExtensionAfterReservation.new(@reservation).extend_subscription_if_eligible
2019-09-10 11:46:14 +02:00
{ template: 'api/reservations/show', status: :created, location: @reservation }
else
{ json: @reservation.errors, status: :unprocessable_entity }
end
rescue InvalidCouponError
{ json: { coupon_code: 'wrong coupon code or expired' }, status: :unprocessable_entity }
end
def generate_payment_response(intent)
if intent.status == 'requires_action' && intent.next_action.type == 'use_stripe_sdk'
# Tell the client to handle the action
{
status: 200,
json: {
requires_action: true,
payment_intent_client_secret: intent.client_secret
}
}
elsif intent.status == 'succeeded'
# The payment didn't need any additional actions and is completed!
# Handle post-payment fulfillment
{ status: 200, json: { success: true } }
else
# Invalid status
{ status: 500, json: { error: 'Invalid PaymentIntent status' } }
end
end
2019-09-09 17:37:54 +02:00
2019-09-10 11:46:14 +02:00
def get_wallet_debit(user, total_amount)
wallet_amount = (user.wallet.amount * 100).to_i
wallet_amount >= total_amount ? total_amount : wallet_amount
end
2019-09-09 17:37:54 +02:00
def reservation_params
params[:cart_items].require(:reservation).permit(:reservable_id, :reservable_type, :plan_id, :nb_reserve_places,
tickets_attributes: %i[event_price_category_id booked],
slots_attributes: %i[id start_at end_at availability_id offered])
2019-09-09 17:37:54 +02:00
end
2019-09-09 17:37:54 +02:00
def cart_items_params
params[:cart_items].require(:reservation).permit(:reservable_id, :reservable_type, :plan_id, :user_id, :nb_reserve_places,
tickets_attributes: %i[event_price_category_id booked],
slots_attributes: %i[id start_at end_at availability_id offered])
2019-09-09 17:37:54 +02:00
end
def coupon_params
params.require(:cart_items).permit(:coupon_code)
end
end