donation error handling

This commit is contained in:
Matt Dunn-Rankin 2017-01-07 19:19:44 -08:00
parent 3b609052d5
commit dc582e5980

View file

@ -1,9 +1,20 @@
class DonationsController < ApplicationController
def create
@campaign = Campaign.current
@donation = Donation.create_from_charge(
@campaign, current_user, params[:donation])
redirect_to @donation
begin
@donation = Donation.create_from_charge(
@campaign, current_user, params[:donation])
rescue Stripe::CardError => e
flash[:alert] = "We couldn't process your donation: #{e.message}"
redirect_to :donate
rescue => e
flash[:alert] =
"We couldn't process your donation: #{e.message} " +
"Please try again later!"
redirect_to :donate
else
redirect_to @donation
end
end
def show