PageRenderTime 47ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/src/application/libraries/Zend/Ldap/Exception.php

https://bitbucket.org/masnug/grc276-blog-laravel
PHP | 172 lines | 118 code | 10 blank | 44 comment | 7 complexity | e947eb30ec1172438d6e1a48db145a19 MD5 | raw file
  1. <?php
  2. /**
  3. * Zend Framework
  4. *
  5. * LICENSE
  6. *
  7. * This source file is subject to the new BSD license that is bundled
  8. * with this package in the file LICENSE.txt.
  9. * It is also available through the world-wide-web at this URL:
  10. * http://framework.zend.com/license/new-bsd
  11. * If you did not receive a copy of the license and are unable to
  12. * obtain it through the world-wide-web, please send an email
  13. * to license@zend.com so we can send you a copy immediately.
  14. *
  15. * @category Zend
  16. * @package Zend_Ldap
  17. * @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
  18. * @license http://framework.zend.com/license/new-bsd New BSD License
  19. * @version $Id: Exception.php 23775 2011-03-01 17:25:24Z ralph $
  20. */
  21. /**
  22. * @see Zend_Exception
  23. */
  24. require_once 'Zend/Exception.php';
  25. /**
  26. * @category Zend
  27. * @package Zend_Ldap
  28. * @uses Zend_Exception
  29. * @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
  30. * @license http://framework.zend.com/license/new-bsd New BSD License
  31. */
  32. class Zend_Ldap_Exception extends Zend_Exception
  33. {
  34. const LDAP_SUCCESS = 0x00;
  35. const LDAP_OPERATIONS_ERROR = 0x01;
  36. const LDAP_PROTOCOL_ERROR = 0x02;
  37. const LDAP_TIMELIMIT_EXCEEDED = 0x03;
  38. const LDAP_SIZELIMIT_EXCEEDED = 0x04;
  39. const LDAP_COMPARE_FALSE = 0x05;
  40. const LDAP_COMPARE_TRUE = 0x06;
  41. const LDAP_AUTH_METHOD_NOT_SUPPORTED = 0x07;
  42. const LDAP_STRONG_AUTH_REQUIRED = 0x08;
  43. const LDAP_PARTIAL_RESULTS = 0x09;
  44. const LDAP_REFERRAL = 0x0a;
  45. const LDAP_ADMINLIMIT_EXCEEDED = 0x0b;
  46. const LDAP_UNAVAILABLE_CRITICAL_EXTENSION = 0x0c;
  47. const LDAP_CONFIDENTIALITY_REQUIRED = 0x0d;
  48. const LDAP_SASL_BIND_IN_PROGRESS = 0x0e;
  49. const LDAP_NO_SUCH_ATTRIBUTE = 0x10;
  50. const LDAP_UNDEFINED_TYPE = 0x11;
  51. const LDAP_INAPPROPRIATE_MATCHING = 0x12;
  52. const LDAP_CONSTRAINT_VIOLATION = 0x13;
  53. const LDAP_TYPE_OR_VALUE_EXISTS = 0x14;
  54. const LDAP_INVALID_SYNTAX = 0x15;
  55. const LDAP_NO_SUCH_OBJECT = 0x20;
  56. const LDAP_ALIAS_PROBLEM = 0x21;
  57. const LDAP_INVALID_DN_SYNTAX = 0x22;
  58. const LDAP_IS_LEAF = 0x23;
  59. const LDAP_ALIAS_DEREF_PROBLEM = 0x24;
  60. const LDAP_PROXY_AUTHZ_FAILURE = 0x2F;
  61. const LDAP_INAPPROPRIATE_AUTH = 0x30;
  62. const LDAP_INVALID_CREDENTIALS = 0x31;
  63. const LDAP_INSUFFICIENT_ACCESS = 0x32;
  64. const LDAP_BUSY = 0x33;
  65. const LDAP_UNAVAILABLE = 0x34;
  66. const LDAP_UNWILLING_TO_PERFORM = 0x35;
  67. const LDAP_LOOP_DETECT = 0x36;
  68. const LDAP_NAMING_VIOLATION = 0x40;
  69. const LDAP_OBJECT_CLASS_VIOLATION = 0x41;
  70. const LDAP_NOT_ALLOWED_ON_NONLEAF = 0x42;
  71. const LDAP_NOT_ALLOWED_ON_RDN = 0x43;
  72. const LDAP_ALREADY_EXISTS = 0x44;
  73. const LDAP_NO_OBJECT_CLASS_MODS = 0x45;
  74. const LDAP_RESULTS_TOO_LARGE = 0x46;
  75. const LDAP_AFFECTS_MULTIPLE_DSAS = 0x47;
  76. const LDAP_OTHER = 0x50;
  77. const LDAP_SERVER_DOWN = 0x51;
  78. const LDAP_LOCAL_ERROR = 0x52;
  79. const LDAP_ENCODING_ERROR = 0x53;
  80. const LDAP_DECODING_ERROR = 0x54;
  81. const LDAP_TIMEOUT = 0x55;
  82. const LDAP_AUTH_UNKNOWN = 0x56;
  83. const LDAP_FILTER_ERROR = 0x57;
  84. const LDAP_USER_CANCELLED = 0x58;
  85. const LDAP_PARAM_ERROR = 0x59;
  86. const LDAP_NO_MEMORY = 0x5a;
  87. const LDAP_CONNECT_ERROR = 0x5b;
  88. const LDAP_NOT_SUPPORTED = 0x5c;
  89. const LDAP_CONTROL_NOT_FOUND = 0x5d;
  90. const LDAP_NO_RESULTS_RETURNED = 0x5e;
  91. const LDAP_MORE_RESULTS_TO_RETURN = 0x5f;
  92. const LDAP_CLIENT_LOOP = 0x60;
  93. const LDAP_REFERRAL_LIMIT_EXCEEDED = 0x61;
  94. const LDAP_CUP_RESOURCES_EXHAUSTED = 0x71;
  95. const LDAP_CUP_SECURITY_VIOLATION = 0x72;
  96. const LDAP_CUP_INVALID_DATA = 0x73;
  97. const LDAP_CUP_UNSUPPORTED_SCHEME = 0x74;
  98. const LDAP_CUP_RELOAD_REQUIRED = 0x75;
  99. const LDAP_CANCELLED = 0x76;
  100. const LDAP_NO_SUCH_OPERATION = 0x77;
  101. const LDAP_TOO_LATE = 0x78;
  102. const LDAP_CANNOT_CANCEL = 0x79;
  103. const LDAP_ASSERTION_FAILED = 0x7A;
  104. const LDAP_SYNC_REFRESH_REQUIRED = 0x1000;
  105. const LDAP_X_SYNC_REFRESH_REQUIRED = 0x4100;
  106. const LDAP_X_NO_OPERATION = 0x410e;
  107. const LDAP_X_ASSERTION_FAILED = 0x410f;
  108. const LDAP_X_NO_REFERRALS_FOUND = 0x4110;
  109. const LDAP_X_CANNOT_CHAIN = 0x4111;
  110. /* internal error code constants */
  111. const LDAP_X_DOMAIN_MISMATCH = 0x7001;
  112. const LDAP_X_EXTENSION_NOT_LOADED = 0x7002;
  113. /**
  114. * @param Zend_Ldap $ldap A Zend_Ldap object
  115. * @param string $str An informtive exception message
  116. * @param int $code An LDAP error code
  117. */
  118. public function __construct(Zend_Ldap $ldap = null, $str = null, $code = 0)
  119. {
  120. $errorMessages = array();
  121. $message = '';
  122. if ($ldap !== null) {
  123. $oldCode = $code;
  124. $message = $ldap->getLastError($code, $errorMessages) . ': ';
  125. if ($code === 0) {
  126. $message = '';
  127. $code = $oldCode;
  128. }
  129. }
  130. if (empty($message)) {
  131. if ($code > 0) {
  132. $message = '0x' . dechex($code) . ': ';
  133. }
  134. }
  135. if (!empty($str)) {
  136. $message .= $str;
  137. } else {
  138. $message .= 'no exception message';
  139. }
  140. parent::__construct($message, $code);
  141. }
  142. /**
  143. * @deprecated not necessary any more - will be removed
  144. * @param Zend_Ldap $ldap A Zend_Ldap object
  145. * @return int The current error code for the resource
  146. */
  147. public static function getLdapCode(Zend_Ldap $ldap = null)
  148. {
  149. if ($ldap !== null) {
  150. return $ldap->getLastErrorCode();
  151. }
  152. return 0;
  153. }
  154. /**
  155. * @deprecated will be removed
  156. * @return int The current error code for this exception
  157. */
  158. public function getErrorCode()
  159. {
  160. return $this->getCode();
  161. }
  162. }