PageRenderTime 23ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Payment.php

https://gitlab.com/hunt9310/ras
PHP | 141 lines | 35 code | 22 blank | 84 comment | 0 complexity | 0af7358abcc1f44ec0aae887d0514ab1 MD5 | raw file
  1. <?php
  2. /*
  3. * Copyright (c) 2013 - 2015 MasterCard International Incorporated
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without modification, are
  7. * permitted provided that the following conditions are met:
  8. *
  9. * Redistributions of source code must retain the above copyright notice, this list of
  10. * conditions and the following disclaimer.
  11. * Redistributions in binary form must reproduce the above copyright notice, this list of
  12. * conditions and the following disclaimer in the documentation and/or other materials
  13. * provided with the distribution.
  14. * Neither the name of the MasterCard International Incorporated nor the names of its
  15. * contributors may be used to endorse or promote products derived from this software
  16. * without specific prior written permission.
  17. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
  18. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  19. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
  20. * SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  21. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
  22. * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  23. * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
  24. * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  25. * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26. * SUCH DAMAGE.
  27. */
  28. class Simplify_Payment extends Simplify_Object {
  29. /**
  30. * Creates an Simplify_Payment object
  31. * @param array $hash a map of parameters; valid keys are:<dl style="padding-left:10px;">
  32. * <dt><tt>amount</tt></dt> <dd>Amount of the payment (in the smallest unit of your currency). Example: 100 = $1.00USD </dd>
  33. * <dt><tt>authorization</tt></dt> <dd>The ID of the authorization being used to capture the payment. </dd>
  34. * <dt><tt>card.addressCity</tt></dt> <dd>City of the cardholder. [max length: 50, min length: 2] </dd>
  35. * <dt><tt>card.addressCountry</tt></dt> <dd>Country code (ISO-3166-1-alpha-2 code) of residence of the cardholder. [max length: 2, min length: 2] </dd>
  36. * <dt><tt>card.addressLine1</tt></dt> <dd>Address of the cardholder. [max length: 255] </dd>
  37. * <dt><tt>card.addressLine2</tt></dt> <dd>Address of the cardholder if needed. [max length: 255] </dd>
  38. * <dt><tt>card.addressState</tt></dt> <dd>State of residence of the cardholder. For the US, this is a 2-digit USPS code. [max length: 255, min length: 2] </dd>
  39. * <dt><tt>card.addressZip</tt></dt> <dd>Postal code of the cardholder. The postal code size is between 5 and 9 in length and only contain numbers or letters. [max length: 9, min length: 3] </dd>
  40. * <dt><tt>card.cvc</tt></dt> <dd>CVC security code of the card. This is the code on the back of the card. Example: 123 </dd>
  41. * <dt><tt>card.expMonth</tt></dt> <dd>Expiration month of the card. Format is MM. Example: January = 01 [min value: 1, max value: 12] <strong>required </strong></dd>
  42. * <dt><tt>card.expYear</tt></dt> <dd>Expiration year of the card. Format is YY. Example: 2013 = 13 [min value: 0, max value: 99] <strong>required </strong></dd>
  43. * <dt><tt>card.name</tt></dt> <dd>Name as it appears on the card. [max length: 50, min length: 2] </dd>
  44. * <dt><tt>card.number</tt></dt> <dd>Card number as it appears on the card. [max length: 19, min length: 13] <strong>required </strong></dd>
  45. * <dt><tt>currency</tt></dt> <dd>Currency code (ISO-4217) for the transaction. Must match the currency associated with your account. [default: USD] <strong>required </strong></dd>
  46. * <dt><tt>customer</tt></dt> <dd>ID of customer. If specified, card on file of customer will be used. </dd>
  47. * <dt><tt>description</tt></dt> <dd>Free form text field to be used as a description of the payment. This field is echoed back with the payment on any find or list operations. [max length: 1024] </dd>
  48. * <dt><tt>invoice</tt></dt> <dd>ID of invoice for which this payment is being made. </dd>
  49. * <dt><tt>reference</tt></dt> <dd>Custom reference field to be used with outside systems. </dd>
  50. * <dt><tt>replayId</tt></dt> <dd>An identifier that can be sent to uniquely identify a payment request to facilitate retries due to I/O related issues. This identifier must be unique for your account (sandbox or live) across all of your payments. If supplied, we will check for a payment on your account that matches this identifier. If found will attempt to return an identical response of the original request. [max length: 50, min length: 1] </dd>
  51. * <dt><tt>statementDescription.name</tt></dt> <dd>Merchant name. <strong>required </strong></dd>
  52. * <dt><tt>statementDescription.phoneNumber</tt></dt> <dd>Merchant contact phone number. </dd>
  53. * <dt><tt>token</tt></dt> <dd>If specified, card associated with card token will be used. [max length: 255] </dd></dl>
  54. * @param $authentication - information used for the API call. If no value is passed the global keys Simplify::public_key and Simplify::private_key are used. <i>For backwards compatibility the public and private keys may be passed instead of the authentication object.<i/>
  55. * @return Payment a Payment object.
  56. */
  57. static public function createPayment($hash, $authentication = null) {
  58. $args = func_get_args();
  59. $authentication = Simplify_PaymentsApi::buildAuthenticationObject($authentication, $args, 2);
  60. $instance = new Simplify_Payment();
  61. $instance->setAll($hash);
  62. $object = Simplify_PaymentsApi::createObject($instance, $authentication);
  63. return $object;
  64. }
  65. /**
  66. * Retrieve Simplify_Payment objects.
  67. * @param array criteria a map of parameters; valid keys are:<dl style="padding-left:10px;">
  68. * <dt><tt>filter</tt></dt> <dd>Filters to apply to the list. </dd>
  69. * <dt><tt>max</tt></dt> <dd>Allows up to a max of 50 list items to return. [min value: 0, max value: 50, default: 20] </dd>
  70. * <dt><tt>offset</tt></dt> <dd>Used in paging of the list. This is the start offset of the page. [min value: 0, default: 0] </dd>
  71. * <dt><tt>sorting</tt></dt> <dd>Allows for ascending or descending sorting of the list. The value maps properties to the sort direction (either <tt>asc</tt> for ascending or <tt>desc</tt> for descending). Sortable properties are: <tt> dateCreated</tt><tt> createdBy</tt><tt> amount</tt><tt> id</tt><tt> description</tt><tt> paymentDate</tt>.</dd></dl>
  72. * @param $authentication - information used for the API call. If no value is passed the global keys Simplify::public_key and Simplify::private_key are used. <i>For backwards compatibility the public and private keys may be passed instead of the authentication object.</i>
  73. * @return ResourceList a ResourceList object that holds the list of Payment objects and the total
  74. * number of Payment objects available for the given criteria.
  75. * @see ResourceList
  76. */
  77. static public function listPayment($criteria = null, $authentication = null) {
  78. $args = func_get_args();
  79. $authentication = Simplify_PaymentsApi::buildAuthenticationObject($authentication, $args, 2);
  80. $val = new Simplify_Payment();
  81. $list = Simplify_PaymentsApi::listObject($val, $criteria, $authentication);
  82. return $list;
  83. }
  84. /**
  85. * Retrieve a Simplify_Payment object from the API
  86. *
  87. * @param string id the id of the Payment object to retrieve
  88. * @param $authentication - information used for the API call. If no value is passed the global keys Simplify::public_key and Simplify::private_key are used. <i>For backwards compatibility the public and private keys may be passed instead of the authentication object.</i>
  89. * @return Payment a Payment object
  90. */
  91. static public function findPayment($id, $authentication = null) {
  92. $args = func_get_args();
  93. $authentication = Simplify_PaymentsApi::buildAuthenticationObject($authentication, $args, 2);
  94. $val = new Simplify_Payment();
  95. $val->id = $id;
  96. $obj = Simplify_PaymentsApi::findObject($val, $authentication);
  97. return $obj;
  98. }
  99. /**
  100. * Updates an Simplify_Payment object.
  101. *
  102. * The properties that can be updated:
  103. * <dl style="padding-left:10px;"></dl>
  104. * @param $authentication - information used for the API call. If no value is passed the global keys Simplify::public_key and Simplify::private_key are used. <i>For backwards compatibility the public and private keys may be passed instead of the authentication object.</i>
  105. * @return Payment a Payment object.
  106. */
  107. public function updatePayment($authentication = null) {
  108. $args = func_get_args();
  109. $authentication = Simplify_PaymentsApi::buildAuthenticationObject($authentication, $args, 1);
  110. $object = Simplify_PaymentsApi::updateObject($this, $authentication);
  111. return $object;
  112. }
  113. /**
  114. * @ignore
  115. */
  116. public function getClazz() {
  117. return "Payment";
  118. }
  119. }