pagseguro-sdk 2.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.github/.gitignore +204 -0
- data/.github/ISSUE_TEMPLATE/relatorio-de-bug.md +29 -0
- data/.github/workflows/codacy-analysis.yml +46 -0
- data/.gitignore +28 -0
- data/.rspec +1 -0
- data/.travis.yml +13 -0
- data/CHANGELOG.md +95 -0
- data/CONTRIBUTING.md +39 -0
- data/Dockerfile +20 -0
- data/Gemfile +2 -0
- data/LICENSE-2.0.txt +177 -0
- data/README.md +436 -0
- data/Rakefile +5 -0
- data/docker-compose.yml +5 -0
- data/docs/transparent_checkout.md +201 -0
- data/examples/authorization/create_authorization.rb +32 -0
- data/examples/authorization/create_authorization_with_account.rb +56 -0
- data/examples/authorization/search/search_authorization_by_code.rb +29 -0
- data/examples/authorization/search/search_authorization_by_date.rb +35 -0
- data/examples/authorization/search/search_authorization_by_notification_code.rb +29 -0
- data/examples/authorization/search/search_authorization_by_reference.rb +31 -0
- data/examples/boot.rb +26 -0
- data/examples/checkout/create_payment_request.rb +63 -0
- data/examples/checkout/search/search_abandoned_transactions.rb +41 -0
- data/examples/checkout/search/search_transaction_by_code.rb +76 -0
- data/examples/checkout/search/search_transaction_by_notification_code.rb +76 -0
- data/examples/checkout/search/search_transaction_by_reference.rb +36 -0
- data/examples/checkout/search/search_transactions_by_date.rb +45 -0
- data/examples/create_session.rb +19 -0
- data/examples/direct/create_transaction_using_boleto.rb +100 -0
- data/examples/direct/create_transaction_using_credit_card.rb +128 -0
- data/examples/direct/create_transaction_using_online_debit.rb +104 -0
- data/examples/get_installments.rb +40 -0
- data/examples/preapproval/cancel_preapproval.rb +26 -0
- data/examples/preapproval/change_preapproval_payment.rb +50 -0
- data/examples/preapproval/change_preapproval_status.rb +29 -0
- data/examples/preapproval/charge_preapproval.rb +36 -0
- data/examples/preapproval/create_preapproval.rb +68 -0
- data/examples/preapproval/create_preapproval_auto.rb +53 -0
- data/examples/preapproval/create_preapproval_discount.rb +30 -0
- data/examples/preapproval/create_preapproval_manual.rb +58 -0
- data/examples/preapproval/create_preapproval_transparent.rb +41 -0
- data/examples/preapproval/preapproval_retry.rb +29 -0
- data/examples/preapproval/search/search_by_date_interval.rb +45 -0
- data/examples/preapproval/search/search_by_days_interval.rb +46 -0
- data/examples/preapproval/search/search_by_notification_code.rb +50 -0
- data/examples/preapproval/search/search_by_subscription_code.rb +50 -0
- data/examples/preapproval/search/search_subscription_payment_orders.rb +53 -0
- data/examples/request_transaction_cancellation.rb +19 -0
- data/examples/split_payment/create_authorization.rb +32 -0
- data/examples/split_payment/create_payment_request.rb +71 -0
- data/examples/split_payment/create_transaction_using_boleto.rb +118 -0
- data/examples/split_payment/create_transaction_using_credit_card.rb +152 -0
- data/lib/pagseguro-oficial.rb +1 -0
- data/lib/pagseguro.rb +221 -0
- data/lib/pagseguro/account.rb +29 -0
- data/lib/pagseguro/account_credentials.rb +14 -0
- data/lib/pagseguro/address.rb +40 -0
- data/lib/pagseguro/application_credentials.rb +18 -0
- data/lib/pagseguro/authorization.rb +61 -0
- data/lib/pagseguro/authorization/collection.rb +28 -0
- data/lib/pagseguro/authorization/request_serializer.rb +24 -0
- data/lib/pagseguro/authorization/response.rb +49 -0
- data/lib/pagseguro/authorization/response_serializer.rb +40 -0
- data/lib/pagseguro/authorization_request.rb +84 -0
- data/lib/pagseguro/authorization_request/request_serializer.rb +142 -0
- data/lib/pagseguro/authorization_request/response.rb +26 -0
- data/lib/pagseguro/authorization_request/response_serializer.rb +18 -0
- data/lib/pagseguro/bank.rb +8 -0
- data/lib/pagseguro/boleto_transaction_request.rb +8 -0
- data/lib/pagseguro/company.rb +41 -0
- data/lib/pagseguro/config.rb +34 -0
- data/lib/pagseguro/credit_card_transaction_request.rb +39 -0
- data/lib/pagseguro/creditor_fee.rb +23 -0
- data/lib/pagseguro/document.rb +23 -0
- data/lib/pagseguro/documents.rb +5 -0
- data/lib/pagseguro/errors.rb +57 -0
- data/lib/pagseguro/exceptions.rb +3 -0
- data/lib/pagseguro/extensions/collection_object.rb +34 -0
- data/lib/pagseguro/extensions/credentiable.rb +17 -0
- data/lib/pagseguro/extensions/ensure_type.rb +9 -0
- data/lib/pagseguro/extensions/mass_assignment.rb +11 -0
- data/lib/pagseguro/holder.rb +36 -0
- data/lib/pagseguro/installment.rb +57 -0
- data/lib/pagseguro/installment/collection.rb +25 -0
- data/lib/pagseguro/installment/request_serializer.rb +24 -0
- data/lib/pagseguro/installment/response.rb +37 -0
- data/lib/pagseguro/installment/response_serializer.rb +22 -0
- data/lib/pagseguro/item.rb +34 -0
- data/lib/pagseguro/items.rb +23 -0
- data/lib/pagseguro/manual_subscription_charger.rb +59 -0
- data/lib/pagseguro/manual_subscription_charger/request_serializer.rb +50 -0
- data/lib/pagseguro/manual_subscription_charger/response.rb +36 -0
- data/lib/pagseguro/manual_subscription_charger/response_serializer.rb +17 -0
- data/lib/pagseguro/notification.rb +11 -0
- data/lib/pagseguro/notification/authorization.rb +15 -0
- data/lib/pagseguro/notification/transaction.rb +15 -0
- data/lib/pagseguro/online_debit_transaction_request.rb +17 -0
- data/lib/pagseguro/partner.rb +20 -0
- data/lib/pagseguro/payment_method.rb +39 -0
- data/lib/pagseguro/payment_release.rb +21 -0
- data/lib/pagseguro/payment_releases.rb +28 -0
- data/lib/pagseguro/payment_request.rb +117 -0
- data/lib/pagseguro/payment_request/request_serializer.rb +203 -0
- data/lib/pagseguro/payment_request/response.rb +35 -0
- data/lib/pagseguro/payment_status.rb +39 -0
- data/lib/pagseguro/permission.rb +13 -0
- data/lib/pagseguro/person.rb +40 -0
- data/lib/pagseguro/phone.rb +20 -0
- data/lib/pagseguro/phones.rb +5 -0
- data/lib/pagseguro/receiver.rb +20 -0
- data/lib/pagseguro/receiver_split.rb +15 -0
- data/lib/pagseguro/request.rb +170 -0
- data/lib/pagseguro/sender.rb +53 -0
- data/lib/pagseguro/session.rb +34 -0
- data/lib/pagseguro/session/response.rb +32 -0
- data/lib/pagseguro/session/response_serializer.rb +18 -0
- data/lib/pagseguro/shipping.rb +57 -0
- data/lib/pagseguro/subscription.rb +132 -0
- data/lib/pagseguro/subscription/request_serializer.rb +129 -0
- data/lib/pagseguro/subscription/response.rb +49 -0
- data/lib/pagseguro/subscription/response_serializer.rb +62 -0
- data/lib/pagseguro/subscription/subscription_search.rb +135 -0
- data/lib/pagseguro/subscription_canceller.rb +30 -0
- data/lib/pagseguro/subscription_canceller/response.rb +34 -0
- data/lib/pagseguro/subscription_change_payment.rb +46 -0
- data/lib/pagseguro/subscription_change_payment/request_serializer.rb +80 -0
- data/lib/pagseguro/subscription_change_payment/response.rb +26 -0
- data/lib/pagseguro/subscription_change_status.rb +50 -0
- data/lib/pagseguro/subscription_change_status/request_serializer.rb +28 -0
- data/lib/pagseguro/subscription_change_status/response.rb +26 -0
- data/lib/pagseguro/subscription_discount.rb +41 -0
- data/lib/pagseguro/subscription_discount/request_serializer.rb +34 -0
- data/lib/pagseguro/subscription_discount/response.rb +34 -0
- data/lib/pagseguro/subscription_payment_method.rb +21 -0
- data/lib/pagseguro/subscription_payment_order.rb +57 -0
- data/lib/pagseguro/subscription_payment_order/response.rb +37 -0
- data/lib/pagseguro/subscription_payment_order/response_serializer.rb +51 -0
- data/lib/pagseguro/subscription_plan.rb +69 -0
- data/lib/pagseguro/subscription_plan/request_serializer.rb +81 -0
- data/lib/pagseguro/subscription_plan/response.rb +36 -0
- data/lib/pagseguro/subscription_plan/response_serializer.rb +17 -0
- data/lib/pagseguro/subscription_retry.rb +35 -0
- data/lib/pagseguro/subscription_retry/response.rb +34 -0
- data/lib/pagseguro/subscription_search_payment_orders.rb +131 -0
- data/lib/pagseguro/subscription_transaction.rb +29 -0
- data/lib/pagseguro/subscription_transactions.rb +5 -0
- data/lib/pagseguro/transaction.rb +215 -0
- data/lib/pagseguro/transaction/collection.rb +20 -0
- data/lib/pagseguro/transaction/response.rb +45 -0
- data/lib/pagseguro/transaction/search.rb +121 -0
- data/lib/pagseguro/transaction/search/search_abandoned.rb +20 -0
- data/lib/pagseguro/transaction/search/search_by_date.rb +16 -0
- data/lib/pagseguro/transaction/search/search_by_reference.rb +13 -0
- data/lib/pagseguro/transaction/serializer.rb +181 -0
- data/lib/pagseguro/transaction_cancellation.rb +37 -0
- data/lib/pagseguro/transaction_cancellation/request_serializer.rb +18 -0
- data/lib/pagseguro/transaction_cancellation/response.rb +33 -0
- data/lib/pagseguro/transaction_cancellation/response_serializer.rb +17 -0
- data/lib/pagseguro/transaction_installment.rb +11 -0
- data/lib/pagseguro/transaction_refund.rb +44 -0
- data/lib/pagseguro/transaction_refund/request_serializer.rb +24 -0
- data/lib/pagseguro/transaction_refund/response.rb +33 -0
- data/lib/pagseguro/transaction_refund/response_serializer.rb +17 -0
- data/lib/pagseguro/transaction_request.rb +165 -0
- data/lib/pagseguro/transaction_request/request_serializer.rb +311 -0
- data/lib/pagseguro/transaction_request/response.rb +33 -0
- data/lib/pagseguro/transaction_request/response_serializer.rb +117 -0
- data/lib/pagseguro/transaction_status.rb +14 -0
- data/lib/pagseguro/version.rb +3 -0
- data/locales/pt-BR.yml +130 -0
- data/pagseguro-oficial.gemspec +31 -0
- data/spec/fixtures/authorization/find_authorization.xml +17 -0
- data/spec/fixtures/authorization/search_authorization.xml +47 -0
- data/spec/fixtures/authorization_request/authorization_request.xml +11 -0
- data/spec/fixtures/authorization_request/authorization_request_with_account.xml +47 -0
- data/spec/fixtures/authorization_request/success.xml +4 -0
- data/spec/fixtures/by_date/success.xml +85 -0
- data/spec/fixtures/installment/success.xml +24 -0
- data/spec/fixtures/invalid_code.xml +7 -0
- data/spec/fixtures/manual_subscription_charger/fail.xml +6 -0
- data/spec/fixtures/manual_subscription_charger/success.xml +4 -0
- data/spec/fixtures/payment_request/failure.xml +7 -0
- data/spec/fixtures/payment_request/success.xml +5 -0
- data/spec/fixtures/refund/success.xml +2 -0
- data/spec/fixtures/session/success.xml +4 -0
- data/spec/fixtures/subscription/fail.xml +6 -0
- data/spec/fixtures/subscription/find_success.xml +28 -0
- data/spec/fixtures/subscription/search_success.xml +18 -0
- data/spec/fixtures/subscription/success.xml +4 -0
- data/spec/fixtures/subscription_canceller/fail.xml +6 -0
- data/spec/fixtures/subscription_change_payment/fail.xml +7 -0
- data/spec/fixtures/subscription_change_status/fail.xml +7 -0
- data/spec/fixtures/subscription_discount/fail.xml +6 -0
- data/spec/fixtures/subscription_payment_order/success.xml +18 -0
- data/spec/fixtures/subscription_plan/fail.xml +6 -0
- data/spec/fixtures/subscription_plan/success.xml +4 -0
- data/spec/fixtures/subscription_retry/fail.xml +7 -0
- data/spec/fixtures/subscription_search_payment_orders/success.xml +43 -0
- data/spec/fixtures/transaction_cancellation/success.xml +2 -0
- data/spec/fixtures/transaction_request/success.xml +58 -0
- data/spec/fixtures/transactions/additional.xml +53 -0
- data/spec/fixtures/transactions/search.xml +40 -0
- data/spec/fixtures/transactions/success.xml +75 -0
- data/spec/fixtures/transactions/without_status_and_type.xml +71 -0
- data/spec/pagseguro/account_credentials_spec.rb +10 -0
- data/spec/pagseguro/account_spec.rb +27 -0
- data/spec/pagseguro/address_spec.rb +17 -0
- data/spec/pagseguro/application_credentials_spec.rb +11 -0
- data/spec/pagseguro/authorization/collection_spec.rb +49 -0
- data/spec/pagseguro/authorization/request_serializer_spec.rb +10 -0
- data/spec/pagseguro/authorization/response_serializer_spec.rb +19 -0
- data/spec/pagseguro/authorization/response_spec.rb +90 -0
- data/spec/pagseguro/authorization_request/request_serializer_spec.rb +323 -0
- data/spec/pagseguro/authorization_request/response_serializer_spec.rb +15 -0
- data/spec/pagseguro/authorization_request/response_spec.rb +36 -0
- data/spec/pagseguro/authorization_request_spec.rb +127 -0
- data/spec/pagseguro/authorization_spec.rb +111 -0
- data/spec/pagseguro/bank_spec.rb +5 -0
- data/spec/pagseguro/boleto_transaction_request_spec.rb +9 -0
- data/spec/pagseguro/company_spec.rb +12 -0
- data/spec/pagseguro/config_spec.rb +5 -0
- data/spec/pagseguro/credit_card_transaction_request_spec.rb +36 -0
- data/spec/pagseguro/creditor_fee_spec.rb +10 -0
- data/spec/pagseguro/document_spec.rb +21 -0
- data/spec/pagseguro/documents_spec.rb +37 -0
- data/spec/pagseguro/errors_spec.rb +145 -0
- data/spec/pagseguro/extensions/collection_object_spec.rb +77 -0
- data/spec/pagseguro/features/create_session_spec.rb +52 -0
- data/spec/pagseguro/features/create_transaction_request_spec.rb +58 -0
- data/spec/pagseguro/holder_spec.rb +10 -0
- data/spec/pagseguro/installment/collection_spec.rb +43 -0
- data/spec/pagseguro/installment/request_serializer_spec.rb +16 -0
- data/spec/pagseguro/installment/response_serializer_spec.rb +33 -0
- data/spec/pagseguro/installment/response_spec.rb +56 -0
- data/spec/pagseguro/installment_spec.rb +50 -0
- data/spec/pagseguro/item_spec.rb +20 -0
- data/spec/pagseguro/items_spec.rb +148 -0
- data/spec/pagseguro/manual_subscription_charger/request_serializer_spec.rb +79 -0
- data/spec/pagseguro/manual_subscription_charger/response_serializer_spec.rb +10 -0
- data/spec/pagseguro/manual_subscription_charger/response_spec.rb +65 -0
- data/spec/pagseguro/manual_subscription_charger_spec.rb +68 -0
- data/spec/pagseguro/notification_spec.rb +6 -0
- data/spec/pagseguro/online_debit_transaction_request_spec.rb +18 -0
- data/spec/pagseguro/pagseguro_spec.rb +82 -0
- data/spec/pagseguro/partner_spec.rb +8 -0
- data/spec/pagseguro/payment_method_spec.rb +42 -0
- data/spec/pagseguro/payment_release_spec.rb +9 -0
- data/spec/pagseguro/payment_releases_spec.rb +34 -0
- data/spec/pagseguro/payment_request/request_serializer_spec.rb +283 -0
- data/spec/pagseguro/payment_request/response_spec.rb +13 -0
- data/spec/pagseguro/payment_request_spec.rb +148 -0
- data/spec/pagseguro/payment_status_spec.rb +33 -0
- data/spec/pagseguro/permission_spec.rb +7 -0
- data/spec/pagseguro/person_spec.rb +10 -0
- data/spec/pagseguro/phone_spec.rb +6 -0
- data/spec/pagseguro/phones_spec.rb +38 -0
- data/spec/pagseguro/receiver_spec.rb +7 -0
- data/spec/pagseguro/receiver_split_spec.rb +7 -0
- data/spec/pagseguro/request_spec.rb +114 -0
- data/spec/pagseguro/sender_spec.rb +25 -0
- data/spec/pagseguro/session/response_serializer_spec.rb +12 -0
- data/spec/pagseguro/session/response_spec.rb +57 -0
- data/spec/pagseguro/session_spec.rb +45 -0
- data/spec/pagseguro/shipping_spec.rb +40 -0
- data/spec/pagseguro/subscription/request_serializer_spec.rb +233 -0
- data/spec/pagseguro/subscription/response_serializer_spec.rb +46 -0
- data/spec/pagseguro/subscription/response_spec.rb +79 -0
- data/spec/pagseguro/subscription/subscription_search_spec.rb +154 -0
- data/spec/pagseguro/subscription_canceller/response_spec.rb +58 -0
- data/spec/pagseguro/subscription_canceller_spec.rb +57 -0
- data/spec/pagseguro/subscription_change_payment/request_serializer_spec.rb +150 -0
- data/spec/pagseguro/subscription_change_payment/response_spec.rb +41 -0
- data/spec/pagseguro/subscription_change_payment_spec.rb +60 -0
- data/spec/pagseguro/subscription_change_status/request_serializer_spec.rb +19 -0
- data/spec/pagseguro/subscription_change_status/response_spec.rb +41 -0
- data/spec/pagseguro/subscription_change_status_spec.rb +53 -0
- data/spec/pagseguro/subscription_discount/request_serializer_spec.rb +27 -0
- data/spec/pagseguro/subscription_discount/response_spec.rb +58 -0
- data/spec/pagseguro/subscription_discount_spec.rb +60 -0
- data/spec/pagseguro/subscription_payment_method_spec.rb +10 -0
- data/spec/pagseguro/subscription_payment_order/response_serializer_spec.rb +24 -0
- data/spec/pagseguro/subscription_payment_order/response_spec.rb +55 -0
- data/spec/pagseguro/subscription_payment_order_spec.rb +27 -0
- data/spec/pagseguro/subscription_plan/request_serializer_spec.rb +253 -0
- data/spec/pagseguro/subscription_plan/response_serializer_spec.rb +10 -0
- data/spec/pagseguro/subscription_plan/response_spec.rb +65 -0
- data/spec/pagseguro/subscription_plan_spec.rb +118 -0
- data/spec/pagseguro/subscription_retry/response_spec.rb +58 -0
- data/spec/pagseguro/subscription_retry_spec.rb +62 -0
- data/spec/pagseguro/subscription_search_payment_order_spec.rb +129 -0
- data/spec/pagseguro/subscription_spec.rb +137 -0
- data/spec/pagseguro/subscription_transaction_spec.rb +24 -0
- data/spec/pagseguro/subscription_transactions_spec.rb +37 -0
- data/spec/pagseguro/transaction/collection_spec.rb +43 -0
- data/spec/pagseguro/transaction/response_spec.rb +60 -0
- data/spec/pagseguro/transaction/search/search_abandoned_spec.rb +55 -0
- data/spec/pagseguro/transaction/search/search_by_date_spec.rb +28 -0
- data/spec/pagseguro/transaction/search/search_by_reference_spec.rb +21 -0
- data/spec/pagseguro/transaction/search_spec.rb +133 -0
- data/spec/pagseguro/transaction/serializer_spec.rb +86 -0
- data/spec/pagseguro/transaction_cancellation/request_serializer_spec.rb +13 -0
- data/spec/pagseguro/transaction_cancellation/response_serializer_spec.rb +9 -0
- data/spec/pagseguro/transaction_cancellation/response_spec.rb +45 -0
- data/spec/pagseguro/transaction_cancellation_spec.rb +60 -0
- data/spec/pagseguro/transaction_installment_spec.rb +6 -0
- data/spec/pagseguro/transaction_refund/request_serializer_spec.rb +15 -0
- data/spec/pagseguro/transaction_refund/response_serializer_spec.rb +12 -0
- data/spec/pagseguro/transaction_refund/response_spec.rb +39 -0
- data/spec/pagseguro/transaction_refund_spec.rb +71 -0
- data/spec/pagseguro/transaction_request/request_serializer_spec.rb +677 -0
- data/spec/pagseguro/transaction_request/response_serializer_spec.rb +52 -0
- data/spec/pagseguro/transaction_request/response_spec.rb +63 -0
- data/spec/pagseguro/transaction_request_spec.rb +156 -0
- data/spec/pagseguro/transaction_spec.rb +265 -0
- data/spec/pagseguro/transaction_status_spec.rb +7 -0
- data/spec/spec_helper.rb +35 -0
- data/spec/support/ensure_type_macro.rb +35 -0
- data/spec/support/helpers.rb +14 -0
- data/spec/support/mass_assignment_macro.rb +11 -0
- data/spec/support/shared_examples_for_configuration.rb +10 -0
- data/transaction/transaction_refund.rb +25 -0
- metadata +641 -0
@@ -0,0 +1,53 @@
|
|
1
|
+
require_relative '../boot'
|
2
|
+
|
3
|
+
# Create a Subscription Plan (Auto charge)
|
4
|
+
#
|
5
|
+
# You need to set your AccountCredentials (EMAIL, TOKEN) in the application config
|
6
|
+
#
|
7
|
+
# P.S: See the boot file example for more details.
|
8
|
+
|
9
|
+
email = 'EMAIL'
|
10
|
+
token = 'TOKEN'
|
11
|
+
|
12
|
+
plan = PagSeguro::SubscriptionPlan.new(
|
13
|
+
charge: 'auto', # Automatic Subscription Plan must always use auto charge type.
|
14
|
+
|
15
|
+
redirect_url: 'http://www.lojateste.com.br/redirect',
|
16
|
+
review_url: 'http://www.lojateste.com.br/review',
|
17
|
+
reference: 'AUTOPLAN123',
|
18
|
+
name: 'Seguro contra roubo do Notebook',
|
19
|
+
details: 'Taxa referente ao seguro contra roubo de Notebook',
|
20
|
+
period: 'Monthly',
|
21
|
+
final_date: Time.new(2017, 2, 28, 20, 20),
|
22
|
+
amount: 100.0,
|
23
|
+
max_total_amount: 2400.0,
|
24
|
+
|
25
|
+
sender: {
|
26
|
+
name: 'Nome do Cliente',
|
27
|
+
email: 'client@example.com',
|
28
|
+
phone: { area_code: 11, number: 123456 },
|
29
|
+
address: {
|
30
|
+
street: 'Avenida Brigadeiro Faria Lima',
|
31
|
+
number: 1384,
|
32
|
+
complement: '1 Andar',
|
33
|
+
district: 'Jardim Paulistano',
|
34
|
+
postal_code: '01452002',
|
35
|
+
city: 'São Paulo',
|
36
|
+
state: 'SP',
|
37
|
+
country: 'BRA',
|
38
|
+
}
|
39
|
+
}
|
40
|
+
)
|
41
|
+
|
42
|
+
# Edit the lines above.
|
43
|
+
|
44
|
+
plan.credentials = PagSeguro::AccountCredentials.new(email, token)
|
45
|
+
plan.create
|
46
|
+
|
47
|
+
if plan.errors.any?
|
48
|
+
puts '=> ERRORS'
|
49
|
+
puts plan.errors.join("\n")
|
50
|
+
else
|
51
|
+
print '=> Subscription Plan correct created, its code is '
|
52
|
+
puts plan.code
|
53
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
require_relative '../boot'
|
2
|
+
|
3
|
+
# Create a Subscription Discount.
|
4
|
+
#
|
5
|
+
# You need to set your AccountCredentials (EMAIL, TOKEN) in the application
|
6
|
+
# config.
|
7
|
+
#
|
8
|
+
# P.S: See the boot file example for more details.
|
9
|
+
|
10
|
+
email = 'EMAIL'
|
11
|
+
token = 'TOKEN'
|
12
|
+
|
13
|
+
discount = PagSeguro::SubscriptionDiscount.new(
|
14
|
+
# The types of discount are DISCOUNT_PERCENT and DISCOUNT_AMOUNT.
|
15
|
+
type: 'DISCOUNT_AMOUNT',
|
16
|
+
value: 5.0,
|
17
|
+
code: 'PREAPPROVAL_CODE'
|
18
|
+
)
|
19
|
+
|
20
|
+
# Edit the lines above.
|
21
|
+
|
22
|
+
discount.credentials = PagSeguro::AccountCredentials.new(email, token)
|
23
|
+
discount.create
|
24
|
+
|
25
|
+
if discount.errors.any?
|
26
|
+
puts '=> ERRORS'
|
27
|
+
puts discount.errors.join("\n")
|
28
|
+
else
|
29
|
+
puts '=> Subscription Discount correct added.'
|
30
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
require_relative '../boot'
|
2
|
+
|
3
|
+
# Create a Subscription Plan (Manual charge)
|
4
|
+
#
|
5
|
+
# You need to set your AccountCredentials (EMAIL, TOKEN) in the application config
|
6
|
+
#
|
7
|
+
# P.S: See the boot file example for more details.
|
8
|
+
|
9
|
+
email = 'EMAIL'
|
10
|
+
token = 'TOKEN'
|
11
|
+
|
12
|
+
plan = PagSeguro::SubscriptionPlan.new(
|
13
|
+
charge: 'manual', # Manual Subscription Plan must always use manual charge type.
|
14
|
+
redirect_url: 'http://www.lojateste.com.br/redirect',
|
15
|
+
review_url: 'http://www.lojateste.com.br/review',
|
16
|
+
reference: 'REFERENCE',
|
17
|
+
|
18
|
+
sender: {
|
19
|
+
name: 'Nome do Cliente',
|
20
|
+
email: 'client@example.com',
|
21
|
+
phone: { area_code: 11, number: 123456 },
|
22
|
+
address: {
|
23
|
+
street: 'Av Brigadeira Faria Lima',
|
24
|
+
number: '1384',
|
25
|
+
complement: '3 andar',
|
26
|
+
district: 'Jd Paulistano',
|
27
|
+
city: 'Sao Paulo',
|
28
|
+
state: 'SP',
|
29
|
+
country: 'BRA',
|
30
|
+
postal_code: '01452002'
|
31
|
+
}
|
32
|
+
},
|
33
|
+
|
34
|
+
name: 'Insurance',
|
35
|
+
details: 'Payment of 100.',
|
36
|
+
amount: 100.0,
|
37
|
+
period: 'Monthly',
|
38
|
+
max_payments_per_period: 2,
|
39
|
+
max_amount_per_period: 200.0,
|
40
|
+
initial_date: Time.new(2016, 4, 19, 0, 0),
|
41
|
+
final_date: Time.new(2017, 1, 1, 0, 0),
|
42
|
+
max_total_amount: 2_400.0
|
43
|
+
)
|
44
|
+
|
45
|
+
# Edit the lines above.
|
46
|
+
|
47
|
+
plan.credentials = PagSeguro::AccountCredentials.new(email, token)
|
48
|
+
plan.create
|
49
|
+
|
50
|
+
if plan.errors.any?
|
51
|
+
puts '=> ERRORS'
|
52
|
+
puts plan.errors.join('\n')
|
53
|
+
else
|
54
|
+
print '=> Subscription Plan correct created, its code is '
|
55
|
+
puts plan.code
|
56
|
+
puts '=> And your client can finish the subscription using this url:'
|
57
|
+
puts plan.url
|
58
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
require_relative '../boot'
|
2
|
+
|
3
|
+
# Create a Subscription Plan (Transparent Checkout).
|
4
|
+
#
|
5
|
+
# You need to set your AccountCredentials (EMAIL, TOKEN) in the application config
|
6
|
+
#
|
7
|
+
# P.S: See the boot file example for more details.
|
8
|
+
|
9
|
+
email = 'EMAIL'
|
10
|
+
token = 'TOKEN'
|
11
|
+
|
12
|
+
plan = PagSeguro::SubscriptionPlan.new(
|
13
|
+
charge: 'auto',
|
14
|
+
|
15
|
+
redirect_url: 'http://www.lojateste.com.br/redirect',
|
16
|
+
review_url: 'http://www.lojateste.com.br/review',
|
17
|
+
|
18
|
+
name: 'Test',
|
19
|
+
period: 'Monthly',
|
20
|
+
amount: 100.0,
|
21
|
+
max_total_amount: 2400.0,
|
22
|
+
final_date: Time.new(2017, 2, 28, 20, 20),
|
23
|
+
membership_fee: 150.0,
|
24
|
+
trial_duration: 28,
|
25
|
+
)
|
26
|
+
|
27
|
+
# Edit the lines above.
|
28
|
+
|
29
|
+
plan.credentials = PagSeguro::AccountCredentials.new(email, token)
|
30
|
+
plan.create
|
31
|
+
|
32
|
+
if plan.errors.any?
|
33
|
+
puts '=> ERRORS'
|
34
|
+
puts plan.errors.join('\n')
|
35
|
+
else
|
36
|
+
print '=> Subscription Plan correct created, its code is '
|
37
|
+
puts plan.code
|
38
|
+
|
39
|
+
puts %[=> Now you need to subscribe your client to this plan (see
|
40
|
+
examples/preapproval/create_preapproval.rb).]
|
41
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require_relative "../boot"
|
2
|
+
|
3
|
+
# Retry a subscription payment.
|
4
|
+
#
|
5
|
+
# P.S: Take a look at the boot file example for more details
|
6
|
+
|
7
|
+
email = 'EMAIL'
|
8
|
+
token = 'TOKEN'
|
9
|
+
subscription_code = 'CODE'
|
10
|
+
payment_order_code = 'PAYMENT'
|
11
|
+
|
12
|
+
# Edit the lines above
|
13
|
+
|
14
|
+
credentials = PagSeguro::AccountCredentials.new(email, token)
|
15
|
+
|
16
|
+
subscription_retry = PagSeguro::SubscriptionRetry.new(
|
17
|
+
subscription_code: subscription_code,
|
18
|
+
payment_order_code: payment_order_code
|
19
|
+
)
|
20
|
+
subscription_retry.credentials = credentials
|
21
|
+
subscription_retry.save
|
22
|
+
|
23
|
+
if subscription_retry.errors.any?
|
24
|
+
puts "ERRORS: "
|
25
|
+
puts subscription_retry.errors.inspect
|
26
|
+
else
|
27
|
+
puts "SUCCESS"
|
28
|
+
puts subscription_retry.inspect
|
29
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
require_relative '../../boot'
|
2
|
+
|
3
|
+
# Search Subscriptions by date interval
|
4
|
+
#
|
5
|
+
# You need to give AccountCredentials (EMAIL, TOKEN) and some date interval
|
6
|
+
#
|
7
|
+
# P.S: See the boot file example for more details.
|
8
|
+
|
9
|
+
email = 'user@example.com'
|
10
|
+
token = 'TOKEN'
|
11
|
+
|
12
|
+
credentials = PagSeguro::AccountCredentials.new(email, token)
|
13
|
+
options = {
|
14
|
+
credentials: credentials,
|
15
|
+
starts_at: Time.new(2016,3,15),
|
16
|
+
ends_at: Time.new(2016,3,24),
|
17
|
+
per_page: 10
|
18
|
+
}
|
19
|
+
report = PagSeguro::Subscription.search_by_date_interval(options)
|
20
|
+
|
21
|
+
if report.valid?
|
22
|
+
puts "====== Report ======"
|
23
|
+
|
24
|
+
while report.next_page?
|
25
|
+
report.next_page!
|
26
|
+
|
27
|
+
puts "=> Page #{report.page}/#{report.total_pages}"
|
28
|
+
report.subscriptions.each_with_index do |subscription, index|
|
29
|
+
puts "Subscription #{index+1}/#{report.results}:"
|
30
|
+
puts " code: #{subscription.code}"
|
31
|
+
puts " name: #{subscription.name}"
|
32
|
+
puts " date: #{subscription.date}"
|
33
|
+
puts " tracker: #{subscription.tracker}"
|
34
|
+
puts " status: #{subscription.status}"
|
35
|
+
puts " last event date: #{subscription.last_event_date}"
|
36
|
+
puts " charge: #{subscription.charge}"
|
37
|
+
puts " reference: #{subscription.reference}"
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
puts "- End page"
|
42
|
+
else
|
43
|
+
puts "Errors:"
|
44
|
+
puts report.errors.join("\n")
|
45
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
require_relative '../../boot'
|
2
|
+
|
3
|
+
# Search Subscriptions by days interval
|
4
|
+
# PS: Since it has receipt some notification in the interval
|
5
|
+
#
|
6
|
+
# You need to give AccountCredentials (EMAIL, TOKEN) and some days interval
|
7
|
+
#
|
8
|
+
# P.S: See the boot file example for more details.
|
9
|
+
|
10
|
+
email = 'user@example.com'
|
11
|
+
token = 'TOKEN'
|
12
|
+
interval = 30
|
13
|
+
|
14
|
+
credentials = PagSeguro::AccountCredentials.new('user@example.com', 'TOKEN')
|
15
|
+
options = {
|
16
|
+
credentials: credentials,
|
17
|
+
interval: interval
|
18
|
+
}
|
19
|
+
report = PagSeguro::Subscription.search_by_days_interval(options)
|
20
|
+
|
21
|
+
if report.valid?
|
22
|
+
puts "====== Report ======"
|
23
|
+
|
24
|
+
while report.next_page?
|
25
|
+
report.next_page!
|
26
|
+
|
27
|
+
puts "=> Page #{report.page}/#{report.total_pages}"
|
28
|
+
report.subscriptions.each_with_index do |subscription, index|
|
29
|
+
puts "Subscription #{index+1}/#{report.results}:"
|
30
|
+
puts " code: #{subscription.code}"
|
31
|
+
puts " name: #{subscription.name}"
|
32
|
+
puts " date: #{subscription.date}"
|
33
|
+
puts " tracker: #{subscription.tracker}"
|
34
|
+
puts " status: #{subscription.status}"
|
35
|
+
puts " last event date: #{subscription.last_event_date}"
|
36
|
+
puts " charge: #{subscription.charge}"
|
37
|
+
puts " reference: #{subscription.reference}"
|
38
|
+
end
|
39
|
+
|
40
|
+
puts "- End page "
|
41
|
+
end
|
42
|
+
puts " - End report"
|
43
|
+
else
|
44
|
+
puts "Errors:"
|
45
|
+
puts report.errors.join("\n")
|
46
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
require_relative '../../boot'
|
2
|
+
|
3
|
+
# Find a Subscription by notification code
|
4
|
+
#
|
5
|
+
# You need to give AccountCredentials (EMAIL, TOKEN) and the notification code
|
6
|
+
#
|
7
|
+
# P.S: See the boot file example for more details.
|
8
|
+
|
9
|
+
email = 'user@example.com'
|
10
|
+
token = 'TOKEN'
|
11
|
+
code = 'NOTIFICATION_CODE'
|
12
|
+
|
13
|
+
credentials = PagSeguro::AccountCredentials.new(email, token)
|
14
|
+
subscription = PagSeguro::Subscription.find_by_notification_code(code, credentials: credentials)
|
15
|
+
|
16
|
+
if subscription.errors.empty?
|
17
|
+
puts "Subscription:"
|
18
|
+
puts " code: #{subscription.code}"
|
19
|
+
puts " name: #{subscription.name}"
|
20
|
+
puts " date: #{subscription.date}"
|
21
|
+
puts " tracker: #{subscription.tracker}"
|
22
|
+
puts " status: #{subscription.status}"
|
23
|
+
puts " reference: #{subscription.reference}"
|
24
|
+
puts " last event date: #{subscription.last_event_date}"
|
25
|
+
puts " charge: #{subscription.charge}"
|
26
|
+
|
27
|
+
if subscription.sender
|
28
|
+
puts " sender.name: #{subscription.sender.name}"
|
29
|
+
puts " sender.email: #{subscription.sender.email}"
|
30
|
+
|
31
|
+
if subscription.sender.phone
|
32
|
+
puts " sender.phone.area_code: #{subscription.sender.phone.area_code}"
|
33
|
+
puts " sender.phone.number: #{subscription.sender.phone.number}"
|
34
|
+
end
|
35
|
+
|
36
|
+
if subscription.sender.address
|
37
|
+
puts " sender.address.street: #{subscription.sender.address.street}"
|
38
|
+
puts " sender.address.number: #{subscription.sender.address.number}"
|
39
|
+
puts " sender.address.complement: #{subscription.sender.address.complement}"
|
40
|
+
puts " sender.address.district: #{subscription.sender.address.district}"
|
41
|
+
puts " sender.address.city: #{subscription.sender.address.city}"
|
42
|
+
puts " sender.address.state: #{subscription.sender.address.state}"
|
43
|
+
puts " sender.address.postal_code: #{subscription.sender.address.postal_code}"
|
44
|
+
puts " sender.address.country: #{subscription.sender.address.country}"
|
45
|
+
end
|
46
|
+
end
|
47
|
+
else
|
48
|
+
puts "Errors:"
|
49
|
+
puts subscription.errors.join("\n")
|
50
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
require_relative '../../boot'
|
2
|
+
|
3
|
+
# Find a Subscription by code
|
4
|
+
#
|
5
|
+
# You need to give AccountCredentials (EMAIL, TOKEN) and the subscription code
|
6
|
+
#
|
7
|
+
# P.S: See the boot file example for more details.
|
8
|
+
|
9
|
+
email = 'user@example.com'
|
10
|
+
token = 'TOKEN'
|
11
|
+
code = 'CODE'
|
12
|
+
|
13
|
+
credentials = PagSeguro::AccountCredentials.new(email, token)
|
14
|
+
subscription = PagSeguro::Subscription.find_by_code(code, credentials: credentials)
|
15
|
+
|
16
|
+
if subscription.errors.empty?
|
17
|
+
puts "Subscription:"
|
18
|
+
puts " code: #{subscription.code}"
|
19
|
+
puts " name: #{subscription.name}"
|
20
|
+
puts " date: #{subscription.date}"
|
21
|
+
puts " tracker: #{subscription.tracker}"
|
22
|
+
puts " status: #{subscription.status}"
|
23
|
+
puts " reference: #{subscription.reference}"
|
24
|
+
puts " last event date: #{subscription.last_event_date}"
|
25
|
+
puts " charge: #{subscription.charge}"
|
26
|
+
|
27
|
+
if subscription.sender
|
28
|
+
puts " sender.name: #{subscription.sender.name}"
|
29
|
+
puts " sender.email: #{subscription.sender.email}"
|
30
|
+
|
31
|
+
if subscription.sender.phone
|
32
|
+
puts " sender.phone.area_code: #{subscription.sender.phone.area_code}"
|
33
|
+
puts " sender.phone.number: #{subscription.sender.phone.number}"
|
34
|
+
end
|
35
|
+
|
36
|
+
if subscription.sender.address
|
37
|
+
puts " sender.address.street: #{subscription.sender.address.street}"
|
38
|
+
puts " sender.address.number: #{subscription.sender.address.number}"
|
39
|
+
puts " sender.address.complement: #{subscription.sender.address.complement}"
|
40
|
+
puts " sender.address.district: #{subscription.sender.address.district}"
|
41
|
+
puts " sender.address.city: #{subscription.sender.address.city}"
|
42
|
+
puts " sender.address.state: #{subscription.sender.address.state}"
|
43
|
+
puts " sender.address.postal_code: #{subscription.sender.address.postal_code}"
|
44
|
+
puts " sender.address.country: #{subscription.sender.address.country}"
|
45
|
+
end
|
46
|
+
end
|
47
|
+
else
|
48
|
+
puts "Errors:"
|
49
|
+
puts subscription.errors.join("\n")
|
50
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
require_relative '../../boot'
|
2
|
+
|
3
|
+
code = 'CODE'
|
4
|
+
status = :processing # Availables: [ :scheduled, :processing, :not_processed, :suspended, :paid, :not_paid ]
|
5
|
+
email = 'EMAIL'
|
6
|
+
token = 'TOKEN'
|
7
|
+
|
8
|
+
credentials = PagSeguro::AccountCredentials.new(email, token)
|
9
|
+
|
10
|
+
options = { credentials: credentials }
|
11
|
+
|
12
|
+
report = PagSeguro::SubscriptionSearchPaymentOrders.new(code, status, options)
|
13
|
+
|
14
|
+
if report.valid?
|
15
|
+
puts "====== Report ======"
|
16
|
+
|
17
|
+
while report.next_page?
|
18
|
+
report.next_page!
|
19
|
+
|
20
|
+
puts "=> Page #{report.page}/#{report.total_pages}"
|
21
|
+
report.payment_orders.each_with_index do |order, index|
|
22
|
+
puts "Payment Order #{index}:"
|
23
|
+
puts " Code: #{order.code}"
|
24
|
+
puts " Status: #{order.status}"
|
25
|
+
puts " Amount: #{order.amount}"
|
26
|
+
puts " Gross amount: #{order.gross_amount}"
|
27
|
+
puts " Last event date: #{order.last_event_date}"
|
28
|
+
puts " Scheduling date: #{order.scheduling_date}"
|
29
|
+
|
30
|
+
if order.discount
|
31
|
+
puts "Discount:"
|
32
|
+
puts " Discount: #{order.discount.type}"
|
33
|
+
puts " Discount: #{order.discount.value}"
|
34
|
+
puts " Discount: #{order.discount.code}"
|
35
|
+
end
|
36
|
+
|
37
|
+
if order.transactions.any?
|
38
|
+
order.transactions.each_with_index do |transaction, index|
|
39
|
+
puts "Transaction #{index+1}/#{order.transactions.size}"
|
40
|
+
puts " Transaction code: #{transaction.code}"
|
41
|
+
puts " Transaction status: #{transaction.status}"
|
42
|
+
puts " Transaction date: #{transaction.date}"
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
puts "- End page"
|
47
|
+
puts
|
48
|
+
end
|
49
|
+
|
50
|
+
else
|
51
|
+
puts "Errors:"
|
52
|
+
puts report.errors.join("\n")
|
53
|
+
end
|