PageRenderTime 58ms CodeModel.GetById 15ms RepoModel.GetById 1ms app.codeStats 0ms

/app/protected/modules/zurmo/utils/RightsCache.php

https://bitbucket.org/zurmo/zurmo/
PHP | 101 lines | 57 code | 3 blank | 41 comment | 9 complexity | 916323ff34ee099c4a50a0474f8246c5 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. * This is a rights caching helper. Currently it just wraps the general cache until we can split out the caching
  38. * in memcache by categories. This way in the future we can flush just the rights cache instead of having to flush
  39. * the entire cache like we are doing now.
  40. */
  41. abstract class RightsCache extends GeneralCache
  42. {
  43. public static function getEntry($identifier, $default = 'NOT_FOUND_EXCEPTION', $cacheDefaultValue = false)
  44. {
  45. try
  46. {
  47. return parent::getEntry($identifier, $default, $cacheDefaultValue);
  48. }
  49. catch (NotFoundException $e)
  50. {
  51. if (static::supportsAndAllowsDatabaseCaching())
  52. {
  53. $row = ZurmoRedBean::getRow("select entry from actual_rights_cache " .
  54. "where identifier = '" . $identifier . "'");
  55. if ($row != null && isset($row['entry']))
  56. {
  57. //Calling parent because we don't need to re-cache the db cache item
  58. parent::cacheEntry($identifier, $row['entry']);
  59. return $row['entry'];
  60. }
  61. }
  62. if ($default === 'NOT_FOUND_EXCEPTION')
  63. {
  64. throw new NotFoundException();
  65. }
  66. else
  67. {
  68. if ($cacheDefaultValue)
  69. {
  70. static::cacheEntry($identifier, $default);
  71. }
  72. return $default;
  73. }
  74. }
  75. }
  76. public static function cacheEntry($identifier, $entry)
  77. {
  78. assert('is_string($entry) || is_numeric($entry)');
  79. parent::cacheEntry($identifier, $entry);
  80. if (static::supportsAndAllowsDatabaseCaching())
  81. {
  82. ZurmoRedBean::exec("insert into actual_rights_cache
  83. (identifier, entry) values ('" . $identifier . "', '" . $entry . "') on duplicate key
  84. update entry = " . $entry);
  85. }
  86. }
  87. // The $forgetDbLevel cache is for testing.
  88. public static function forgetAll($forgetDbLevelCache = true)
  89. {
  90. if (static::supportsAndAllowsDatabaseCaching() && $forgetDbLevelCache)
  91. {
  92. ZurmoDatabaseCompatibilityUtil::
  93. callProcedureWithoutOuts("clear_cache_actual_rights()");
  94. }
  95. parent::forgetAll();
  96. }
  97. }
  98. ?>