PageRenderTime 48ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/app/protected/modules/productTemplates/utils/sanitizers/SellPriceFormulaTypeSanitizerUtil.php

https://bitbucket.org/zurmo/zurmo/
PHP | 123 lines | 75 code | 3 blank | 45 comment | 14 complexity | 9f612eba07301884109846be75b7cf4f MD5 | raw file
Possible License(s): AGPL-3.0, BSD-3-Clause, GPL-2.0, LGPL-3.0, LGPL-2.1, BSD-2-Clause
  1. <?php
  2. /*********************************************************************************
  3. * Zurmo is a customer relationship management program developed by
  4. * Zurmo, Inc. Copyright (C) 2015 Zurmo Inc.
  5. *
  6. * Zurmo is free software; you can redistribute it and/or modify it under
  7. * the terms of the GNU Affero General Public License version 3 as published by the
  8. * Free Software Foundation with the addition of the following permission added
  9. * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
  10. * IN WHICH THE COPYRIGHT IS OWNED BY ZURMO, ZURMO DISCLAIMS THE WARRANTY
  11. * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
  12. *
  13. * Zurmo is distributed in the hope that it will be useful, but WITHOUT
  14. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  15. * FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public License along with
  19. * this program; if not, see http://www.gnu.org/licenses or write to the Free
  20. * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  21. * 02110-1301 USA.
  22. *
  23. * You can contact Zurmo, Inc. with a mailing address at 27 North Wacker Drive
  24. * Suite 370 Chicago, IL 60606. or at email address contact@zurmo.com.
  25. *
  26. * The interactive user interfaces in original and modified versions
  27. * of this program must display Appropriate Legal Notices, as required under
  28. * Section 5 of the GNU Affero General Public License version 3.
  29. *
  30. * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
  31. * these Appropriate Legal Notices must retain the display of the Zurmo
  32. * logo and Zurmo copyright notice. If the display of the logo is not reasonably
  33. * feasible for technical reasons, the Appropriate Legal Notices must display the words
  34. * "Copyright Zurmo Inc. 2015. All rights reserved".
  35. ********************************************************************************/
  36. /**
  37. * Sanitizer for handling price frequency.
  38. */
  39. class SellPriceFormulaTypeSanitizerUtil extends SanitizerUtil
  40. {
  41. /**
  42. * @param RedBean_OODBBean $rowBean
  43. */
  44. public function analyzeByRow(RedBean_OODBBean $rowBean)
  45. {
  46. $resolvedAcceptableValues = ArrayUtil::resolveArrayToLowerCase(static::getAcceptableValues());
  47. if (!in_array(strtolower($rowBean->{$this->columnName}), $resolvedAcceptableValues))
  48. {
  49. $label = Zurmo::t('ImportModule',
  50. '{attributeLabel} specified is invalid and this row will be skipped during import.',
  51. array('{attributeLabel}' => ProductTemplate::getAnAttributeLabel('sellPriceFormula')));
  52. $this->shouldSkipRow = true;
  53. $this->analysisMessages[] = $label;
  54. }
  55. }
  56. /**
  57. * @param mixed $value
  58. * @return sanitized value
  59. * @throws InvalidValueToSanitizeException
  60. */
  61. public function sanitizeValue($value)
  62. {
  63. if ($value == null)
  64. {
  65. return $value;
  66. }
  67. try
  68. {
  69. if (strtolower($value) == strtolower(SellPriceFormula::TYPE_EDITABLE) ||
  70. strtolower($value) == strtolower('Editable'))
  71. {
  72. return SellPriceFormula::TYPE_EDITABLE;
  73. }
  74. elseif (strtolower($value) == strtolower(SellPriceFormula::TYPE_DISCOUNT_FROM_LIST) ||
  75. strtolower($value) == strtolower('Discount From List Percent'))
  76. {
  77. return SellPriceFormula::TYPE_DISCOUNT_FROM_LIST;
  78. }
  79. elseif (strtolower($value) == strtolower(SellPriceFormula::TYPE_MARKUP_OVER_COST) ||
  80. strtolower($value) == strtolower('Markup Over Cost Percent'))
  81. {
  82. return SellPriceFormula::TYPE_MARKUP_OVER_COST;
  83. }
  84. elseif (strtolower($value) == strtolower(SellPriceFormula::TYPE_PROFIT_MARGIN) ||
  85. strtolower($value) == strtolower('Profit Margin Percent'))
  86. {
  87. return SellPriceFormula::TYPE_PROFIT_MARGIN;
  88. }
  89. elseif (strtolower($value) == strtolower(SellPriceFormula::TYPE_SAME_AS_LIST) ||
  90. strtolower($value) == strtolower('Same As List'))
  91. {
  92. return SellPriceFormula::TYPE_SAME_AS_LIST;
  93. }
  94. else
  95. {
  96. throw new InvalidValueToSanitizeException(Zurmo::t('ProductTemplatesModule',
  97. 'Sell Price Formula type specified is invalid.'));
  98. }
  99. }
  100. catch (NotFoundException $e)
  101. {
  102. throw new InvalidValueToSanitizeException(Zurmo::t('ProductTemplatesModule',
  103. 'Sell Price Formula type specified is invalid.'));
  104. }
  105. }
  106. protected static function getAcceptableValues()
  107. {
  108. return array(SellPriceFormula::TYPE_EDITABLE,
  109. SellPriceFormula::TYPE_DISCOUNT_FROM_LIST,
  110. SellPriceFormula::TYPE_MARKUP_OVER_COST,
  111. SellPriceFormula::TYPE_PROFIT_MARGIN,
  112. SellPriceFormula::TYPE_SAME_AS_LIST,
  113. 'Editable',
  114. 'Discount From List Percent',
  115. 'Markup Over Cost Percent',
  116. 'Profit Margin Percent',
  117. 'Same As List');
  118. }
  119. }
  120. ?>