79 lines
2.1 KiB
Ruby
Raw Normal View History

2017-02-22 10:21:42 +11:00
require_dependency 'discourse'
2017-02-24 13:23:11 +11:00
module DiscourseDonations
class ChargesController < ActionController::Base
2017-02-22 10:21:42 +11:00
include CurrentUser
skip_before_filter :verify_authenticity_token, only: [:create]
def create
if create_account && (email.nil? || email.empty?)
2017-04-04 13:10:31 +10:00
response = {'message' => 'Please enter your email address'}
elsif create_account && params[:username].nil?
response = {'message' => 'Please enter a username'}
else
2017-04-06 14:22:22 +10:00
payment = DiscourseDonations::Stripe.new(secret_key, stripe_options)
response = payment.charge(email, params)
end
response['rewards'] = []
2017-04-21 12:08:52 +10:00
if reward?(payment)
if current_user.present?
reward = DiscourseDonations::Rewards.new(current_user)
if reward.add_to_group(group_name)
response['rewards'] << { type: :group, name: group_name }
end
if reward.grant_badge(badge_name)
response['rewards'] << { type: :badge, name: badge_name }
end
elsif email.present?
if group_name.present?
store = PluginStore.get('discourse-donations', 'group:add') || []
PluginStore.set('discourse-donations', 'group:add', store << email)
end
2017-04-27 19:31:11 +10:00
if badge_name.present?
store = PluginStore.get('discourse-donations', 'badge:grant') || []
PluginStore.set('discourse-donations', 'badge:grant', store << email)
end
2017-04-27 13:34:48 +10:00
end
end
render :json => response
end
private
def create_account
params[:create_account] == 'true'
end
def reward?(payment)
payment.present? && payment.successful?
end
2017-04-24 11:44:55 +10:00
def group_name
SiteSetting.discourse_donations_reward_group_name
end
def badge_name
SiteSetting.discourse_donations_reward_badge_name
end
2017-04-06 14:22:22 +10:00
def secret_key
SiteSetting.discourse_donations_secret_key
end
def stripe_options
{
description: SiteSetting.discourse_donations_description,
currency: SiteSetting.discourse_donations_currency
}
end
def email
params[:email] || current_user.try(:email)
end
end
end