recurly 2.18.15 → 3.0.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (209) 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.rb +14 -145
  23. data/lib/recurly/client.rb +198 -0
  24. data/lib/recurly/client/operations.rb +935 -0
  25. data/lib/recurly/errors.rb +34 -0
  26. data/lib/recurly/errors/api_errors.rb +35 -0
  27. data/lib/recurly/errors/network_errors.rb +8 -0
  28. data/lib/recurly/pager.rb +119 -0
  29. data/lib/recurly/request.rb +30 -0
  30. data/lib/recurly/requests/account_acquisition_updatable.rb +22 -0
  31. data/lib/recurly/requests/account_create_only.rb +18 -0
  32. data/lib/recurly/requests/account_updatable.rb +50 -0
  33. data/lib/recurly/requests/add_on_create.rb +38 -0
  34. data/lib/recurly/requests/add_on_update.rb +38 -0
  35. data/lib/recurly/requests/address.rb +42 -0
  36. data/lib/recurly/requests/billing_info_create.rb +58 -0
  37. data/lib/recurly/requests/coupon_create_only.rb +66 -0
  38. data/lib/recurly/requests/coupon_updatable.rb +30 -0
  39. data/lib/recurly/requests/create_account.rb +62 -0
  40. data/lib/recurly/requests/create_coupon.rb +90 -0
  41. data/lib/recurly/requests/invoice_create.rb +42 -0
  42. data/lib/recurly/requests/invoice_refund.rb +30 -0
  43. data/lib/recurly/requests/line_item_create.rb +46 -0
  44. data/lib/recurly/requests/plan_create.rb +66 -0
  45. data/lib/recurly/requests/plan_update.rb +70 -0
  46. data/lib/recurly/requests/shipping_address_create.rb +58 -0
  47. data/lib/recurly/requests/shipping_address_update.rb +62 -0
  48. data/lib/recurly/requests/subscription_add_on_create.rb +22 -0
  49. data/lib/recurly/requests/subscription_change_create.rb +42 -0
  50. data/lib/recurly/requests/subscription_create.rb +86 -0
  51. data/lib/recurly/requests/subscription_update.rb +42 -0
  52. data/lib/recurly/requests/update_coupon.rb +30 -0
  53. data/lib/recurly/resource.rb +16 -1103
  54. data/lib/recurly/resources/account.rb +86 -0
  55. data/lib/recurly/resources/account_acquisition.rb +42 -0
  56. data/lib/recurly/resources/account_balance.rb +22 -0
  57. data/lib/recurly/resources/account_note.rb +30 -0
  58. data/lib/recurly/resources/add_on.rb +62 -0
  59. data/lib/recurly/resources/address.rb +42 -0
  60. data/lib/recurly/resources/billing_info.rb +62 -0
  61. data/lib/recurly/resources/coupon.rb +110 -0
  62. data/lib/recurly/resources/coupon_discount.rb +22 -0
  63. data/lib/recurly/resources/coupon_redemption.rb +46 -0
  64. data/lib/recurly/resources/credit_payment.rb +62 -0
  65. data/lib/recurly/resources/error.rb +18 -0
  66. data/lib/recurly/resources/error_may_have_transaction.rb +22 -0
  67. data/lib/recurly/resources/invoice.rb +138 -0
  68. data/lib/recurly/resources/invoice_collection.rb +18 -0
  69. data/lib/recurly/resources/line_item.rb +166 -0
  70. data/lib/recurly/resources/plan.rb +86 -0
  71. data/lib/recurly/resources/settings.rb +18 -0
  72. data/lib/recurly/resources/shipping_address.rb +74 -0
  73. data/lib/recurly/resources/site.rb +46 -0
  74. data/lib/recurly/resources/subscription.rb +134 -0
  75. data/lib/recurly/resources/subscription_add_on.rb +42 -0
  76. data/lib/recurly/resources/subscription_change.rb +54 -0
  77. data/lib/recurly/resources/tax_info.rb +18 -0
  78. data/lib/recurly/resources/transaction.rb +146 -0
  79. data/lib/recurly/resources/unique_coupon_code.rb +38 -0
  80. data/lib/recurly/resources/user.rb +38 -0
  81. data/lib/recurly/schema.rb +114 -0
  82. data/lib/recurly/schema/json_deserializer.rb +53 -0
  83. data/lib/recurly/schema/json_parser.rb +71 -0
  84. data/lib/recurly/schema/request_caster.rb +66 -0
  85. data/lib/recurly/schema/schema_factory.rb +50 -0
  86. data/lib/recurly/schema/schema_validator.rb +125 -0
  87. data/lib/recurly/version.rb +1 -10
  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 +121 -245
  93. data/lib/recurly/account.rb +0 -190
  94. data/lib/recurly/account_acquisition.rb +0 -27
  95. data/lib/recurly/account_balance.rb +0 -21
  96. data/lib/recurly/add_on.rb +0 -44
  97. data/lib/recurly/address.rb +0 -25
  98. data/lib/recurly/adjustment.rb +0 -81
  99. data/lib/recurly/api.rb +0 -110
  100. data/lib/recurly/api/errors.rb +0 -208
  101. data/lib/recurly/api/net_http_adapter.rb +0 -111
  102. data/lib/recurly/billing_info.rb +0 -109
  103. data/lib/recurly/coupon.rb +0 -134
  104. data/lib/recurly/credit_payment.rb +0 -32
  105. data/lib/recurly/custom_field.rb +0 -15
  106. data/lib/recurly/delivery.rb +0 -19
  107. data/lib/recurly/error.rb +0 -13
  108. data/lib/recurly/gift_card.rb +0 -85
  109. data/lib/recurly/helper.rb +0 -51
  110. data/lib/recurly/invoice.rb +0 -297
  111. data/lib/recurly/invoice_collection.rb +0 -14
  112. data/lib/recurly/item.rb +0 -36
  113. data/lib/recurly/js.rb +0 -14
  114. data/lib/recurly/juris_detail.rb +0 -15
  115. data/lib/recurly/measured_unit.rb +0 -16
  116. data/lib/recurly/money.rb +0 -120
  117. data/lib/recurly/note.rb +0 -14
  118. data/lib/recurly/plan.rb +0 -43
  119. data/lib/recurly/purchase.rb +0 -234
  120. data/lib/recurly/redemption.rb +0 -46
  121. data/lib/recurly/resource/association.rb +0 -16
  122. data/lib/recurly/resource/errors.rb +0 -20
  123. data/lib/recurly/resource/pager.rb +0 -313
  124. data/lib/recurly/shipping_address.rb +0 -26
  125. data/lib/recurly/shipping_fee.rb +0 -17
  126. data/lib/recurly/shipping_method.rb +0 -13
  127. data/lib/recurly/subscription.rb +0 -365
  128. data/lib/recurly/subscription/add_ons.rb +0 -82
  129. data/lib/recurly/subscription_add_on.rb +0 -58
  130. data/lib/recurly/tax_detail.rb +0 -16
  131. data/lib/recurly/tax_type.rb +0 -13
  132. data/lib/recurly/tier.rb +0 -18
  133. data/lib/recurly/transaction.rb +0 -131
  134. data/lib/recurly/transaction/errors.rb +0 -115
  135. data/lib/recurly/usage.rb +0 -28
  136. data/lib/recurly/verify.rb +0 -12
  137. data/lib/recurly/webhook.rb +0 -111
  138. data/lib/recurly/webhook/account_notification.rb +0 -13
  139. data/lib/recurly/webhook/billing_info_update_failed_notification.rb +0 -6
  140. data/lib/recurly/webhook/billing_info_updated_notification.rb +0 -6
  141. data/lib/recurly/webhook/canceled_account_notification.rb +0 -6
  142. data/lib/recurly/webhook/canceled_gift_card_notification.rb +0 -6
  143. data/lib/recurly/webhook/canceled_subscription_notification.rb +0 -6
  144. data/lib/recurly/webhook/closed_credit_invoice_notification.rb +0 -6
  145. data/lib/recurly/webhook/closed_invoice_notification.rb +0 -6
  146. data/lib/recurly/webhook/credit_payment_notification.rb +0 -12
  147. data/lib/recurly/webhook/deactivated_item_notification.rb +0 -6
  148. data/lib/recurly/webhook/deleted_shipping_address_notification.rb +0 -6
  149. data/lib/recurly/webhook/dunning_notification.rb +0 -14
  150. data/lib/recurly/webhook/expired_subscription_notification.rb +0 -6
  151. data/lib/recurly/webhook/failed_charge_invoice_notification.rb +0 -6
  152. data/lib/recurly/webhook/failed_payment_notification.rb +0 -6
  153. data/lib/recurly/webhook/fraud_info_updated_notification.rb +0 -6
  154. data/lib/recurly/webhook/gift_card_notification.rb +0 -8
  155. data/lib/recurly/webhook/invoice_notification.rb +0 -12
  156. data/lib/recurly/webhook/item_notification.rb +0 -7
  157. data/lib/recurly/webhook/low_balance_gift_card_notification.rb +0 -6
  158. data/lib/recurly/webhook/new_account_notification.rb +0 -6
  159. data/lib/recurly/webhook/new_charge_invoice_notification.rb +0 -6
  160. data/lib/recurly/webhook/new_credit_invoice_notification.rb +0 -6
  161. data/lib/recurly/webhook/new_credit_payment_notification.rb +0 -6
  162. data/lib/recurly/webhook/new_dunning_event_notification.rb +0 -6
  163. data/lib/recurly/webhook/new_invoice_notification.rb +0 -6
  164. data/lib/recurly/webhook/new_item_notification.rb +0 -6
  165. data/lib/recurly/webhook/new_shipping_address_notification.rb +0 -6
  166. data/lib/recurly/webhook/new_subscription_notification.rb +0 -6
  167. data/lib/recurly/webhook/new_usage_notification.rb +0 -8
  168. data/lib/recurly/webhook/notification.rb +0 -18
  169. data/lib/recurly/webhook/paid_charge_invoice_notification.rb +0 -6
  170. data/lib/recurly/webhook/past_due_charge_invoice_notification.rb +0 -6
  171. data/lib/recurly/webhook/past_due_invoice_notification.rb +0 -6
  172. data/lib/recurly/webhook/paused_subscription_renewal_notification.rb +0 -6
  173. data/lib/recurly/webhook/processing_charge_invoice_notification.rb +0 -6
  174. data/lib/recurly/webhook/processing_credit_invoice_notification.rb +0 -6
  175. data/lib/recurly/webhook/processing_invoice_notification.rb +0 -6
  176. data/lib/recurly/webhook/processing_payment_notification.rb +0 -6
  177. data/lib/recurly/webhook/purchased_gift_card_notification.rb +0 -7
  178. data/lib/recurly/webhook/reactivated_account_notification.rb +0 -6
  179. data/lib/recurly/webhook/reactivated_item_notification.rb +0 -6
  180. data/lib/recurly/webhook/redeemed_gift_card_notification.rb +0 -7
  181. data/lib/recurly/webhook/regenerated_gift_card_notification.rb +0 -6
  182. data/lib/recurly/webhook/renewed_subscription_notification.rb +0 -6
  183. data/lib/recurly/webhook/reopened_charge_invoice_notification.rb +0 -6
  184. data/lib/recurly/webhook/reopened_credit_invoice_notification.rb +0 -6
  185. data/lib/recurly/webhook/scheduled_payment_notification.rb +0 -6
  186. data/lib/recurly/webhook/scheduled_subscription_pause_notification.rb +0 -6
  187. data/lib/recurly/webhook/subscription_notification.rb +0 -12
  188. data/lib/recurly/webhook/subscription_pause_canceled_notification.rb +0 -6
  189. data/lib/recurly/webhook/subscription_pause_modified_notification.rb +0 -6
  190. data/lib/recurly/webhook/subscription_paused_notification.rb +0 -6
  191. data/lib/recurly/webhook/subscription_resumed_notification.rb +0 -6
  192. data/lib/recurly/webhook/successful_payment_notification.rb +0 -6
  193. data/lib/recurly/webhook/successful_refund_notification.rb +0 -6
  194. data/lib/recurly/webhook/transaction_authorized_notification.rb +0 -6
  195. data/lib/recurly/webhook/transaction_notification.rb +0 -12
  196. data/lib/recurly/webhook/transaction_status_updated_notification.rb +0 -6
  197. data/lib/recurly/webhook/updated_account_notification.rb +0 -6
  198. data/lib/recurly/webhook/updated_balance_gift_card_notification.rb +0 -7
  199. data/lib/recurly/webhook/updated_gift_card_notification.rb +0 -6
  200. data/lib/recurly/webhook/updated_invoice_notification.rb +0 -6
  201. data/lib/recurly/webhook/updated_item_notification.rb +0 -6
  202. data/lib/recurly/webhook/updated_shipping_address_notification.rb +0 -6
  203. data/lib/recurly/webhook/updated_subscription_notification.rb +0 -6
  204. data/lib/recurly/webhook/void_payment_notification.rb +0 -6
  205. data/lib/recurly/webhook/voided_credit_invoice_notification.rb +0 -6
  206. data/lib/recurly/webhook/voided_credit_payment_notification.rb +0 -6
  207. data/lib/recurly/xml.rb +0 -122
  208. data/lib/recurly/xml/nokogiri.rb +0 -60
  209. data/lib/recurly/xml/rexml.rb +0 -52
