discourse-subscriptions/app/controllers/patrons_controller.rb

79 lines
1.9 KiB
Ruby
Raw Normal View History

2019-09-11 05:11:02 -04:00
# frozen_string_literal: true
module DiscoursePatrons
2019-09-12 22:35:38 -04:00
class PatronsController < ::ApplicationController
2019-09-11 05:55:35 -04:00
skip_before_action :verify_authenticity_token, only: [:create]
2019-09-14 06:54:13 -04:00
before_action :set_api_key
2019-09-11 05:55:35 -04:00
2019-09-11 05:11:02 -04:00
def index
2019-09-12 22:58:17 -04:00
result = { email: '' }
2019-09-12 22:35:38 -04:00
if current_user
result[:email] = current_user.email
end
2019-09-11 05:11:02 -04:00
render json: result
end
2019-09-14 03:28:58 -04:00
def show
2019-09-14 18:40:52 -04:00
payment_intent = Stripe::PaymentIntent.retrieve(params[:pid])
if current_user && (current_user.admin || payment_intent[:customer] == current_user.id)
result = payment_intent
else
result = { error: 'Not found' }
end
2019-09-14 04:17:45 -04:00
render json: result
2019-09-14 03:28:58 -04:00
end
2019-09-11 05:11:02 -04:00
def create
2019-09-11 05:55:35 -04:00
begin
response = ::Stripe::PaymentIntent.create(
2019-09-11 21:49:52 -04:00
amount: param_currency_to_number,
2019-09-11 05:55:35 -04:00
currency: SiteSetting.discourse_patrons_currency,
payment_method_types: ['card'],
2019-09-13 00:34:06 -04:00
payment_method: params[:payment_method_id],
description: SiteSetting.discourse_patrons_payment_description,
2019-09-13 00:34:06 -04:00
receipt_email: params[:receipt_email],
2019-09-11 05:55:35 -04:00
confirm: true,
metadata: { user_id: user_id }
2019-09-11 05:55:35 -04:00
)
2019-09-13 08:03:29 -04:00
Payment.create(
2019-09-15 08:03:42 -04:00
user_id: response[:metadata][:user_id],
2019-09-13 08:03:29 -04:00
payment_intent_id: response[:id],
receipt_email: response[:receipt_email],
url: response[:charges][:url],
2019-09-14 01:55:25 -04:00
amount: response[:amount],
currency: response[:currency]
2019-09-13 08:03:29 -04:00
)
2019-09-11 05:55:35 -04:00
rescue ::Stripe::InvalidRequestError => e
response = { error: e }
rescue ::Stripe::CardError => e
response = { error: 'Card Declined' }
end
render json: response
2019-09-11 05:11:02 -04:00
end
2019-09-11 21:49:52 -04:00
private
2019-09-14 06:54:13 -04:00
def set_api_key
::Stripe.api_key = SiteSetting.discourse_patrons_secret_key
end
2019-09-11 21:49:52 -04:00
def param_currency_to_number
params[:amount].to_s.sub('.', '').to_i
end
2019-09-14 01:55:25 -04:00
def user_id
if current_user
current_user.id
end
end
2019-09-11 03:13:12 -04:00
end
end