6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# File 'app/controllers/effective/providers/helcim.rb', line 6
def helcim
raise('helcim provider is not available') unless EffectiveOrders.helcim?
@order = Effective::Order.deep.find(params[:id])
@order.current_user = current_user unless admin_checkout?(helcim_params)
EffectiveResources.authorize!(self, :update, @order)
api = Effective::HelcimApi.new
payment_payload = api.decode_payment_payload(helcim_params[:payment])
if payment_payload.blank?
flash[:danger] = 'Unable to process helcim order without payment. please try again.'
return order_not_processed(declined_url: helcim_params[:declined_url])
end
payment = api.get_payment(@order, payment_payload)
api.assign_order_charges!(@order, payment)
api.verify_payment!(@order, payment)
purchased = api.purchased?(payment)
if purchased == false
flash[:danger] = "Payment was unsuccessful. The credit card payment failed with message: #{payment['status'] || 'none'}. Please try again."
return order_declined(
payment: payment,
provider: 'helcim',
card: payment['card'],
declined_url: helcim_params[:declined_url]
)
end
order_purchased(
payment: payment,
provider: 'helcim',
card: payment['card'],
purchased_url: helcim_params[:purchased_url]
)
end
|