recurly 2.19.12 → 3.0.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (234) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +14 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +5 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +158 -110
  8. data/Rakefile +6 -0
  9. data/bin/bundle +105 -0
  10. data/bin/coderay +29 -0
  11. data/bin/console +14 -0
  12. data/bin/htmldiff +29 -0
  13. data/bin/ldiff +29 -0
  14. data/bin/pry +29 -0
  15. data/bin/rake +29 -0
  16. data/bin/rspec +29 -0
  17. data/bin/setup +8 -0
  18. data/bin/yard +29 -0
  19. data/bin/yardoc +29 -0
  20. data/bin/yri +29 -0
  21. data/lib/data/ca-certificates.crt +31 -0
  22. data/lib/recurly/client/operations.rb +935 -0
  23. data/lib/recurly/client.rb +198 -0
  24. data/lib/recurly/errors/api_errors.rb +35 -0
  25. data/lib/recurly/errors/network_errors.rb +8 -0
  26. data/lib/recurly/errors.rb +34 -0
  27. data/lib/recurly/pager.rb +119 -0
  28. data/lib/recurly/request.rb +30 -0
  29. data/lib/recurly/requests/account_acquisition_updatable.rb +22 -0
  30. data/lib/recurly/requests/account_create_only.rb +18 -0
  31. data/lib/recurly/requests/account_updatable.rb +50 -0
  32. data/lib/recurly/requests/add_on_create.rb +38 -0
  33. data/lib/recurly/requests/add_on_update.rb +38 -0
  34. data/lib/recurly/requests/address.rb +42 -0
  35. data/lib/recurly/requests/billing_info_create.rb +58 -0
  36. data/lib/recurly/requests/coupon_create_only.rb +66 -0
  37. data/lib/recurly/requests/coupon_updatable.rb +30 -0
  38. data/lib/recurly/requests/create_account.rb +62 -0
  39. data/lib/recurly/requests/create_coupon.rb +90 -0
  40. data/lib/recurly/requests/invoice_create.rb +42 -0
  41. data/lib/recurly/requests/invoice_refund.rb +30 -0
  42. data/lib/recurly/requests/line_item_create.rb +46 -0
  43. data/lib/recurly/requests/plan_create.rb +66 -0
  44. data/lib/recurly/requests/plan_update.rb +70 -0
  45. data/lib/recurly/requests/shipping_address_create.rb +58 -0
  46. data/lib/recurly/requests/shipping_address_update.rb +62 -0
  47. data/lib/recurly/requests/subscription_add_on_create.rb +22 -0
  48. data/lib/recurly/requests/subscription_change_create.rb +42 -0
  49. data/lib/recurly/requests/subscription_create.rb +86 -0
  50. data/lib/recurly/requests/subscription_update.rb +42 -0
  51. data/lib/recurly/requests/update_coupon.rb +30 -0
  52. data/lib/recurly/resource.rb +16 -1114
  53. data/lib/recurly/resources/account.rb +86 -0
  54. data/lib/recurly/resources/account_acquisition.rb +42 -0
  55. data/lib/recurly/resources/account_balance.rb +22 -0
  56. data/lib/recurly/resources/account_note.rb +30 -0
  57. data/lib/recurly/resources/add_on.rb +62 -0
  58. data/lib/recurly/resources/address.rb +42 -0
  59. data/lib/recurly/resources/billing_info.rb +62 -0
  60. data/lib/recurly/resources/coupon.rb +110 -0
  61. data/lib/recurly/resources/coupon_discount.rb +22 -0
  62. data/lib/recurly/resources/coupon_redemption.rb +46 -0
  63. data/lib/recurly/resources/credit_payment.rb +62 -0
  64. data/lib/recurly/resources/error.rb +18 -0
  65. data/lib/recurly/resources/error_may_have_transaction.rb +22 -0
  66. data/lib/recurly/resources/invoice.rb +138 -0
  67. data/lib/recurly/resources/invoice_collection.rb +18 -0
  68. data/lib/recurly/resources/line_item.rb +166 -0
  69. data/lib/recurly/resources/plan.rb +86 -0
  70. data/lib/recurly/resources/settings.rb +18 -0
  71. data/lib/recurly/resources/shipping_address.rb +74 -0
  72. data/lib/recurly/resources/site.rb +46 -0
  73. data/lib/recurly/resources/subscription.rb +134 -0
  74. data/lib/recurly/resources/subscription_add_on.rb +42 -0
  75. data/lib/recurly/resources/subscription_change.rb +54 -0
  76. data/lib/recurly/resources/tax_info.rb +18 -0
  77. data/lib/recurly/resources/transaction.rb +146 -0
  78. data/lib/recurly/resources/unique_coupon_code.rb +38 -0
  79. data/lib/recurly/resources/user.rb +38 -0
  80. data/lib/recurly/schema/json_deserializer.rb +53 -0
  81. data/lib/recurly/schema/json_parser.rb +71 -0
  82. data/lib/recurly/schema/request_caster.rb +66 -0
  83. data/lib/recurly/schema/schema_factory.rb +50 -0
  84. data/lib/recurly/schema/schema_validator.rb +125 -0
  85. data/lib/recurly/schema.rb +114 -0
  86. data/lib/recurly/version.rb +1 -10
  87. data/lib/recurly.rb +14 -167
  88. data/recurly.gemspec +32 -0
  89. data/scripts/build +4 -0
  90. data/scripts/clean +6 -0
  91. data/scripts/test +3 -0
  92. metadata +124 -273
  93. data/lib/recurly/account.rb +0 -230
  94. data/lib/recurly/account_acquisition.rb +0 -27
  95. data/lib/recurly/account_balance.rb +0 -23
  96. data/lib/recurly/add_on.rb +0 -52
  97. data/lib/recurly/address.rb +0 -25
  98. data/lib/recurly/adjustment.rb +0 -98
  99. data/lib/recurly/api/errors.rb +0 -208
  100. data/lib/recurly/api/net_http_adapter.rb +0 -111
  101. data/lib/recurly/api.rb +0 -110
  102. data/lib/recurly/billing_info.rb +0 -134
  103. data/lib/recurly/business_entity.rb +0 -33
  104. data/lib/recurly/coupon.rb +0 -136
  105. data/lib/recurly/credit_payment.rb +0 -32
  106. data/lib/recurly/currency_percentage_tier.rb +0 -17
  107. data/lib/recurly/custom_field.rb +0 -15
  108. data/lib/recurly/custom_field_definition.rb +0 -14
  109. data/lib/recurly/customer_permission.rb +0 -10
  110. data/lib/recurly/delivery.rb +0 -19
  111. data/lib/recurly/dunning_campaign.rb +0 -30
  112. data/lib/recurly/dunning_cycle.rb +0 -18
  113. data/lib/recurly/entitlement.rb +0 -19
  114. data/lib/recurly/error.rb +0 -13
  115. data/lib/recurly/external_account.rb +0 -17
  116. data/lib/recurly/external_charge.rb +0 -20
  117. data/lib/recurly/external_invoice.rb +0 -27
  118. data/lib/recurly/external_payment_phase.rb +0 -27
  119. data/lib/recurly/external_product.rb +0 -34
  120. data/lib/recurly/external_product_reference.rb +0 -18
  121. data/lib/recurly/external_subscription.rb +0 -51
  122. data/lib/recurly/gateway_attribute.rb +0 -10
  123. data/lib/recurly/general_ledger_account.rb +0 -16
  124. data/lib/recurly/gift_card.rb +0 -85
  125. data/lib/recurly/helper.rb +0 -51
  126. data/lib/recurly/invoice.rb +0 -322
  127. data/lib/recurly/invoice_collection.rb +0 -14
  128. data/lib/recurly/invoice_template.rb +0 -14
  129. data/lib/recurly/item.rb +0 -36
  130. data/lib/recurly/js.rb +0 -14
  131. data/lib/recurly/juris_detail.rb +0 -15
  132. data/lib/recurly/measured_unit.rb +0 -16
  133. data/lib/recurly/money.rb +0 -120
  134. data/lib/recurly/note.rb +0 -14
  135. data/lib/recurly/percentage_tier.rb +0 -17
  136. data/lib/recurly/performance_obligation.rb +0 -15
  137. data/lib/recurly/plan.rb +0 -58
  138. data/lib/recurly/plan_ramp_interval.rb +0 -10
  139. data/lib/recurly/purchase.rb +0 -238
  140. data/lib/recurly/redemption.rb +0 -46
  141. data/lib/recurly/resource/association.rb +0 -16
  142. data/lib/recurly/resource/errors.rb +0 -20
  143. data/lib/recurly/resource/pager.rb +0 -313
  144. data/lib/recurly/rev_rec.rb +0 -18
  145. data/lib/recurly/shipping_address.rb +0 -26
  146. data/lib/recurly/shipping_fee.rb +0 -17
  147. data/lib/recurly/shipping_method.rb +0 -13
  148. data/lib/recurly/sub_add_on_percentage_tier.rb +0 -17
  149. data/lib/recurly/subscription/add_ons.rb +0 -82
  150. data/lib/recurly/subscription.rb +0 -372
  151. data/lib/recurly/subscription_add_on.rb +0 -64
  152. data/lib/recurly/subscription_ramp_interval.rb +0 -12
  153. data/lib/recurly/tax_detail.rb +0 -18
  154. data/lib/recurly/tax_type.rb +0 -13
  155. data/lib/recurly/tier.rb +0 -18
  156. data/lib/recurly/transaction/errors.rb +0 -119
  157. data/lib/recurly/transaction.rb +0 -132
  158. data/lib/recurly/usage.rb +0 -29
  159. data/lib/recurly/verify.rb +0 -12
  160. data/lib/recurly/webhook/account_notification.rb +0 -13
  161. data/lib/recurly/webhook/billing_info_update_failed_notification.rb +0 -6
  162. data/lib/recurly/webhook/billing_info_updated_notification.rb +0 -6
  163. data/lib/recurly/webhook/canceled_account_notification.rb +0 -6
  164. data/lib/recurly/webhook/canceled_gift_card_notification.rb +0 -6
  165. data/lib/recurly/webhook/canceled_subscription_notification.rb +0 -6
  166. data/lib/recurly/webhook/closed_credit_invoice_notification.rb +0 -6
  167. data/lib/recurly/webhook/closed_invoice_notification.rb +0 -6
  168. data/lib/recurly/webhook/credit_payment_notification.rb +0 -12
  169. data/lib/recurly/webhook/deactivated_item_notification.rb +0 -6
  170. data/lib/recurly/webhook/deleted_shipping_address_notification.rb +0 -6
  171. data/lib/recurly/webhook/dunning_notification.rb +0 -14
  172. data/lib/recurly/webhook/expired_subscription_notification.rb +0 -6
  173. data/lib/recurly/webhook/failed_charge_invoice_notification.rb +0 -6
  174. data/lib/recurly/webhook/failed_payment_notification.rb +0 -6
  175. data/lib/recurly/webhook/fraud_info_updated_notification.rb +0 -6
  176. data/lib/recurly/webhook/gift_card_notification.rb +0 -8
  177. data/lib/recurly/webhook/invoice_notification.rb +0 -12
  178. data/lib/recurly/webhook/item_notification.rb +0 -7
  179. data/lib/recurly/webhook/low_balance_gift_card_notification.rb +0 -6
  180. data/lib/recurly/webhook/new_account_notification.rb +0 -6
  181. data/lib/recurly/webhook/new_charge_invoice_notification.rb +0 -6
  182. data/lib/recurly/webhook/new_credit_invoice_notification.rb +0 -6
  183. data/lib/recurly/webhook/new_credit_payment_notification.rb +0 -6
  184. data/lib/recurly/webhook/new_dunning_event_notification.rb +0 -6
  185. data/lib/recurly/webhook/new_invoice_notification.rb +0 -6
  186. data/lib/recurly/webhook/new_item_notification.rb +0 -6
  187. data/lib/recurly/webhook/new_shipping_address_notification.rb +0 -6
  188. data/lib/recurly/webhook/new_subscription_notification.rb +0 -6
  189. data/lib/recurly/webhook/new_usage_notification.rb +0 -8
  190. data/lib/recurly/webhook/notification.rb +0 -18
  191. data/lib/recurly/webhook/paid_charge_invoice_notification.rb +0 -6
  192. data/lib/recurly/webhook/past_due_charge_invoice_notification.rb +0 -6
  193. data/lib/recurly/webhook/past_due_invoice_notification.rb +0 -6
  194. data/lib/recurly/webhook/paused_subscription_renewal_notification.rb +0 -6
  195. data/lib/recurly/webhook/prerenewal_notification.rb +0 -6
  196. data/lib/recurly/webhook/processing_charge_invoice_notification.rb +0 -6
  197. data/lib/recurly/webhook/processing_credit_invoice_notification.rb +0 -6
  198. data/lib/recurly/webhook/processing_invoice_notification.rb +0 -6
  199. data/lib/recurly/webhook/processing_payment_notification.rb +0 -6
  200. data/lib/recurly/webhook/purchased_gift_card_notification.rb +0 -7
  201. data/lib/recurly/webhook/reactivated_account_notification.rb +0 -6
  202. data/lib/recurly/webhook/reactivated_item_notification.rb +0 -6
  203. data/lib/recurly/webhook/redeemed_gift_card_notification.rb +0 -7
  204. data/lib/recurly/webhook/regenerated_gift_card_notification.rb +0 -6
  205. data/lib/recurly/webhook/renewed_subscription_notification.rb +0 -6
  206. data/lib/recurly/webhook/reopened_charge_invoice_notification.rb +0 -6
  207. data/lib/recurly/webhook/reopened_credit_invoice_notification.rb +0 -6
  208. data/lib/recurly/webhook/scheduled_payment_notification.rb +0 -6
  209. data/lib/recurly/webhook/scheduled_subscription_pause_notification.rb +0 -6
  210. data/lib/recurly/webhook/scheduled_subscription_update_notification.rb +0 -6
  211. data/lib/recurly/webhook/subscription_notification.rb +0 -12
  212. data/lib/recurly/webhook/subscription_pause_canceled_notification.rb +0 -6
  213. data/lib/recurly/webhook/subscription_pause_modified_notification.rb +0 -6
  214. data/lib/recurly/webhook/subscription_paused_notification.rb +0 -6
  215. data/lib/recurly/webhook/subscription_resumed_notification.rb +0 -6
  216. data/lib/recurly/webhook/successful_payment_notification.rb +0 -6
  217. data/lib/recurly/webhook/successful_refund_notification.rb +0 -6
  218. data/lib/recurly/webhook/transaction_authorized_notification.rb +0 -6
  219. data/lib/recurly/webhook/transaction_notification.rb +0 -12
  220. data/lib/recurly/webhook/transaction_status_updated_notification.rb +0 -6
  221. data/lib/recurly/webhook/updated_account_notification.rb +0 -6
  222. data/lib/recurly/webhook/updated_balance_gift_card_notification.rb +0 -7
  223. data/lib/recurly/webhook/updated_gift_card_notification.rb +0 -6
  224. data/lib/recurly/webhook/updated_invoice_notification.rb +0 -6
  225. data/lib/recurly/webhook/updated_item_notification.rb +0 -6
  226. data/lib/recurly/webhook/updated_shipping_address_notification.rb +0 -6
  227. data/lib/recurly/webhook/updated_subscription_notification.rb +0 -6
  228. data/lib/recurly/webhook/void_payment_notification.rb +0 -6
  229. data/lib/recurly/webhook/voided_credit_invoice_notification.rb +0 -6
  230. data/lib/recurly/webhook/voided_credit_payment_notification.rb +0 -6
  231. data/lib/recurly/webhook.rb +0 -113
  232. data/lib/recurly/xml/nokogiri.rb +0 -60
  233. data/lib/recurly/xml/rexml.rb +0 -52
  234. data/lib/recurly/xml.rb +0 -122
