Right now I get this error message when the submit.html.erb loads: Cannot charge a customer that has no active card
.
I want to understand how I can improve my controller. The goal is to not have the error message when the submit page loads. But only if there's an actual user submitting false information.
class SubmissionsController < ApplicationController
include Wicked::Wizard
steps :name, :details, :comments, :submit, :thankyou
def show
@company = Company.find(params[:company_id])
render_wizard
end
def update
@company = Company.find(params[:company_id])
# one time checkout
@amount = 50
@description = 'Premium Package'
customer = Stripe::Customer.create(
:email => params[:stripeEmail],
:source => params[:stripeToken]
)
Stripe::Charge.create(
:customer => customer.id,
:amount => @amount,
:description => @description,
:currency => 'eur'
)
rescue Stripe::CardError => e
flash[:error] = e.message
params[:company][:status] = step.to_s
params[:company][:status] = 'active' if step == steps.last
@company.update_attributes(company_params)
render_wizard @company
end
private ...
Here's the submit.html.erb
<%= form_for @company, url: wizard_path, method: :put do |f| %>
<article>
<% if flash[:error].present? %>
<div id="error_explanation">
<p><%= flash[:error] %></p>
</div>
<% end %>
<label class="amount">
<span>Amount: €0.50</span>
</label>
</article>
<script src="https://checkout.stripe.com/checkout.js" class="stripe-button"
data-key="<%= Rails.configuration.stripe[:publishable_key] %>"
data-description=<% @description %>
data-amount=<% @amount %>
data-locale="auto"></script>
<% end %>
If I can provide more context, please advise.