forked from recurly/recurly-integration-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.rb
85 lines (70 loc) · 2.39 KB
/
app.rb
1
2
3
4
5
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Require sinatra and the recurly gem
require 'sinatra'
require 'recurly'
# Used to create unique account_codes
require 'securerandom'
# Configure the Recurly gem with your subdomain and API key
Recurly.subdomain = 'RECURLY_SUBDOMAIN'
Recurly.api_key = 'RECURLY_API_KEY'
set :port, 9001
set :public_folder, '../../public'
enable :logging
success_url = 'SUCCESS_URL'
error_url = 'ERROR_URL'
# POST route to handle a new subscription form
post '/api/subscriptions/new' do
# We'll wrap this in a begin-rescue to catch any API
# errors that may occur
begin
# This is not a good idea in production but helpful for debugging
# These params may contain sensitive information you don't want logged
logger.info params
# Create the subscription using minimal
# information: plan_code, account_code, and
# the token we generated on the frontend
subscription = Recurly::Subscription.create! plan_code: :basic,
account: {
account_code: SecureRandom.uuid,
billing_info: { token_id: params['recurly-token'] }
}
# The subscription has been created and we can redirect
# to a confirmation page
redirect success_url
rescue Recurly::Resource::Invalid, Recurly::API::ResponseError => e
# Here we may wish to log the API error and send the
# customer to an appropriate URL, perhaps including
# and error message
logger.error e
redirect error_url
end
end
# POST route to handle a new account form
post '/api/accounts/new' do
begin
Recurly::Account.create! account_code: SecureRandom.uuid,
billing_info: { token_id: params['recurly-token'] }
redirect success_url
rescue Recurly::Resource::Invalid, Recurly::API::ResponseError => e
redirect error_url
end
end
# PUT route to handle an account update form
post '/api/accounts/:account_code' do
begin
account = Recurly::Account.find params[:account_code]
account.billing_info = { token_id: params['recurly-token'] }
account.save!
redirect success_url
rescue Recurly::Resource::Invalid, Recurly::API::ResponseError => e
redirect error_url
end
end
# This endpoint provides configuration to recurly.js
get '/config.js' do
content_type :js
"window.recurlyConfig = { publicKey: '#{ENV['RECURLY_PUBLIC_KEY']}' }"
end
# All other routes will be treated as static requests
get '*' do
send_file File.join(settings.public_folder, request.path, 'index.html')
end