/library/Ecart/Method/Payment/Model/Card/Abstract.php

https://code.google.com/p/ecartcommerce/ · PHP · 149 lines · 78 code · 10 blank · 61 comment · 8 complexity · caa82c1987bfd8acfa45fdfcfa0e6538 MD5 · raw file

  1. <?php
  2. /**
  3. * Ecart
  4. *
  5. * This file is part of Ecart.
  6. *
  7. * Ecart is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * Ecart is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with Ecart. If not, see <http://www.gnu.org/licenses/>.
  19. *
  20. * @category Ecart
  21. * @package Ecart_Checkout
  22. * @copyright Copyright 2008-2009 E-Cart LLC
  23. * @license GNU Public License V3.0
  24. */
  25. /**
  26. *
  27. * @category Ecart
  28. * @package Ecart_Checkout
  29. * @subpackage Method
  30. * @author Ecart Core Team <core@ecartcommerce.com>
  31. * @abstract
  32. */
  33. abstract class Ecart_Method_Payment_Model_Card_Abstract extends Ecart_Method_Payment_Model_Abstract
  34. {
  35. /**
  36. * Save credit card object and custom attributes
  37. * @see (form.phtml, setPaymentAction)
  38. * @return bool
  39. * @param array $data
  40. */
  41. public function saveData($data)
  42. {
  43. $is_valid = true;
  44. if (isset($data[$this->_code . '-CcNumber'])) {
  45. $is_valid = $this->setCreditCard(
  46. $data[$this->_code . '-CcType'],
  47. $data[$this->_code . '-CcOwner'],
  48. $data[$this->_code . '-CcNumber'],
  49. $data[$this->_code . '-CcExpiresYear'],
  50. $data[$this->_code . '-CcExpiresMonth'],
  51. isset($data[$this->_code . '-CcCvv']) ? $data[$this->_code . '-CcCvv'] : null
  52. );
  53. unset($data[$this->_code . '-CcType']);
  54. unset($data[$this->_code . '-CcOwner']);
  55. unset($data[$this->_code . '-CcNumber']);
  56. unset($data[$this->_code . '-CcExpiresYear']);
  57. unset($data[$this->_code . '-CcExpiresMonth']);
  58. unset($data[$this->_code . '-CcCvv']);
  59. }
  60. return $is_valid ? parent::saveData($data) : false;
  61. }
  62. /**
  63. * Set payment storage credit card attributes
  64. * @return bool
  65. * @param string $ccType
  66. * @param string $ccOwner
  67. * @param string $ccNumber
  68. * @param string $ccExpiresYear
  69. * @param string $ccExpiresMonth
  70. * @param string $ccCvv
  71. * @param string $cc_issue_year[optional]
  72. * @param string $cc_expires_month[optional]
  73. */
  74. public function setCreditCard($ccType, $ccOwner, $ccNumber, $ccExpiresYear,
  75. $ccExpiresMonth, $ccCvv, $ccIssueYear = null, $ccIssueMonth = null)
  76. {
  77. if (empty($ccType) || empty($ccNumber)
  78. || empty($ccExpiresYear) || empty($ccExpiresMonth) ) {
  79. Ecart::message()->addError(
  80. Ecart::translate('checkout')->__(
  81. 'Set full Credit Card Information'
  82. ));
  83. return false;
  84. }
  85. $validator = new Zend_Validate_CreditCard();
  86. $allowedCcTypes = $this->getCCTypes();
  87. $validator->setType($allowedCcTypes);
  88. if (!$validator->isValid($ccNumber)) {
  89. foreach ($validator->getMessages() as $message) {
  90. Ecart::message()->addError($message);
  91. }
  92. return false;
  93. }
  94. return $this->getCreditCard()
  95. ->setCcType($ccType)
  96. ->setCcOwner($ccOwner)
  97. ->setCcNumber($ccNumber)
  98. ->setCcExpiresYear($ccExpiresYear)
  99. ->setCcExpiresMonth($ccExpiresMonth)
  100. ->setCcIssueYear($ccIssueYear)
  101. ->setCcIssueMonth($ccIssueMonth)
  102. ->setCcCvv($ccCvv) instanceof Ecart_CreditCard;
  103. }
  104. /**
  105. * Retruns Payment Credit Card object
  106. * @return Ecart_CreditCard
  107. */
  108. public function getCreditCard()
  109. {
  110. if (!$this->hasCreditCard()) {
  111. $this->getStorage()->cc = new Ecart_CreditCard();
  112. }
  113. return $this->getStorage()->cc;
  114. }
  115. /**
  116. * Checks is CreditCard object was created
  117. * @return boolean
  118. */
  119. public function hasCreditCard()
  120. {
  121. return $this->getStorage()->cc instanceof Ecart_CreditCard;
  122. }
  123. /**
  124. * Returns allowed credit cards types
  125. * @return array
  126. */
  127. public function getCCTypes()
  128. {
  129. $usedTypes = $this->_config->creditCard->toArray();
  130. $allTypes = Ecart_Collect_CreditCard::collect();
  131. $ret = array();
  132. foreach ($allTypes as $typeKey => $typeName) {
  133. if (in_array($typeKey, $usedTypes)) {
  134. $ret[$typeKey] = $typeName;
  135. }
  136. }
  137. return $ret;
  138. }
  139. }