@@ -1,230 +0,0 @@
1
- module Recurly
2
- # Accounts are core to managing your customers inside of Recurly.
3
- # The account object stores the entire Recurly history of your customer and acts as the entry point
4
- # for working with a customer's billing information, subscription data, transactions, invoices and more.
5
- #
6
- # Recurly Documentation: https://dev.recurly.com/docs/account-object
7
- class Account < Resource
8
- # @macro [attach] scope
9
- # @scope class
10
- # @return [Pager<Account>] A pager that yields +$1+ accounts.
11
- scope :active, state: :active
12
- scope :closed, state: :closed
13
- scope :subscriber, state: :subscriber
14
- scope :non_subscriber, state: :non_subscriber
15
- scope :past_due, state: :past_due
16
-
17
- # @return [Pager<Adjustment>, []] A pager that yields Adjustments for persisted
18
- has_many :adjustments
19
-
20
- # @return [Pager<Invoice>, []] A pager that yields Invoices for persisted
21
- has_many :invoices
22
-
23
- # @return [Pager<Subscription>, []] A pager that yields Subscriptions for persisted
24
- has_many :subscriptions
25
-
26
- # @return [Pager<Transaction>, []] A pager that yields Transaction for persisted
27
- has_many :transactions
28
-
29
- # @return [Pager<ExternalAccount>, []] A pager that yields External Accounts for persisted
30
- has_many :external_accounts
31
-
32
- # @return [Pager<ExternalSubscription>, []] A pager that yields External Subscriptions for persisted
33
- has_many :external_subscriptions
34
-
35
- # @return [Pager<ExternalInvoice>, []] A pager that yields External Subscriptions for persisted
36
- has_many :external_invoices
37
-
38
- # @return [Pager<Entitlement>, []] A pager that yields Entitlement for persisted
39
- has_many :entitlements
40
-
41
- # @return [Pager<Note>, []] A pager that yields Note for persisted
42
- has_many :notes
43
-
44
- # @return [Pager<Redemption>, []] A pager that yields Redemptions for persisted
45
- has_many :redemptions
46
-
47
- # @return [Pager<ShippingAddress>, [ShippingAddress], []] A pager that yields ShippingAddresses;
48
- # or a list of ShippingAddresses if set by the programmer
49
- has_many :shipping_addresses, readonly: false
50
-
51
- # @return [BillingInfo, nil]
52
- has_one :billing_info, readonly: false
53
-
54
- # @return [AccountBalance, nil]
55
- has_one :account_balance, readonly: true
56
-
57
- # @return [Account, nil]
58
- belongs_to :parent_account, class_name: :Account
59
-
60
- # @return [Pager<Account>, []] A pager that yields Account for persisted
61
- has_many :child_accounts, class_name: :Account
62
-
63
- # @return [Pager<CreditPayment>, []]
64
- has_many :credit_payments, class_name: :CreditPayment, readonly: true
65
-
66
- # @return [[CustomField], []]
67
- has_many :custom_fields, class_name: :CustomField, readonly: false
68
-
69
- # @return [AccountAcquisition, nil]
70
- has_one :account_acquisition, class_name: :AccountAcquisition, readonly: false
71
-
72
- # @return [InvoiceTemplate, nil]
73
- belongs_to :invoice_template, class_name: :InvoiceTemplate, readonly: true
74
-
75
- belongs_to :override_business_entity, class_name: 'BusinessEntity'
76
-
77
- # Get's the first redemption given a coupon code
78
- # @deprecated Use #{redemptions} instead
79
- # @param coupon_code [String] The coupon code for the redemption
80
- def redemption(coupon_code)
81
- redemptions.detect { |r| r.coupon_code == coupon_code }
82
- end
83
-
84
- define_attribute_methods %w(
85
- account_code
86
- parent_account_code
87
- state
88
- username
89
- email
90
- cc_emails
91
- first_name
92
- last_name
93
- company_name
94
- company
95
- phone
96
- accept_language
97
- hosted_login_token
98
- vat_number
99
- address
100
- tax_exempt
101
- exemption_certificate
102
- entity_use_code
103
- created_at
104
- updated_at
105
- closed_at
106
- vat_location_valid
107
- has_live_subscription
108
- has_active_subscription
109
- has_future_subscription
110
- has_canceled_subscription
111
- has_past_due_invoice
112
- has_paused_subscription
113
- preferred_locale
114
- preferred_time_zone
115
- transaction_type
116
- dunning_campaign_id
117
- invoice_template_uuid
118
- override_business_entity_id
119
- )
120
- alias to_param account_code
121
-
122
- def company_name
123
- super || company
124
- end
125
-
126
- # Creates an invoice from the pending charges on the account.
127
- # Raises an error if it fails.
128
- #
129
- # @return [InvoiceCollection] A newly-created invoice.
130
- # @raise [Invalid] Raised if the account cannot be invoiced.
131
- def invoice!(attrs={})
132
- InvoiceCollection.from_response API.post(invoices.uri, attrs.empty? ? nil : Invoice.to_xml(attrs))
133
- rescue Recurly::API::UnprocessableEntity => e
134
- raise Invalid, e.message
135
- end
136
-
137
- # Builds an invoice from the pending charges on the account but does not persist the invoice.
138
- # Raises an error if it fails.
139
- #
140
- # @return [InvoiceCollection] The newly-built invoice that has not been persisted.
141
- # @raise [Invalid] Raised if the account cannot be invoiced.
142
- def build_invoice
143
- InvoiceCollection.from_response API.post("#{invoices.uri}/preview")
144
- rescue Recurly::API::UnprocessableEntity => e
145
- raise Invalid, e.message
146
- end
147
-
148
- def create_billing_info(billing_info)
149
- billing_info = billing_info
150
- billing_info.uri = "#{path}/billing_infos"
151
- billing_info.save!
152
- billing_info
153
- end
154
-
155
- def get_billing_infos
156
- Pager.new(Recurly::BillingInfo, uri: "#{path}/billing_infos", parent: self)
157
- rescue Recurly::API::UnprocessableEntity => e
158
- raise Invalid, e.message
159
- end
160
-
161
- def get_billing_info(billing_info_uuid)
162
- BillingInfo.from_response API.get("#{path}/billing_infos/#{billing_info_uuid}")
163
- rescue Recurly::API::UnprocessableEntity => e
164
- raise Invalid, e.message
165
- end
166
-
167
- # Reopen an account.
168
- #
169
- # @return [true, false] +true+ when successful, +false+ when unable to
170
- # (e.g., the account is already open), and may raise an exception if the
171
- # attempt fails.
172
- def reopen
173
- return false unless link? :reopen
174
- reload follow_link :reopen
175
- true
176
- end
177
-
178
- # Verify a cvv code for the account's billing info.
179
- #
180
- # @example
181
- # acct = Recurly::Account.find('benjamin-du-monde')
182
- # begin
183
- # # If successful, returned billing_info will contain
184
- # # updated billing info details.
185
- # billing_info = acct.verify_cvv!("504")
186
- # rescue Recurly::API::BadRequest => e
187
- # e.message # => "This credit card has too many cvv check attempts."
188
- # rescue Recurly::Transaction::Error => e
189
- # # this will be the errors coming back from gateway
190
- # e.transaction_error_code # => "fraud_security_code"
191
- # e.gateway_error_code # => "fraud"
192
- # rescue Recurly::Resource::Invalid => e
193
- # e.message # => "verification_value must be three digits"
194
- # end
195
- #
196
- # @param [String] verification_value The CVV code to check
197
- # @return [BillingInfo] The updated billing info
198
- # @raise [Recurly::Transaction::Error] A Transaction Error will be raised if the gateway declines
199
- # the cvv code.
200
- # @raise [API::BadRequest] A BadRequest error will be raised if you attempt to check too many times
201
- # and are locked out.
202
- # @raise [Resource::Invalid] An Invalid Error will be raised if you send an invalid request (such as
203
- # a value that is not a propert verification number).
204
- def verify_cvv!(verification_value)
205
- bi = BillingInfo.new(verification_value: verification_value)
206
- bi.uri = "#{path}/billing_info/verify_cvv"
207
- bi.save!
208
- bi
209
- end
210
-
211
- def changed_attributes
212
- attrs = super
213
- if address.respond_to?(:changed?) && address.changed?
214
- attrs['address'] = address
215
- end
216
- if custom_fields.any?(&:changed?)
217
- attrs['custom_fields'] = custom_fields.select(&:changed?)
218
- end
219
- attrs
220
- end
221
-
222
- private
223
-
224
- def xml_keys
225
- keys = super
226
- keys << 'account_code' if account_code? && !account_code_changed?
227
- keys.sort
228
- end
229
- end
230
- end
@@ -1,27 +0,0 @@
1
- module Recurly
2
- # Recurly Documentation: https://dev.recurly.com/docs/create-account-acquisition
3
- class AccountAcquisition < Resource
4
- # @return [Account]
5
- belongs_to :account
6
-
7
- define_attribute_methods %w(
8
- cost_in_cents
9
- currency
10
- channel
11
- subchannel
12
- campaign
13
- )
14
-
15
- def self.member_name
16
- "acquisition"
17
- end
18
-
19
- def self.xml_root_key
20
- "account_acquisition"
21
- end
22
-
23
- # Acquisitions are only writeable and readable through {Account} instances.
24
- embedded!
25
- private_class_method :find
26
- end
27
- end
@@ -1,23 +0,0 @@
1
- module Recurly
2
- # The AccountBalance object contains some information about the account's balance.
3
- # It exists to give us parity with the v1 API which used to include this information with
4
- # the {Account}. You can get an account's balance by calling {Account#account_balance} on an account instance.
5
- #
6
- # Recurly Documentation: https://dev.recurly.com/docs/lookup-account-balance
7
- class AccountBalance < Resource
8
- # @return [Account, nil]
9
- has_one :account, readonly: true
10
-
11
- define_attribute_methods %w(
12
- past_due
13
- balance_in_cents
14
- processing_prepayment_balance_in_cents
15
- available_credit_balance_in_cents
16
- )
17
-
18
- # This object does not represent a model on the server side
19
- # so we do not need to expose these methods.
20
- protected(*%w(save save!))
21
- private_class_method(*%w(all find_each first paginate scoped where create! create))
22
- end
23
- end
@@ -1,52 +0,0 @@
1
- module Recurly
2
- class AddOn < Resource
3
- # @return [Plan]
4
- belongs_to :plan
5
- # @return [[Tier], []]
6
- has_many :tiers, class_name: :Tier, readonly: false
7
- # @return [[PercentageTier], []]
8
- has_many :percentage_tiers, class_name: :CurrencyPercentageTier, readonly: false
9
-
10
- define_attribute_methods %w(
11
- add_on_code
12
- item_code
13
- name
14
- item_state
15
- accounting_code
16
- default_quantity
17
- unit_amount_in_cents
18
- display_quantity_on_hosted_page
19
- tax_code
20
- add_on_type
21
- measured_unit_id
22
- optional
23
- usage_type
24
- usage_percentage
25
- revenue_schedule_type
26
- created_at
27
- updated_at
28
- tier_type
29
- usage_timeframe
30
- usage_calculation_type
31
- external_sku
32
- avalara_service_type
33
- avalara_transaction_type
34
- ) + RevRec::PRODUCT_ATTRIBUTES
35
- alias to_param add_on_code
36
- alias quantity default_quantity
37
-
38
- def changed_attributes
39
- attrs = super
40
- if tiers.any?(&:changed?)
41
- attrs['tiers'] = tiers.select(&:changed?)
42
- elsif percentage_tiers.any?(&:changed?)
43
- attrs['percentage_tiers'] = percentage_tiers.select(&:changed?)
44
- end
45
- attrs
46
- end
47
-
48
- # Add-ons are only writeable and readable through {Plan} instances.
49
- embedded!
50
- private_class_method :find
51
- end
52
- end
@@ -1,25 +0,0 @@
1
- module Recurly
2
- class Address < Resource
3
- define_attribute_methods %w(
4
- first_name
5
- last_name
6
- name_on_account
7
- company
8
- address1
9
- address2
10
- city
11
- state
12
- zip
13
- country
14
- phone
15
- geo_code
16
- )
17
-
18
- # This ensures every attribute is rendered
19
- # when updating. The Address object does not
20
- # accept partial updates on the server
21
- def xml_keys
22
- attributes.keys
23
- end
24
- end
25
- end
@@ -1,98 +0,0 @@
1
- module Recurly
2
- # The history of your customer's Recurly account can be tracked through adjustments, made up of credits and charges.
3
- #
4
- # Recurly Documentation: https://dev.recurly.com/docs/adjustment-object
5
- class Adjustment < Resource
6
- # @macro [attach] scope
7
- # @scope class
8
- # @return [Pager<Adjustment>] a pager that yields +$1+.
9
- scope :charges, type: 'charge'
10
- scope :credits, type: 'credit'
11
- scope :pending, state: 'pending'
12
- scope :invoiced, state: 'invoiced'
13
-
14
- # @return [Account, nil]
15
- belongs_to :account
16
- # @return [Account, nil]
17
- belongs_to :bill_for_account, class_name: :Account, readonly: true
18
- # @return [Invoice, nil]
19
- belongs_to :invoice
20
- # @return [Subscription, nil]
21
- belongs_to :subscription
22
-
23
- # @return [Pager<Adjustment>, []]
24
- has_many :credit_adjustments, class_name: :Adjustment, readonly: true
25
-
26
- # @return [ShippingAddress, nil]
27
- has_one :shipping_address, class_name: :ShippingAddress, readonly: false
28
-
29
- # @return [[CustomField], []]
30
- has_many :custom_fields, class_name: :CustomField, readonly: false
31
-
32
- define_attribute_methods %w[
33
- uuid
34
- state
35
- description
36
- accounting_code
37
- origin
38
- unit_amount_in_cents
39
- quantity
40
- quantity_decimal
41
- discount_in_cents
42
- total_in_cents
43
- currency
44
- product_code
45
- item_code
46
- external_sku
47
- start_date
48
- end_date
49
- created_at
50
- updated_at
51
- quantity_remaining
52
- quantity_decimal_remaining
53
- revenue_schedule_type
54
- tax_in_cents
55
- tax_type
56
- tax_region
57
- tax_rate
58
- tax_exempt
59
- tax_inclusive
60
- tax_code
61
- tax_details
62
- tax_types
63
- proration_rate
64
- credit_reason_code
65
- original_adjustment_uuid
66
- shipping_address_id
67
- surcharge_in_cents
68
- avalara_transaction_type
69
- avalara_service_type
70
- refundable_total_in_cents
71
- ] + RevRec::ALL_ATTRIBUTES
72
- alias to_param uuid
73
-
74
- # @return ["charge", "credit", nil] The type of adjustment.
75
- attr_reader :type
76
-
77
- # Adjustments should be built through {Account} instances.
78
- #
79
- # @return [Adjustment] A new adjustment.
80
- # @example
81
- # account.adjustments.new attributes
82
- # @see Resource#initialize
83
- def initialize(attributes = {})
84
- super({ :currency => Recurly.default_currency }.merge attributes)
85
- end
86
-
87
- def changed_attributes
88
- attrs = super
89
- if custom_fields.any?(&:changed?)
90
- attrs['custom_fields'] = custom_fields.select(&:changed?)
91
- end
92
- attrs
93
- end
94
-
95
- # Adjustments are only writeable through an {Account} instance.
96
- embedded! true
97
- end
98
- end
@@ -1,208 +0,0 @@
1
- require 'cgi'
2
-
3
- module Recurly
4
- class API
5
- # The superclass to all errors that occur when making an API request.
6
- class ResponseError < Error
7
- attr_reader :request
8
- attr_reader :response
9
-
10
- def initialize request, response
11
- @request, @response = request, response
12
- end
13
-
14
- def code
15
- response.code.to_i if response
16
- end
17
-
18
- def to_s
19
- if description
20
- return CGI.unescapeHTML [description, details].compact.join(' ')
21
- end
22
-
23
- return super unless code
24
- "%d %s (%s %s)" % [
25
- code, http_error, request.method, API.base_uri + request.path
26
- ]
27
- end
28
-
29
- def symbol
30
- xml and xml.root and xml.text '/error/symbol'
31
- end
32
-
33
- def description
34
- xml and xml.root and xml.text '/error/description'
35
- end
36
-
37
- def details
38
- xml and xml.root and xml.text '/error/details'
39
- end
40
-
41
- private
42
-
43
- def http_error
44
- Helper.demodulize self.class.name.gsub(/([a-z])([A-Z])/, '\1 \2')
45
- end
46
-
47
- def xml
48
- @xml ||= begin
49
- XML.new(response.body) if response and response.body and not response.body.empty?
50
- rescue Recurly::XML::ParseError
51
- nil
52
- end
53
- end
54
- end
55
-
56
- # === 3xx Redirection
57
- #
58
- # Not an error, per se, but should result in one in the normal course of
59
- # API interaction.
60
- class Redirection < ResponseError
61
- end
62
-
63
- # === 304 Not Modified
64
- #
65
- # Catchably raised when a request is made with an ETag.
66
- class NotModified < ResponseError
67
- end
68
-
69
- # === 4xx Client Error
70
- #
71
- # The superclass to all client errors (responses with status code 4xx).
72
- class ClientError < ResponseError
73
- end
74
-
75
- # === 400 Bad Request
76
- #
77
- # The request was invalid or could not be understood by the server.
78
- # Resubmitting the request will likely result in the same error.
79
- class BadRequest < ClientError
80
- end
81
-
82
- # === 401 Unauthorized
83
- #
84
- # The API key is missing or invalid for the given request.
85
- class Unauthorized < ClientError
86
- def description
87
- response.body.strip
88
- end
89
- end
90
-
91
- # === 402 Payment Required
92
- #
93
- # Your Recurly account is in production mode but is not in good standing.
94
- # Please pay any outstanding invoices.
95
- class PaymentRequired < ClientError
96
- end
97
-
98
- # === 403 Forbidden
99
- #
100
- # The login is attempting to perform an action it does not have privileges
101
- # to access. The login credentials are correct.
102
- class Forbidden < ClientError
103
- end
104
-
105
- # === 404 Not Found
106
- #
107
- # The resource was not found. This may be returned if the given account
108
- # code or subscription plan does not exist. The response body will explain
109
- # which resource was not found.
110
- class NotFound < ClientError
111
- end
112
-
113
- # === 405 Method Not Allowed
114
- #
115
- # A method was attempted where it is not allowed.
116
- #
117
- # If this is raised, there may be a bug with the client library or with
118
- # the server. Please contact support@recurly.com or
119
- # {file a bug}[https://github.com/recurly/recurly-client-ruby/issues].
120
- class MethodNotAllowed < ClientError
121
- end
122
-
123
- # === 406 Not Acceptable
124
- #
125
- # The request content type was not acceptable.
126
- #
127
- # If this is raised, there may be a bug with the client library or with
128
- # the server. Please contact support@recurly.com or
129
- # {file a bug}[https://github.com/recurly/recurly-client-ruby/issues].
130
- class NotAcceptable < ClientError
131
- end
132
-
133
- # === 412 Precondition Failed
134
- #
135
- # The request was unsuccessful because a condition was not met. For
136
- # example, this message may be returned if you attempt to cancel a
137
- # subscription for an account that has no subscription.
138
- class PreconditionFailed < ClientError
139
- end
140
-
141
- # === 415 Unsupported Media Type
142
- #
143
- # The request body was not recognized as XML.
144
- #
145
- # If this is raised, there may be a bug with the client library or with
146
- # the server. Please contact support@recurly.com or
147
- # {file a bug}[https://github.com/recurly/recurly-client-ruby/issues].
148
- class UnsupportedMediaType < ClientError
149
- end
150
-
151
- # === 422 Unprocessable Entity
152
- #
153
- # Could not process a POST or PUT request because the request is invalid.
154
- # See the response body for more details.
155
- class UnprocessableEntity < ClientError
156
- end
157
-
158
- # === 5xx Server Error
159
- #
160
- # The superclass to all server errors (responses with status code 5xx).
161
- class ServerError < ResponseError
162
- end
163
-
164
- # === 500 Internal Server Error
165
- #
166
- # The server encountered an error while processing your request and failed.
167
- class InternalServerError < ServerError
168
- end
169
-
170
- # === 502 Gateway Error
171
- #
172
- # The load balancer or web server had trouble connecting to the Recurly.
173
- # Please try the request again.
174
- class GatewayError < ServerError
175
- end
176
-
177
- # === 503 Service Unavailable
178
- #
179
- # The service is temporarily unavailable. Please try the request again.
180
- class ServiceUnavailable < ServerError
181
- end
182
-
183
- # Error mapping by status code.
184
- ERRORS = Hash.new { |hash, code|
185
- unless hash.key? code
186
- case code
187
- when 400...500 then ClientError
188
- when 500...600 then ServerError
189
- else ResponseError
190
- end
191
- end
192
- }.update(
193
- 304 => NotModified,
194
- 400 => BadRequest,
195
- 401 => Unauthorized,
196
- 402 => PaymentRequired,
197
- 403 => Forbidden,
198
- 404 => NotFound,
199
- 406 => NotAcceptable,
200
- 412 => PreconditionFailed,
201
- 415 => UnsupportedMediaType,
202
- 422 => UnprocessableEntity,
203
- 500 => InternalServerError,
204
- 502 => GatewayError,
205
- 503 => ServiceUnavailable
206
- ).freeze
207
- end
208
- end