@@ -1,32 +0,0 @@
1
- module Recurly
2
- class CreditPayment < Resource
3
- # @return [Account, nil]
4
- belongs_to :account, class_name: :Account, readonly: true
5
-
6
- # @return [Invoice, nil]
7
- has_one :original_invoice, class_name: :Invoice, readonly: true
8
-
9
- # @return [Invoice, nil]
10
- has_one :applied_to_invoice, class_name: :Invoice, readonly: true
11
-
12
- define_attribute_methods %w(
13
- action
14
- amount_in_cents
15
- applied_to_invoice_number
16
- currency
17
- created_at
18
- original_credit_payment
19
- original_credit_payment_uuid
20
- original_invoice_number
21
- refund_transaction
22
- refund_transaction_uuid
23
- updated_at
24
- uuid
25
- voided_at
26
- )
27
- alias to_param uuid
28
-
29
- # @return ["charge", "credit", nil] The type of credit payment.
30
- attr_reader :type
31
- end
32
- end
@@ -1,15 +0,0 @@
1
- module Recurly
2
- # Recurly Documentation: https://dev.recurly.com/docs/custom-fields
3
- class CustomField < Resource
4
-
5
- define_attribute_methods %w(
6
- name
7
- value
8
- )
9
-
10
- # include the name with the serialized field, even though it can't change
11
- def xml_keys
12
- attributes.keys
13
- end
14
- end
15
- end
@@ -1,19 +0,0 @@
1
- module Recurly
2
- # Delivery objects are only used with GiftCards.
3
- #
4
- # Recurly Documentation: https://dev.recurly.com/docs/gift-card-object
5
- class Delivery < Resource
6
- # @return [Address, nil]
7
- has_one :address
8
-
9
- define_attribute_methods %w(
10
- deliver_at
11
- email_address
12
- first_name
13
- gifter_name
14
- last_name
15
- method
16
- personal_message
17
- )
18
- end
19
- end
@@ -1,13 +0,0 @@
1
- module Recurly
2
- # The exception class from which all Recurly exceptions inherit.
3
- class Error < StandardError
4
- def set_message message
5
- @message = message
6
- end
7
-
8
- # @return [String]
9
- def to_s
10
- defined? @message and @message or super
11
- end
12
- end
13
- end
@@ -1,85 +0,0 @@
1
- module Recurly
2
- class GiftCard < Resource
3
- # @return [Invoice, nil]
4
- belongs_to :invoice
5
-
6
- # @return [Account, nil] The Account belonging to the gifter
7
- belongs_to :gifter_account, class_name: :Account, readonly: false
8
-
9
- # @return [Account, nil] The Account belonging to the recipient of the gift
10
- belongs_to :recipient_account, class_name: :Account, readonly: false
11
-
12
- # @return [Delivery, nil] Delivery information of the recipient.
13
- has_one :delivery, class_name: :Delivery, readonly: false
14
-
15
- # @return [Invoice, nil] The credit invoice for the gift card redemption.
16
- has_one :redemption_invoice, class_name: :Invoice, readonly: true
17
-
18
- # @return [Invoice, nil] The charge invoice for the gift card redemption.
19
- has_one :purchase_invoice, class_name: :Invoice, readonly: true
20
-
21
- # @return [BillingInfo, nil]
22
- has_one :billing_info, class_name: :BillingInfo, readonly: false
23
-
24
- define_attribute_methods %w(
25
- balance_in_cents
26
- currency
27
- created_at
28
- delivered_at
29
- id
30
- product_code
31
- redeemed_at
32
- redemption_code
33
- unit_amount_in_cents
34
- updated_at
35
- canceled_at
36
- gifter_account_code
37
- recipient_account_code
38
- invoice_number
39
- )
40
- alias to_param id
41
-
42
- # Preview a GiftCard given some attributes
43
- #
44
- # @param [Hash] attributes for the gift card
45
- # @return [GiftCard] The resulting preview GiftCard
46
- def self.preview(attributes = {})
47
- new(attributes) { |record| record.preview }
48
- end
49
-
50
- # Preview the GiftCard. Runs and validates the GiftCard but
51
- # does not persist it. Errors are applied to the GiftCard if there
52
- # are any errors.
53
- def preview
54
- clear_errors
55
- @response = API.send(:post, "#{path}/preview", to_xml)
56
- reload response
57
- rescue API::UnprocessableEntity => e
58
- apply_errors e
59
- end
60
-
61
- # Redeem this GiftCard on the given account.
62
- #
63
- # @param [String] Recipient's account code
64
- def redeem(recipient_account_code)
65
- clear_errors
66
- xml = <<-XML
67
- <recipient_account>
68
- <account_code>#{recipient_account_code}</account_code>
69
- </recipient_account>
70
- XML
71
- @response = API.send(:post, "#{self.class.collection_path}/#{redemption_code}/redeem", xml)
72
- reload response
73
- rescue API::UnprocessableEntity => e
74
- apply_errors e
75
- end
76
-
77
- private
78
-
79
- def xml_keys
80
- keys = super
81
- keys << 'redemption_code' if redemption_code? && !redemption_code_changed?
82
- keys.sort
83
- end
84
- end
85
- end
@@ -1,51 +0,0 @@
1
- module Recurly
2
- module Helper
3
- def camelize underscored_word
4
- underscored_word.to_s.gsub(/(?:^|_)(.)/) { $1.upcase }
5
- end
6
-
7
- def classify table_name
8
- camelize singularize(table_name.to_s.sub(/.*\./, ''))
9
- end
10
-
11
- def demodulize class_name_in_module
12
- class_name_in_module.to_s.sub(/^.*::/, '')
13
- end
14
-
15
- def pluralize word
16
- word.to_s.sub(/([^s])$/, '\1s')
17
- end
18
-
19
- def singularize word
20
- word = word.to_s
21
- return word if word.end_with?('address')
22
- return "shipping_address" if word == "shipping_addresses"
23
- word.sub(/s$/, '').sub(/ie$/, 'y')
24
- end
25
-
26
- def underscore camel_cased_word
27
- word = camel_cased_word.to_s.dup
28
- word.gsub!(/::/, '/')
29
- word.gsub!(/([A-Z]+)([A-Z][a-z])/, '\1_\2')
30
- word.gsub!(/([a-z\d])([A-Z])/, '\1_\2')
31
- word.tr! "-", "_"
32
- word.downcase!
33
- word
34
- end
35
-
36
- def hash_with_indifferent_read_access base = {}
37
- indifferent = Hash.new { |hash, key| hash[key.to_s] if key.is_a? Symbol }
38
- base.each_pair { |key, value| indifferent[key.to_s] = value }
39
- indifferent
40
- end
41
-
42
- def stringify_keys! hash
43
- hash.keys.each do |key|
44
- stringify_keys! hash[key] if hash[key].is_a? Hash
45
- hash[key.to_s] = hash.delete key if key.is_a? Symbol
46
- end
47
- end
48
-
49
- extend self
50
- end
51
- end
@@ -1,297 +0,0 @@
1
- module Recurly
2
- # Invoices are created through account objects.
3
- #
4
- # Recurly Documentation: https://dev.recurly.com/docs/list-invoices
5
- #
6
- # @example
7
- # account = Account.find(account_code)
8
- # account.invoice!
9
- class Invoice < Resource
10
- # @macro [attach] scope
11
- # @scope class
12
- # @return [Pager<Invoice>] A pager that yields +$1+ invoices.
13
- scope :pending, :state => :pending
14
- scope :paid, :state => :paid
15
- scope :failed, :state => :failed
16
- scope :past_due, :state => :past_due
17
-
18
- # These are deprecated as the states were renamed
19
- scope :open, :state => :pending
20
- scope :collected, :state => :paid
21
-
22
- # @return [Account]
23
- belongs_to :account
24
-
25
- # @return [Pager<Subscription>, []]
26
- has_many :subscriptions
27
-
28
- # This will only be present if the invoice has > 500 line items
29
- # @return [Pager<Adjustment>, []]
30
- has_many :all_line_items, class_name: :Adjustment
31
-
32
- # This will only be present if the invoice has > 500 transactions
33
- # @return [Pager<Transaction>, []]
34
- has_many :all_transactions, class_name: :Transaction
35
-
36
- # @return [Pager<Redemption>, []]
37
- has_many :redemptions
38
-
39
- # @return [ShippingAddress, nil]
40
- has_one :shipping_address, class_name: :ShippingAddress, readonly: true
41
-
42
- # @return [Pager<Invoice>, []]
43
- has_many :credit_invoices, class_name: :Invoice
44
-
45
- # @return [[CreditPayment]]
46
- has_many :credit_payments, class_name: :CreditPayment, readonly: true
47
-
48
- # @return [Pager<Invoice>, []]
49
- has_many :original_invoices, class_name: :Invoice, readonly: true
50
-
51
- # @return [Invoice, nil]
52
- has_one :original_invoice, class_name: :Invoice, readonly: true
53
-
54
- # Returns the first redemption in the Invoice's redemptions.
55
- # This was placed here for backwards compatibility when we went from
56
- # having a single redemption per invoice to multiple redemptions per invoice.
57
- #
58
- # @deprecated Use {#redemptions} and find the redemption you want.
59
- def redemption
60
- redemptions.first
61
- end
62
-
63
- # @return [String] The invoice number with the prefix (if there is one)
64
- def invoice_number_with_prefix
65
- "#{invoice_number_prefix}#{invoice_number}"
66
- end
67
-
68
- define_attribute_methods %w(
69
- uuid
70
- state
71
- invoice_number
72
- invoice_number_prefix
73
- po_number
74
- vat_number
75
- subtotal_in_cents
76
- tax_in_cents
77
- tax_type
78
- tax_region
79
- tax_rate
80
- total_in_cents
81
- currency
82
- created_at
83
- updated_at
84
- closed_at
85
- amount_remaining_in_cents
86
- line_items
87
- transactions
88
- terms_and_conditions
89
- vat_reverse_charge_notes
90
- customer_notes
91
- address
92
- net_terms
93
- collection_method
94
- tax_types
95
- refund_tax_date
96
- refund_geo_code
97
- subtotal_before_discount_in_cents
98
- attempt_next_collection_at
99
- recovery_reason
100
- discount_in_cents
101
- balance_in_cents
102
- due_on
103
- type
104
- origin
105
- credit_customer_notes
106
- refund_method
107
- subscription_id
108
- subscription_ids
109
- dunning_events_count
110
- final_dunning_event
111
- gateway_code
112
- surcharge_in_cents
113
- tax_details
114
- )
115
- alias to_param invoice_number_with_prefix
116
-
117
- def self.to_xml(attrs)
118
- invoice = new attrs
119
- invoice.to_xml
120
- end
121
-
122
- # Marks an invoice as paid successfully.
123
- #
124
- # @return [true, false] +true+ when successful, +false+ when unable to
125
- # (e.g., the invoice is no longer open).
126
- def mark_successful
127
- return false unless link? :mark_successful
128
- reload follow_link :mark_successful
129
- true
130
- end
131
-
132
- # Marks an invoice as failing collection.
133
- # Returns a new {InvoiceCollection} and does not
134
- # reload this invoice.
135
- #
136
- # @return [InvoiceCollection, false] InvoiceCollection when successful, +false+ when unable to
137
- # (e.g., the invoice is no longer open).
138
- def mark_failed
139
- return false unless link? :mark_failed
140
- InvoiceCollection.from_response follow_link(:mark_failed)
141
- rescue Recurly::API::UnprocessableEntity => e
142
- raise Invalid, e.message
143
- end
144
-
145
- # Initiate a collection attempt on an invoice.
146
- #
147
- # @example
148
- # # Optionally set transaction type
149
- # invoice.force_collect(transaction_type: 'moto')
150
- #
151
- # @param options [Hash] Optional set of details to send to collect endpoint.
152
- # @return [true, false] +true+ when successful, +false+ when unable to
153
- # (e.g., the invoice is no longer open).
154
- def force_collect(options = {})
155
- return false unless link? :force_collect
156
- http_opts = {}
157
- if body = force_collect_xml(options)
158
- http_opts[:body] = body
159
- end
160
- reload follow_link(:force_collect, http_opts)
161
- true
162
- end
163
-
164
- # Voids the invoice.
165
- #
166
- # @return [true, false] +true+ when successful, +false+ when unable to
167
- # (e.g., the invoice is no longer open).
168
- def void
169
- return false unless link? :void
170
- reload follow_link :void
171
- true
172
- end
173
-
174
- # Posts an offline payment on this invoice
175
- #
176
- # @return [Transaction]
177
- # @raise [Error] If the transaction fails.
178
- def enter_offline_payment(attrs={})
179
- Transaction.from_response API.post("#{uri}/transactions", attrs.empty? ? nil : Transaction.to_xml(attrs))
180
- rescue Recurly::API::UnprocessableEntity => e
181
- raise Invalid, e.message
182
- end
183
-
184
- # Fetches the pdf for this invoice
185
- def pdf
186
- self.class.find(to_param, format: 'pdf')
187
- end
188
-
189
- # Refunds specific line items on the invoice.
190
- #
191
- # @return [Invoice, false] Invoice if successful, false if the invoice isn't
192
- # refundable.
193
- # @raise [Error] If the refund fails.
194
- # @param line_items [Array, nil] An array of line items to refund.
195
- # @param refund_method ["credit_first", "transaction_first", "all_transaction", "all_credit"] The method used to refund.
196
- # @param external_refund [true, false] Designates that the refund transactions created are manual.
197
- # @param credit_customer_notes [String] Adds notes to refund credit invoice.
198
- # @param payment_method [String] Creates the manual transactions with this payment method. Allowed if *external_refund* is true.
199
- # @param description [String] Sets this value as the *transaction_note* on the manual transactions created. Allowed if *external_refund* is true.
200
- # @param refunded_at [DateTime] Sets this value as the *collected_at* on the manual transactions created. Allowed if *external_refund* is true.
201
- def refund(line_items = nil, refund_method = 'credit_first', options = {})
202
- return false unless link? :refund
203
- self.class.from_response(
204
- follow_link :refund, :body => refund_line_items_to_xml(line_items, refund_method, options)
205
- )
206
- end
207
-
208
- # Refunds the invoice for a specific amount.
209
- #
210
- # @return [Invoice, false] Invoice if successful, false if the invoice isn't
211
- # refundable.
212
- # @raise [Error] If the refund fails.
213
- # @param amount_in_cents [Integer, nil] The amount (in cents) to refund.
214
- # @param refund_method ["credit_first", "transaction_first", "all_transaction", "all_credit"] The method used to refund.
215
- # @param external_refund [true, false] Designates that the refund transactions created are manual.
216
- # @param credit_customer_notes [String] Adds notes to refund credit invoice.
217
- # @param payment_method [String] Creates the manual transactions with this payment method. Allowed if *external_refund* is true.
218
- # @param description [String] Sets this value as the *transaction_note* on the manual transactions created. Allowed if *external_refund* is true.
219
- # @param refunded_at [DateTime] Sets this value as the *collected_at* on the manual transactions created. Allowed if *external_refund* is true.
220
- def refund_amount(amount_in_cents = nil, refund_method = 'credit_first', options = {})
221
- return false unless link? :refund
222
- self.class.from_response(
223
- follow_link :refund, :body => refund_amount_to_xml(amount_in_cents, refund_method, options)
224
- )
225
- end
226
-
227
- def xml_keys
228
- super - ['currency']
229
- end
230
-
231
- # Attempts to update the invoice, returning the success of the request.
232
- # Raises an error if attempting to create an invoice using this method.
233
- #
234
- # @return [true, false]
235
- # @raise [RuntimeError] Raises error if you attempt to create an invoice.
236
- # @example
237
- # invoice = Recurly::Invoice.find('1000')
238
- # invoice.po_number = '1234'
239
- # invoice.save # => true
240
- def save
241
- unless persisted?
242
- raise "Invoices can only be updated with Invoice#save. New invoices cannot be created using this method."
243
- end
244
- super
245
- end
246
-
247
- private
248
-
249
- def initialize(attributes = {})
250
- super({ :currency => Recurly.default_currency }.merge attributes)
251
- end
252
-
253
- def refund_amount_to_xml(amount_in_cents = nil, refund_method = nil, options = {})
254
- builder = XML.new("<invoice/>")
255
- builder.add_element 'refund_method', refund_method
256
- builder.add_element 'amount_in_cents', amount_in_cents
257
- options.each do |k, v|
258
- builder.add_element k.to_s, v
259
- end
260
- builder.to_s
261
- end
262
-
263
- def refund_line_items_to_xml(line_items = nil, refund_method = nil, options = {})
264
- builder = XML.new("<invoice/>")
265
- builder.add_element 'refund_method', refund_method
266
- options.each do |k, v|
267
- builder.add_element k.to_s, v
268
- end
269
- line_items ||= []
270
- node = builder.add_element 'line_items'
271
- line_items.each do |line_item|
272
- adj_node = node.add_element 'adjustment'
273
- adj_node.add_element 'uuid', line_item[:adjustment].uuid
274
- adj_node.add_element 'quantity', line_item[:quantity]
275
- adj_node.add_element 'prorate', line_item[:prorate]
276
- end
277
- builder.to_s
278
- end
279
-
280
- # Returns an xml body or nil given some options
281
- def force_collect_xml(options = {})
282
- if options[:transaction_type] || options[:billing_info]
283
- ForceCollect.new(options).to_xml
284
- end
285
- end
286
-
287
- # Invoices are only writeable through {Account} instances.
288
- embedded! true
289
- undef destroy
290
-
291
- # Represents a body for the force collect endpoint
292
- class ForceCollect < Resource
293
- has_one :billing_info, class_name: :BillingInfo, readonly: false
294
- define_attribute_methods %w[transaction_type]
295
- end
296
- end
297
- end