Class: Braintree::WebhookTestingGateway
- Inherits:
-
Object
- Object
- Braintree::WebhookTestingGateway
- Defined in:
- lib/braintree/webhook_testing_gateway.rb
Instance Method Summary collapse
- #_account_updater_daily_report_sample_xml(id) ⇒ Object
- #_auth_paypal_status_changed_sample_xml(id) ⇒ Object
- #_auth_status_transitioned_sample_xml(id) ⇒ Object
- #_check ⇒ Object
- #_disbursement_exception_sample_xml(id) ⇒ Object
- #_disbursement_sample_xml(id) ⇒ Object
- #_dispute_accepted_sample_xml(id) ⇒ Object
- #_dispute_auto_accepted_sample_xml(id) ⇒ Object
- #_dispute_disputed_sample_xml(id) ⇒ Object
- #_dispute_expired_sample_xml(id) ⇒ Object
- #_dispute_lost_sample_xml(id) ⇒ Object
- #_dispute_opened_sample_xml(id) ⇒ Object
- #_dispute_under_review_sample_xml(id) ⇒ Object
- #_dispute_won_sample_xml(id) ⇒ Object
- #_granted_payment_instrument_update_sample_xml(id) ⇒ Object
- #_granted_payment_method_revoked_xml(id) ⇒ Object
- #_local_payment_completed_sample_xml(id) ⇒ Object
- #_local_payment_expired_sample_xml ⇒ Object
- #_local_payment_funded_sample_xml(id) ⇒ Object
- #_local_payment_reversed_sample_xml ⇒ Object
- #_merchant_account_approved_sample_xml(id) ⇒ Object
- #_merchant_account_declined_sample_xml(id) ⇒ Object
- #_new_dispute_accepted_sample_xml(id) ⇒ Object
- #_new_dispute_auto_accepted_sample_xml(id) ⇒ Object
- #_new_dispute_disputed_sample_xml(id) ⇒ Object
- #_new_dispute_expired_sample_xml(id) ⇒ Object
- #_new_dispute_lost_sample_xml(id) ⇒ Object
- #_new_dispute_opened_sample_xml(id) ⇒ Object
- #_new_dispute_under_review_sample_xml(id) ⇒ Object
- #_new_dispute_won_sample_xml(id) ⇒ Object
- #_oauth_access_revoked_sample_xml(id) ⇒ Object
- #_old_dispute_accepted_sample_xml(id) ⇒ Object
- #_old_dispute_auto_accepted_sample_xml(id) ⇒ Object
- #_old_dispute_disputed_sample_xml(id) ⇒ Object
- #_old_dispute_expired_sample_xml(id) ⇒ Object
- #_old_dispute_lost_sample_xml(id) ⇒ Object
- #_old_dispute_opened_sample_xml(id) ⇒ Object
- #_old_dispute_under_review_sample_xml(id) ⇒ Object
- #_old_dispute_won_sample_xml(id) ⇒ Object
- #_partner_merchant_connected_sample_xml(data) ⇒ Object
- #_partner_merchant_declined_sample_xml(data) ⇒ Object
- #_partner_merchant_disconnected_sample_xml(data) ⇒ Object
- #_payment_method_customer_data_updated_sample_xml(id) ⇒ Object
- #_payment_method_revoked_by_customer_sample_xml(id) ⇒ Object
- #_refund_failed_sample_xml(id) ⇒ Object
- #_sample_xml(kind, data, source_merchant_id = nil) ⇒ Object
- #_subject_sample_xml(kind, id) ⇒ Object
- #_subscription_billing_skipped(id) ⇒ Object
- #_subscription_charged_successfully(id) ⇒ Object
- #_subscription_charged_unsuccessfully(id) ⇒ Object
- #_subscription_sample_xml(id) ⇒ Object
- #_transaction_disbursed_sample_xml(id) ⇒ Object
- #_transaction_reviewed_sample_xml(id) ⇒ Object
- #_transaction_settled_sample_xml(id) ⇒ Object
- #_transaction_settlement_declined_sample_xml(id) ⇒ Object
- #_venmo_account_xml(id) ⇒ Object
-
#initialize(gateway) ⇒ WebhookTestingGateway
constructor
A new instance of WebhookTestingGateway.
- #sample_notification(kind, id, source_merchant_id = nil) ⇒ Object
Constructor Details
#initialize(gateway) ⇒ WebhookTestingGateway
Returns a new instance of WebhookTestingGateway.
3 4 5 6 7 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 3 def initialize(gateway) @gateway = gateway @config = gateway.config @config.assert_has_access_token_or_keys end |
Instance Method Details
#_account_updater_daily_report_sample_xml(id) ⇒ Object
1012 1013 1014 1015 1016 1017 1018 1019 1020 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 1012 def _account_updater_daily_report_sample_xml(id) <<-XML <account-updater-daily-report> <report-date type="date">2016-01-14</report-date> <report-url>link-to-csv-report</report-url> </account-updater-daily-report> XML end |
#_auth_paypal_status_changed_sample_xml(id) ⇒ Object
1032 1033 1034 1035 1036 1037 1038 1039 1040 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 1032 def _auth_paypal_status_changed_sample_xml(id) <<-XML <connected-merchant-paypal-status-changed> <oauth-application-client-id>oauth_application_client_id</oauth-application-client-id> <merchant-public-id>#{id}</merchant-public-id> <action>link</action> </connected-merchant-paypal-status-changed> XML end |
#_auth_status_transitioned_sample_xml(id) ⇒ Object
1022 1023 1024 1025 1026 1027 1028 1029 1030 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 1022 def _auth_status_transitioned_sample_xml(id) <<-XML <connected-merchant-status-transitioned> <merchant-public-id>#{id}</merchant-public-id> <status>new_status</status> <oauth-application-client-id>oauth_application_client_id</oauth-application-client-id> </connected-merchant-status-transitioned> XML end |
#_check ⇒ Object
114 115 116 117 118 119 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 114 def _check <<-XML <check type="boolean">true</check> XML end |
#_disbursement_exception_sample_xml(id) ⇒ Object
962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 962 def _disbursement_exception_sample_xml(id) <<-XML <disbursement> <id>#{id}</id> <transaction-ids type="array"> <item>afv56j</item> <item>kj8hjk</item> </transaction-ids> <success type="boolean">false</success> <retry type="boolean">false</retry> <merchant-account> <id>merchant_account_token</id> <currency-iso-code>USD</currency-iso-code> <sub-merchant-account type="boolean">false</sub-merchant-account> <status>active</status> </merchant-account> <amount>100.00</amount> <disbursement-date type="date">2014-02-10</disbursement-date> <exception-message>bank_rejected</exception-message> <follow-up-action>update_funding_information</follow-up-action> </disbursement> XML end |
#_disbursement_sample_xml(id) ⇒ Object
987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 987 def _disbursement_sample_xml(id) <<-XML <disbursement> <id>#{id}</id> <transaction-ids type="array"> <item>afv56j</item> <item>kj8hjk</item> </transaction-ids> <success type="boolean">true</success> <retry type="boolean">false</retry> <merchant-account> <id>merchant_account_token</id> <currency-iso-code>USD</currency-iso-code> <sub-merchant-account type="boolean">false</sub-merchant-account> <status>active</status> </merchant-account> <amount>100.00</amount> <disbursement-date type="date">2014-02-10</disbursement-date> <exception-message nil="true"/> <follow-up-action nil="true"/> </disbursement> XML end |
#_dispute_accepted_sample_xml(id) ⇒ Object
363 364 365 366 367 368 369 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 363 def _dispute_accepted_sample_xml(id) if id == "legacy_dispute_id" _old_dispute_accepted_sample_xml(id) else _new_dispute_accepted_sample_xml(id) end end |
#_dispute_auto_accepted_sample_xml(id) ⇒ Object
371 372 373 374 375 376 377 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 371 def _dispute_auto_accepted_sample_xml(id) if id == "legacy_dispute_id" _old_dispute_auto_accepted_sample_xml(id) else _new_dispute_auto_accepted_sample_xml(id) end end |
#_dispute_disputed_sample_xml(id) ⇒ Object
379 380 381 382 383 384 385 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 379 def _dispute_disputed_sample_xml(id) if id == "legacy_dispute_id" _old_dispute_disputed_sample_xml(id) else _new_dispute_disputed_sample_xml(id) end end |
#_dispute_expired_sample_xml(id) ⇒ Object
387 388 389 390 391 392 393 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 387 def _dispute_expired_sample_xml(id) if id == "legacy_dispute_id" _old_dispute_expired_sample_xml(id) else _new_dispute_expired_sample_xml(id) end end |
#_dispute_lost_sample_xml(id) ⇒ Object
347 348 349 350 351 352 353 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 347 def _dispute_lost_sample_xml(id) if id == "legacy_dispute_id" _old_dispute_lost_sample_xml(id) else _new_dispute_lost_sample_xml(id) end end |
#_dispute_opened_sample_xml(id) ⇒ Object
339 340 341 342 343 344 345 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 339 def _dispute_opened_sample_xml(id) if id == "legacy_dispute_id" _old_dispute_opened_sample_xml(id) else _new_dispute_opened_sample_xml(id) end end |
#_dispute_under_review_sample_xml(id) ⇒ Object
331 332 333 334 335 336 337 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 331 def _dispute_under_review_sample_xml(id) if id == "legacy_dispute_id" _old_dispute_under_review_sample_xml(id) else _new_dispute_under_review_sample_xml(id) end end |
#_dispute_won_sample_xml(id) ⇒ Object
355 356 357 358 359 360 361 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 355 def _dispute_won_sample_xml(id) if id == "legacy_dispute_id" _old_dispute_won_sample_xml(id) else _new_dispute_won_sample_xml(id) end end |
#_granted_payment_instrument_update_sample_xml(id) ⇒ Object
1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 1051 def _granted_payment_instrument_update_sample_xml(id) <<-XML <granted-payment-instrument-update> <grant-owner-merchant-id>vczo7jqrpwrsi2px</grant-owner-merchant-id> <grant-recipient-merchant-id>cf0i8wgarszuy6hc</grant-recipient-merchant-id> <payment-method-nonce> <nonce>ee257d98-de40-47e8-96b3-a6954ea7a9a4</nonce> <consumed type="boolean">false</consumed> <locked type="boolean">false</locked> </payment-method-nonce> <token>abc123z</token> <updated-fields type="array"> <item>expiration-month</item> <item>expiration-year</item> </updated-fields> </granted-payment-instrument-update> XML end |
#_granted_payment_method_revoked_xml(id) ⇒ Object
1070 1071 1072 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 1070 def _granted_payment_method_revoked_xml(id) _venmo_account_xml(id) end |
#_local_payment_completed_sample_xml(id) ⇒ Object
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 1096 def _local_payment_completed_sample_xml(id) <<-XML <local-payment> <bic>BIC</bic> <iban_last_chars>1234</iban_last_chars> <payer-id>ABCPAYER</payer-id> <payer-name>PAYERNAME</payer-name> <payment-id>PAY-XYZ123</payment-id> <payment-method-nonce>ee257d98-de40-47e8-96b3-a6954ea7a9a4</payment-method-nonce> <transaction> <id>#{id}</id> <status>authorized</status> <amount>49.99</amount> <order-id>order4567</order-id> </transaction> </local-payment> XML end |
#_local_payment_expired_sample_xml ⇒ Object
1115 1116 1117 1118 1119 1120 1121 1122 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 1115 def _local_payment_expired_sample_xml <<-XML <local-payment-expired> <payment-id>PAY-XYZ123</payment-id> <payment-context-id>cG5b=</payment-context-id> </local-payment-expired> XML end |
#_local_payment_funded_sample_xml(id) ⇒ Object
1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 1124 def _local_payment_funded_sample_xml(id) <<-XML <local-payment-funded> <payment-id>PAY-XYZ123</payment-id> <payment-context-id>cG5b=</payment-context-id> <transaction> <id>#{id}</id> <status>settled</status> <amount>49.99</amount> <order-id>order4567</order-id> </transaction> </local-payment-funded> XML end |
#_local_payment_reversed_sample_xml ⇒ Object
1139 1140 1141 1142 1143 1144 1145 1146 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 1139 def _local_payment_reversed_sample_xml <<-XML <local-payment-reversed> <payment-id>PAY-XYZ123</payment-id> <payment-context-id>cG5b=</payment-context-id> </local-payment-reversed> XML end |
#_merchant_account_approved_sample_xml(id) ⇒ Object
222 223 224 225 226 227 228 229 230 231 232 233 234 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 222 def _merchant_account_approved_sample_xml(id) <<-XML <merchant_account> <id>#{id}</id> <master_merchant_account> <id>master_ma_for_#{id}</id> <status>active</status> </master_merchant_account> <status>active</status> </merchant_account> XML end |
#_merchant_account_declined_sample_xml(id) ⇒ Object
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 236 def _merchant_account_declined_sample_xml(id) <<-XML <api-error-response> <message>Credit score is too low</message> <errors> <errors type="array"/> <merchant-account> <errors type="array"> <error> <code>82621</code> <message>Credit score is too low</message> <attribute type="symbol">base</attribute> </error> </errors> </merchant-account> </errors> <merchant-account> <id>#{id}</id> <status>suspended</status> <master-merchant-account> <id>master_ma_for_#{id}</id> <status>suspended</status> </master-merchant-account> </merchant-account> </api-error-response> XML end |
#_new_dispute_accepted_sample_xml(id) ⇒ Object
763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 763 def _new_dispute_accepted_sample_xml(id) <<-XML <dispute> <id>#{id}</id> <amount>100.00</amount> <amount-disputed>100.00</amount-disputed> <amount-won>95.00</amount-won> <case-number>CASE-12345</case-number> <created-at type="datetime">2017-06-16T20:44:41Z</created-at> <currency-iso-code>USD</currency-iso-code> <forwarded-comments nil="true"/> <kind>chargeback</kind> <merchant-account-id>ytnlulaloidoqwvzxjrdqputg</merchant-account-id> <reason>fraud</reason> <reason-code nil="true"/> <reason-description nil="true"/> <received-date type="date">2016-02-15</received-date> <reference-number>REF-9876</reference-number> <reply-by-date type="date">2016-02-22</reply-by-date> <status>accepted</status> <updated-at type="datetime">2017-06-16T20:44:41Z</updated-at> <original-dispute-id>9qde5qgp</original-dispute-id> <status-history type="array"> <status-history> <status>open</status> <timestamp type="datetime">2017-06-16T20:44:41Z</timestamp> </status-history> <status-history> <status>accepted</status> <timestamp type="datetime">2017-06-25T20:50:55Z</timestamp> </status-history> </status-history> <evidence type="array"/> <transaction> <id>#{id}</id> <amount>100.00</amount> <created-at>2017-06-21T20:44:41Z</created-at> <order-id nil="true"/> <purchase-order-number nil="true"/> <payment-instrument-subtype>Visa</payment-instrument-subtype> </transaction> <date-opened type=\"date\">2014-03-21</date-opened> </dispute> XML end |
#_new_dispute_auto_accepted_sample_xml(id) ⇒ Object
809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 809 def _new_dispute_auto_accepted_sample_xml(id) <<-XML <dispute> <id>#{id}</id> <amount>100.00</amount> <amount-disputed>100.00</amount-disputed> <amount-won>95.00</amount-won> <case-number>CASE-12345</case-number> <created-at type="datetime">2017-06-16T20:44:41Z</created-at> <currency-iso-code>USD</currency-iso-code> <forwarded-comments nil="true"/> <kind>chargeback</kind> <merchant-account-id>ytnlulaloidoqwvzxjrdqputg</merchant-account-id> <reason>fraud</reason> <reason-code nil="true"/> <reason-description nil="true"/> <received-date type="date">2016-02-15</received-date> <reference-number>REF-9876</reference-number> <reply-by-date type="date">2016-02-22</reply-by-date> <status>auto_accepted</status> <updated-at type="datetime">2017-06-16T20:44:41Z</updated-at> <original-dispute-id>9qde5qgp</original-dispute-id> <status-history type="array"> <status-history> <status>open</status> <timestamp type="datetime">2017-06-16T20:44:41Z</timestamp> </status-history> <status-history> <status>auto_accepted</status> <timestamp type="datetime">2017-06-25T20:50:55Z</timestamp> </status-history> </status-history> <evidence type="array"/> <transaction> <id>#{id}</id> <amount>100.00</amount> <created-at>2017-06-21T20:44:41Z</created-at> <order-id nil="true"/> <purchase-order-number nil="true"/> <payment-instrument-subtype>Visa</payment-instrument-subtype> </transaction> <date-opened type=\"date\">2014-03-21</date-opened> </dispute> XML end |
#_new_dispute_disputed_sample_xml(id) ⇒ Object
855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 855 def _new_dispute_disputed_sample_xml(id) <<-XML <dispute> <id>#{id}</id> <amount>100.00</amount> <amount-disputed>100.00</amount-disputed> <amount-won>95.00</amount-won> <case-number>CASE-12345</case-number> <created-at type="datetime">2017-06-16T20:44:41Z</created-at> <currency-iso-code>USD</currency-iso-code> <forwarded-comments nil="true"/> <kind>chargeback</kind> <merchant-account-id>ytnlulaloidoqwvzxjrdqputg</merchant-account-id> <reason>fraud</reason> <reason-code nil="true"/> <reason-description nil="true"/> <received-date type="date">2016-02-15</received-date> <reference-number>REF-9876</reference-number> <reply-by-date type="date">2016-02-22</reply-by-date> <status>disputed</status> <updated-at type="datetime">2017-06-21T20:44:41Z</updated-at> <original-dispute-id>9qde5qgp</original-dispute-id> <status-history type="array"> <status-history> <status>open</status> <timestamp type="datetime">2017-06-16T20:44:41Z</timestamp> </status-history> <status-history> <status>disputed</status> <timestamp type="datetime">2017-06-25T20:50:55Z</timestamp> </status-history> </status-history> <evidence type="array"> <evidence> <id>rxtngk9j5j93tsrq</id> <comments nil="true"/> <created-at type="datetime">2017-06-21T20:44:42Z</created-at> <sent-to-processor-at nil="true"/> <url>s3.amazonaws.com/foo.jpg</url> </evidence> <evidence> <id>88cfb8dd</id> <comments>text evidence</comments> <created-at type="datetime">2017-06-21T20:44:42Z</created-at> <sent-to-processor-at nil="true"/> <url nil="true"/> </evidence> </evidence> <transaction> <id>#{id}</id> <amount>100.00</amount> <created-at>2017-06-21T20:44:41Z</created-at> <order-id nil="true"/> <purchase-order-number nil="true"/> <payment-instrument-subtype>Visa</payment-instrument-subtype> </transaction> <date-opened type=\"date\">2014-03-21</date-opened> </dispute> XML end |
#_new_dispute_expired_sample_xml(id) ⇒ Object
916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 916 def _new_dispute_expired_sample_xml(id) <<-XML <dispute> <id>#{id}</id> <amount>100.00</amount> <amount-disputed>100.00</amount-disputed> <amount-won>95.00</amount-won> <case-number>CASE-12345</case-number> <created-at type="datetime">2017-06-16T20:44:41Z</created-at> <currency-iso-code>USD</currency-iso-code> <forwarded-comments nil="true"/> <kind>chargeback</kind> <merchant-account-id>ytnlulaloidoqwvzxjrdqputg</merchant-account-id> <reason>fraud</reason> <reason-code nil="true"/> <reason-description nil="true"/> <received-date type="date">2016-02-15</received-date> <reference-number>REF-9876</reference-number> <reply-by-date type="date">2016-02-22</reply-by-date> <status>expired</status> <updated-at type="datetime">2017-06-16T20:44:41Z</updated-at> <original-dispute-id>9qde5qgp</original-dispute-id> <status-history type="array"> <status-history> <status>open</status> <timestamp type="datetime">2017-06-16T20:44:41Z</timestamp> </status-history> <status-history> <status>expired</status> <timestamp type="datetime">2017-06-25T20:50:55Z</timestamp> </status-history> </status-history> <evidence type="array"/> <transaction> <id>#{id}</id> <amount>100.00</amount> <created-at>2017-06-21T20:44:41Z</created-at> <order-id nil="true"/> <purchase-order-number nil="true"/> <payment-instrument-subtype>Visa</payment-instrument-subtype> </transaction> <date-opened type=\"date\">2014-03-21</date-opened> </dispute> XML end |
#_new_dispute_lost_sample_xml(id) ⇒ Object
640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 640 def _new_dispute_lost_sample_xml(id) <<-XML <dispute> <id>#{id}</id> <amount>100.00</amount> <amount-disputed>100.00</amount-disputed> <amount-won>95.00</amount-won> <case-number>CASE-12345</case-number> <created-at type="datetime">2017-06-16T20:44:41Z</created-at> <currency-iso-code>USD</currency-iso-code> <forwarded-comments nil="true"/> <kind>chargeback</kind> <merchant-account-id>ytnlulaloidoqwvzxjrdqputg</merchant-account-id> <reason>fraud</reason> <reason-code nil="true"/> <reason-description nil="true"/> <received-date type="date">2016-02-15</received-date> <reference-number>REF-9876</reference-number> <reply-by-date type="date">2016-02-22</reply-by-date> <status>lost</status> <updated-at type="datetime">2017-06-21T20:44:41Z</updated-at> <original-dispute-id>9qde5qgp</original-dispute-id> <status-history type="array"> <status-history> <status>open</status> <timestamp type="datetime">2017-06-16T20:44:41Z</timestamp> </status-history> <status-history> <status>lost</status> <timestamp type="datetime">2017-06-25T20:50:55Z</timestamp> </status-history> </status-history> <evidence type="array"> <evidence> <id>rxtngk9j5j93tsrq</id> <comments nil="true"/> <created-at type="datetime">2017-06-21T20:44:42Z</created-at> <sent-to-processor-at nil="true"/> <url>s3.amazonaws.com/foo.jpg</url> </evidence> <evidence> <id>88cfb8dd</id> <comments>text evidence</comments> <created-at type="datetime">2017-06-21T20:44:42Z</created-at> <sent-to-processor-at nil="true"/> <url nil="true"/> </evidence> </evidence> <transaction> <id>#{id}</id> <amount>100.00</amount> <created-at>2017-06-21T20:44:41Z</created-at> <order-id nil="true"/> <purchase-order-number nil="true"/> <payment-instrument-subtype>Visa</payment-instrument-subtype> </transaction> <date-opened type=\"date\">2014-03-21</date-opened> </dispute> XML end |
#_new_dispute_opened_sample_xml(id) ⇒ Object
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 598 def _new_dispute_opened_sample_xml(id) <<-XML <dispute> <id>#{id}</id> <amount>100.00</amount> <amount-disputed>100.00</amount-disputed> <amount-won>95.00</amount-won> <case-number>CASE-12345</case-number> <created-at type="datetime">2017-06-16T20:44:41Z</created-at> <currency-iso-code>USD</currency-iso-code> <forwarded-comments nil="true"/> <kind>chargeback</kind> <merchant-account-id>ytnlulaloidoqwvzxjrdqputg</merchant-account-id> <reason>fraud</reason> <reason-code nil="true"/> <reason-description nil="true"/> <received-date type="date">2016-02-15</received-date> <reference-number>REF-9876</reference-number> <reply-by-date type="date">2016-02-22</reply-by-date> <status>open</status> <updated-at type="datetime">2017-06-16T20:44:41Z</updated-at> <original-dispute-id>9qde5qgp</original-dispute-id> <status-history type="array"> <status-history> <status>open</status> <timestamp type="datetime">2017-06-16T20:44:41Z</timestamp> </status-history> </status-history> <evidence type="array"/> <transaction> <id>#{id}</id> <amount>100.00</amount> <created-at>2017-06-21T20:44:41Z</created-at> <order-id nil="true"/> <purchase-order-number nil="true"/> <payment-instrument-subtype>Visa</payment-instrument-subtype> </transaction> <date-opened type=\"date\">2014-03-21</date-opened> </dispute> XML end |
#_new_dispute_under_review_sample_xml(id) ⇒ Object
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 556 def _new_dispute_under_review_sample_xml(id) <<-XML <dispute> <id>#{id}</id> <amount>100.00</amount> <amount-disputed>100.00</amount-disputed> <amount-won>95.00</amount-won> <case-number>CASE-12345</case-number> <created-at type="datetime">2017-06-16T20:44:41Z</created-at> <currency-iso-code>USD</currency-iso-code> <forwarded-comments nil="true"/> <kind>chargeback</kind> <merchant-account-id>ytnlulaloidoqwvzxjrdqputg</merchant-account-id> <reason>fraud</reason> <reason-code nil="true"/> <reason-description nil="true"/> <received-date type="date">2016-02-15</received-date> <reference-number>REF-9876</reference-number> <reply-by-date type="date">2016-02-22</reply-by-date> <status>under_review</status> <updated-at type="datetime">2017-06-16T20:44:41Z</updated-at> <original-dispute-id>9qde5qgp</original-dispute-id> <status-history type="array"> <status-history> <status>under_review</status> <timestamp type="datetime">2017-06-16T20:44:41Z</timestamp> </status-history> </status-history> <evidence type="array"/> <transaction> <id>#{id}</id> <amount>100.00</amount> <created-at>2017-06-21T20:44:41Z</created-at> <order-id nil="true"/> <purchase-order-number nil="true"/> <payment-instrument-subtype>Visa</payment-instrument-subtype> </transaction> <date-opened type=\"date\">2014-03-21</date-opened> </dispute> XML end |
#_new_dispute_won_sample_xml(id) ⇒ Object
701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 701 def _new_dispute_won_sample_xml(id) <<-XML <dispute> <id>#{id}</id> <amount>100.00</amount> <amount-disputed>100.00</amount-disputed> <amount-won>95.00</amount-won> <case-number>CASE-12345</case-number> <created-at type="datetime">2017-06-16T20:44:41Z</created-at> <currency-iso-code>USD</currency-iso-code> <forwarded-comments nil="true"/> <kind>chargeback</kind> <merchant-account-id>ytnlulaloidoqwvzxjrdqputg</merchant-account-id> <reason>fraud</reason> <reason-code nil="true"/> <reason-description nil="true"/> <received-date type="date">2016-02-15</received-date> <reference-number>REF-9876</reference-number> <reply-by-date type="date">2016-02-22</reply-by-date> <status>won</status> <updated-at type="datetime">2017-06-21T20:44:41Z</updated-at> <original-dispute-id>9qde5qgp</original-dispute-id> <status-history type="array"> <status-history> <status>open</status> <timestamp type="datetime">2017-06-16T20:44:41Z</timestamp> </status-history> <status-history> <status>won</status> <timestamp type="datetime">2017-06-25T20:50:55Z</timestamp> </status-history> </status-history> <evidence type="array"> <evidence> <id>rxtngk9j5j93tsrq</id> <comments nil="true"/> <created-at type="datetime">2017-06-21T20:44:42Z</created-at> <sent-to-processor-at nil="true"/> <url>s3.amazonaws.com/foo.jpg</url> </evidence> <evidence> <id>88cfb8dd</id> <comments>text evidence</comments> <created-at type="datetime">2017-06-21T20:44:42Z</created-at> <sent-to-processor-at nil="true"/> <url nil="true"/> </evidence> </evidence> <transaction> <id>#{id}</id> <amount>100.00</amount> <created-at>2017-06-21T20:44:41Z</created-at> <order-id nil="true"/> <purchase-order-number nil="true"/> <payment-instrument-subtype>Visa</payment-instrument-subtype> </transaction> <date-opened type=\"date\">2014-03-21</date-opened> <date-won type=\"date\">2014-03-22</date-won> </dispute> XML end |
#_oauth_access_revoked_sample_xml(id) ⇒ Object
1042 1043 1044 1045 1046 1047 1048 1049 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 1042 def _oauth_access_revoked_sample_xml(id) <<-XML <oauth-application-revocation> <merchant-id>#{id}</merchant-id> <oauth-application-client-id>oauth_application_client_id</oauth-application-client-id> </oauth-application-revocation> XML end |
#_old_dispute_accepted_sample_xml(id) ⇒ Object
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 476 def _old_dispute_accepted_sample_xml(id) <<-XML <dispute> <amount>100.00</amount> <currency-iso-code>USD</currency-iso-code> <received-date type="date">2014-03-01</received-date> <reply-by-date type="date">2014-03-21</reply-by-date> <kind>chargeback</kind> <status>accepted</status> <reason>fraud</reason> <id>#{id}</id> <transaction> <id>#{id}</id> <amount>100.00</amount> </transaction> <date-opened type=\"date\">2014-03-21</date-opened> </dispute> XML end |
#_old_dispute_auto_accepted_sample_xml(id) ⇒ Object
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 496 def _old_dispute_auto_accepted_sample_xml(id) <<-XML <dispute> <amount>100.00</amount> <currency-iso-code>USD</currency-iso-code> <received-date type="date">2014-03-01</received-date> <reply-by-date type="date">2014-03-21</reply-by-date> <kind>chargeback</kind> <status>auto_accepted</status> <reason>fraud</reason> <id>#{id}</id> <transaction> <id>#{id}</id> <amount>100.00</amount> </transaction> <date-opened type=\"date\">2014-03-21</date-opened> </dispute> XML end |
#_old_dispute_disputed_sample_xml(id) ⇒ Object
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 516 def _old_dispute_disputed_sample_xml(id) <<-XML <dispute> <amount>100.00</amount> <currency-iso-code>USD</currency-iso-code> <received-date type="date">2014-03-01</received-date> <reply-by-date type="date">2014-03-21</reply-by-date> <kind>chargeback</kind> <status>disputed</status> <reason>fraud</reason> <id>#{id}</id> <transaction> <id>#{id}</id> <amount>100.00</amount> </transaction> <date-opened type=\"date\">2014-03-21</date-opened> </dispute> XML end |
#_old_dispute_expired_sample_xml(id) ⇒ Object
536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 536 def _old_dispute_expired_sample_xml(id) <<-XML <dispute> <amount>100.00</amount> <currency-iso-code>USD</currency-iso-code> <received-date type="date">2014-03-01</received-date> <reply-by-date type="date">2014-03-21</reply-by-date> <kind>chargeback</kind> <status>expired</status> <reason>fraud</reason> <id>#{id}</id> <transaction> <id>#{id}</id> <amount>100.00</amount> </transaction> <date-opened type=\"date\">2014-03-21</date-opened> </dispute> XML end |
#_old_dispute_lost_sample_xml(id) ⇒ Object
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 435 def _old_dispute_lost_sample_xml(id) <<-XML <dispute> <amount>100.00</amount> <currency-iso-code>USD</currency-iso-code> <received-date type="date">2014-03-01</received-date> <reply-by-date type="date">2014-03-21</reply-by-date> <kind>chargeback</kind> <status>lost</status> <reason>fraud</reason> <id>#{id}</id> <transaction> <id>#{id}</id> <amount>100.00</amount> </transaction> <date-opened type=\"date\">2014-03-21</date-opened> </dispute> XML end |
#_old_dispute_opened_sample_xml(id) ⇒ Object
415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 415 def _old_dispute_opened_sample_xml(id) <<-XML <dispute> <amount>100.00</amount> <currency-iso-code>USD</currency-iso-code> <received-date type="date">2014-03-01</received-date> <reply-by-date type="date">2014-03-21</reply-by-date> <kind>chargeback</kind> <status>open</status> <reason>fraud</reason> <id>#{id}</id> <transaction> <id>#{id}</id> <amount>100.00</amount> </transaction> <date-opened type=\"date\">2014-03-21</date-opened> </dispute> XML end |
#_old_dispute_under_review_sample_xml(id) ⇒ Object
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 395 def _old_dispute_under_review_sample_xml(id) <<-XML <dispute> <amount>100.00</amount> <currency-iso-code>USD</currency-iso-code> <received-date type="date">2014-03-01</received-date> <reply-by-date type="date">2014-03-21</reply-by-date> <kind>chargeback</kind> <status>under_review</status> <reason>fraud</reason> <id>#{id}</id> <transaction> <id>#{id}</id> <amount>100.00</amount> </transaction> <date-opened type=\"date\">2014-03-21</date-opened> </dispute> XML end |
#_old_dispute_won_sample_xml(id) ⇒ Object
455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 455 def _old_dispute_won_sample_xml(id) <<-XML <dispute> <amount>100.00</amount> <currency-iso-code>USD</currency-iso-code> <received-date type="date">2014-03-01</received-date> <reply-by-date type="date">2014-03-21</reply-by-date> <kind>chargeback</kind> <status>won</status> <reason>fraud</reason> <id>#{id}</id> <transaction> <id>#{id}</id> <amount>100.00</amount> </transaction> <date-opened type=\"date\">2014-03-21</date-opened> <date-won type=\"date\">2014-03-22</date-won> </dispute> XML end |
#_partner_merchant_connected_sample_xml(data) ⇒ Object
191 192 193 194 195 196 197 198 199 200 201 202 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 191 def _partner_merchant_connected_sample_xml(data) <<-XML <partner-merchant> <merchant-public-id>public_id</merchant-public-id> <public-key>public_key</public-key> <private-key>private_key</private-key> <partner-merchant-id>abc123</partner-merchant-id> <client-side-encryption-key>cse_key</client-side-encryption-key> </partner-merchant> XML end |
#_partner_merchant_declined_sample_xml(data) ⇒ Object
213 214 215 216 217 218 219 220 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 213 def _partner_merchant_declined_sample_xml(data) <<-XML <partner-merchant> <partner-merchant-id>abc123</partner-merchant-id> </partner-merchant> XML end |
#_partner_merchant_disconnected_sample_xml(data) ⇒ Object
204 205 206 207 208 209 210 211 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 204 def _partner_merchant_disconnected_sample_xml(data) <<-XML <partner-merchant> <partner-merchant-id>abc123</partner-merchant-id> </partner-merchant> XML end |
#_payment_method_customer_data_updated_sample_xml(id) ⇒ Object
1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 1148 def _payment_method_customer_data_updated_sample_xml(id) <<-XML <payment-method-customer-data-updated-metadata> <token>TOKEN-12345</token> <payment-method> #{_venmo_account_xml(id)} </payment-method> <datetime-updated type='dateTime'>2022-01-01T21:28:37Z</datetime-updated> <enriched-customer-data> <fields-updated type='array'> <item>username</item> </fields-updated> <profile-data> <username>venmo_username</username> <first-name>John</first-name> <last-name>Doe</last-name> <phone-number>1231231234</phone-number> <email>[email protected]</email> </profile-data> </enriched-customer-data> </payment-method-customer-data-updated-metadata> XML end |
#_payment_method_revoked_by_customer_sample_xml(id) ⇒ Object
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 1074 def _payment_method_revoked_by_customer_sample_xml(id) <<-XML <paypal-account> <billing-agreement-id>a-billing-agreement-id</billing-agreement-id> <created-at type="datetime">2019-01-01T12:00:00Z</created-at> <customer-id>a-customer-id</customer-id> <default type="boolean">true</default> <email>[email protected]</email> <global-id>cGF5bWVudG1ldGhvZF9jaDZieXNz</global-id> <image-url>https://assets.braintreegateway.com/payment_method_logo/paypal.png?environment=test</image-url> <subscriptions type="array"/> <token>#{id}</token> <updated-at type="datetime">2019-01-02T12:00:00Z</updated-at> <is-channel-initiated nil="true"/> <payer-id>a-payer-id</payer-id> <payer-info nil="true"/> <limited-use-order-id nil="true"/> <revoked-at type="datetime">2019-01-02T12:00:00Z</revoked-at> </paypal-account> XML end |
#_refund_failed_sample_xml(id) ⇒ Object
1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 1190 def _refund_failed_sample_xml(id) <<-XML <transaction> <id>#{id}</id> <amount>100</amount> <credit-card> <number>1234560000001234</number> <cvv>123</cvv> <card-type>MasterCard</card-type> </credit-card> <status>processor_declined</status> <refunded-transaction-id>1</refunded-transaction-id> </transaction> XML end |
#_sample_xml(kind, data, source_merchant_id = nil) ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 16 def _sample_xml(kind, data, source_merchant_id=nil) unless source_merchant_id.nil? source_merchant_xml = "<source-merchant-id>#{source_merchant_id}</source-merchant-id>" end <<-XML <notification> <timestamp type="datetime">#{Time.now.utc.iso8601}</timestamp> <kind>#{kind}</kind> #{source_merchant_xml} <subject> #{_subject_sample_xml(kind, data)} </subject> </notification> XML end |
#_subject_sample_xml(kind, id) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 33 def _subject_sample_xml(kind, id) case kind when Braintree::WebhookNotification::Kind::Check _check when Braintree::WebhookNotification::Kind::DisputeAccepted _dispute_accepted_sample_xml(id) when Braintree::WebhookNotification::Kind::DisputeAutoAccepted _dispute_auto_accepted_sample_xml(id) when Braintree::WebhookNotification::Kind::DisputeDisputed _dispute_disputed_sample_xml(id) when Braintree::WebhookNotification::Kind::DisputeExpired _dispute_expired_sample_xml(id) when Braintree::WebhookNotification::Kind::DisputeLost _dispute_lost_sample_xml(id) when Braintree::WebhookNotification::Kind::DisputeOpened _dispute_opened_sample_xml(id) when Braintree::WebhookNotification::Kind::DisputeUnderReview _dispute_under_review_sample_xml(id) when Braintree::WebhookNotification::Kind::DisputeWon _dispute_won_sample_xml(id) when Braintree::WebhookNotification::Kind::PartnerMerchantConnected _partner_merchant_connected_sample_xml(id) when Braintree::WebhookNotification::Kind::PartnerMerchantDisconnected _partner_merchant_disconnected_sample_xml(id) when Braintree::WebhookNotification::Kind::PartnerMerchantDeclined _partner_merchant_declined_sample_xml(id) when Braintree::WebhookNotification::Kind::OAuthAccessRevoked _oauth_access_revoked_sample_xml(id) when Braintree::WebhookNotification::Kind::SubMerchantAccountApproved _merchant_account_approved_sample_xml(id) when Braintree::WebhookNotification::Kind::SubMerchantAccountDeclined _merchant_account_declined_sample_xml(id) when Braintree::WebhookNotification::Kind::TransactionDisbursed _transaction_disbursed_sample_xml(id) when Braintree::WebhookNotification::Kind::TransactionReviewed _transaction_reviewed_sample_xml(id) when Braintree::WebhookNotification::Kind::TransactionSettled _transaction_settled_sample_xml(id) when Braintree::WebhookNotification::Kind::TransactionSettlementDeclined _transaction_settlement_declined_sample_xml(id) when Braintree::WebhookNotification::Kind::DisbursementException _disbursement_exception_sample_xml(id) when Braintree::WebhookNotification::Kind::Disbursement _disbursement_sample_xml(id) when Braintree::WebhookNotification::Kind::SubscriptionBillingSkipped _subscription_billing_skipped(id) when Braintree::WebhookNotification::Kind::SubscriptionChargedSuccessfully _subscription_charged_successfully(id) when Braintree::WebhookNotification::Kind::SubscriptionChargedUnsuccessfully _subscription_charged_unsuccessfully(id) when Braintree::WebhookNotification::Kind::AccountUpdaterDailyReport _account_updater_daily_report_sample_xml(id) when Braintree::WebhookNotification::Kind::ConnectedMerchantStatusTransitioned _auth_status_transitioned_sample_xml(id) when Braintree::WebhookNotification::Kind::ConnectedMerchantPayPalStatusChanged _auth_paypal_status_changed_sample_xml(id) when Braintree::WebhookNotification::Kind::GrantorUpdatedGrantedPaymentMethod _granted_payment_instrument_update_sample_xml(id) when Braintree::WebhookNotification::Kind::RecipientUpdatedGrantedPaymentMethod _granted_payment_instrument_update_sample_xml(id) when Braintree::WebhookNotification::Kind::GrantedPaymentMethodRevoked _granted_payment_method_revoked_xml(id) when Braintree::WebhookNotification::Kind::PaymentMethodRevokedByCustomer _payment_method_revoked_by_customer_sample_xml(id) when Braintree::WebhookNotification::Kind::LocalPaymentCompleted _local_payment_completed_sample_xml(id) when Braintree::WebhookNotification::Kind::LocalPaymentExpired _local_payment_expired_sample_xml when Braintree::WebhookNotification::Kind::LocalPaymentFunded _local_payment_funded_sample_xml(id) when Braintree::WebhookNotification::Kind::LocalPaymentReversed _local_payment_reversed_sample_xml when Braintree::WebhookNotification::Kind::PaymentMethodCustomerDataUpdated _payment_method_customer_data_updated_sample_xml(id) when Braintree::WebhookNotification::Kind::RefundFailed _refund_failed_sample_xml(id) else _subscription_sample_xml(id) end end |
#_subscription_billing_skipped(id) ⇒ Object
121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 121 def _subscription_billing_skipped(id) <<-XML <subscription> <id>#{id}</id> <transactions type="array"> </transactions> <add_ons type="array"> </add_ons> <discounts type="array"> </discounts> </subscription> XML end |
#_subscription_charged_successfully(id) ⇒ Object
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 136 def _subscription_charged_successfully(id) <<-XML <subscription> <id>#{id}</id> <transactions type="array"> <transaction> <id>#{id}</id> <status>submitted_for_settlement</status> <amount>49.99</amount> </transaction> </transactions> <add_ons type="array"> </add_ons> <discounts type="array"> </discounts> </subscription> XML end |
#_subscription_charged_unsuccessfully(id) ⇒ Object
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 156 def _subscription_charged_unsuccessfully(id) <<-XML <subscription> <id>#{id}</id> <transactions type="array"> <transaction> <id>#{id}</id> <status>failed</status> <amount>49.99</amount> </transaction> </transactions> <add_ons type="array"> </add_ons> <discounts type="array"> </discounts> </subscription> XML end |
#_subscription_sample_xml(id) ⇒ Object
176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 176 def _subscription_sample_xml(id) <<-XML <subscription> <id>#{id}</id> <transactions type="array"> </transactions> <add_ons type="array"> </add_ons> <discounts type="array"> </discounts> </subscription> XML end |
#_transaction_disbursed_sample_xml(id) ⇒ Object
265 266 267 268 269 270 271 272 273 274 275 276 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 265 def _transaction_disbursed_sample_xml(id) <<-XML <transaction> <id>#{id}</id> <amount>100</amount> <disbursement-details> <disbursement-date type="date">2013-07-09</disbursement-date> </disbursement-details> </transaction> XML end |
#_transaction_reviewed_sample_xml(id) ⇒ Object
278 279 280 281 282 283 284 285 286 287 288 289 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 278 def _transaction_reviewed_sample_xml(id) <<-XML <transaction-review> <transaction-id>my_id</transaction-id> <decision>decision</decision> <reviewer-email>[email protected]</reviewer-email> <reviewer-note>i reviewed this</reviewer-note> <reviewed-time type="datetime">2017-06-16T20:44:41Z</reviewed-time> </transaction-review> XML end |
#_transaction_settled_sample_xml(id) ⇒ Object
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 291 def _transaction_settled_sample_xml(id) <<-XML <transaction> <id>#{id}</id> <status>settled</status> <type>sale</type> <currency-iso-code>USD</currency-iso-code> <amount>100.00</amount> <merchant-account-id>ogaotkivejpfayqfeaimuktty</merchant-account-id> <payment-instrument-type>us_bank_account</payment-instrument-type> <us-bank-account> <routing-number>123456789</routing-number> <last-4>1234</last-4> <account-type>checking</account-type> <account-holder-name>Dan Schulman</account-holder-name> </us-bank-account> </transaction> XML end |
#_transaction_settlement_declined_sample_xml(id) ⇒ Object
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 311 def _transaction_settlement_declined_sample_xml(id) <<-XML <transaction> <id>#{id}</id> <status>settlement_declined</status> <type>sale</type> <currency-iso-code>USD</currency-iso-code> <amount>100.00</amount> <merchant-account-id>ogaotkivejpfayqfeaimuktty</merchant-account-id> <payment-instrument-type>us_bank_account</payment-instrument-type> <us-bank-account> <routing-number>123456789</routing-number> <last-4>1234</last-4> <account-type>checking</account-type> <account-holder-name>Dan Schulman</account-holder-name> </us-bank-account> </transaction> XML end |
#_venmo_account_xml(id) ⇒ Object
1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 1172 def _venmo_account_xml(id) <<-XML <venmo-account> <created-at type='dateTime'>2018-10-11T21:28:37Z</created-at> <updated-at type='dateTime'>2018-10-11T21:28:37Z</updated-at> <default type='boolean'>true</default> <image-url>https://assets.braintreegateway.com/payment_method_logo/venmo.png?environment=test</image-url> <token>#{id}</token> <source-description>Venmo Account: venmojoe</source-description> <username>venmojoe</username> <venmo-user-id>456</venmo-user-id> <subscriptions type='array'/> <customer-id>venmo_customer_id</customer-id> <global-id>cGF5bWVudG1ldGhvZF92ZW5tb2FjY291bnQ</global-id> </venmo-account> XML end |
#sample_notification(kind, id, source_merchant_id = nil) ⇒ Object
9 10 11 12 13 14 |
# File 'lib/braintree/webhook_testing_gateway.rb', line 9 def sample_notification(kind, id, source_merchant_id=nil) payload = Base64.encode64(_sample_xml(kind, id, source_merchant_id)) signature_string = "#{@config.public_key}|#{Braintree::Digest.hexdigest(@config.private_key, payload)}" return {:bt_signature => signature_string, :bt_payload => payload} end |