説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Handle.php 9.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: yunwuxin <448901948@qq.com>
  10. // +----------------------------------------------------------------------
  11. namespace think\exception;
  12. use Exception;
  13. use think\App;
  14. use think\Config;
  15. use think\console\Output;
  16. use think\Lang;
  17. use think\Log;
  18. use think\Response;
  19. class Handle
  20. {
  21. protected $render;
  22. protected $ignoreReport = [
  23. '\\think\\exception\\HttpException',
  24. ];
  25. public function setRender($render)
  26. {
  27. $this->render = $render;
  28. }
  29. /**
  30. * Report or log an exception.
  31. *
  32. * @param \Exception $exception
  33. * @return void
  34. */
  35. public function report(Exception $exception)
  36. {
  37. if (!$this->isIgnoreReport($exception)) {
  38. // 收集异常数据
  39. if (App::$debug) {
  40. $data = [
  41. 'file' => $exception->getFile(),
  42. 'line' => $exception->getLine(),
  43. 'message' => $this->getMessage($exception),
  44. 'code' => $this->getCode($exception),
  45. ];
  46. $log = "[{$data['code']}]{$data['message']}[{$data['file']}:{$data['line']}]";
  47. } else {
  48. $data = [
  49. 'code' => $this->getCode($exception),
  50. 'message' => $this->getMessage($exception),
  51. ];
  52. $log = "[{$data['code']}]{$data['message']}";
  53. }
  54. if (Config::get('record_trace')) {
  55. $log .= "\r\n" . $exception->getTraceAsString();
  56. }
  57. App::$debug && Log::record($log, 'error');
  58. }
  59. }
  60. protected function isIgnoreReport(Exception $exception)
  61. {
  62. foreach ($this->ignoreReport as $class) {
  63. if ($exception instanceof $class) {
  64. return true;
  65. }
  66. }
  67. return false;
  68. }
  69. /**
  70. * Render an exception into an HTTP response.
  71. *
  72. * @param \Exception $e
  73. * @return Response
  74. */
  75. public function render(Exception $e)
  76. {
  77. if ($this->render && $this->render instanceof \Closure) {
  78. $result = call_user_func_array($this->render, [$e]);
  79. if ($result) {
  80. return $result;
  81. }
  82. }
  83. if ($e instanceof HttpException) {
  84. return $this->renderHttpException($e);
  85. } else {
  86. return $this->convertExceptionToResponse($e);
  87. }
  88. }
  89. /**
  90. * @param Output $output
  91. * @param Exception $e
  92. */
  93. public function renderForConsole(Output $output, Exception $e)
  94. {
  95. if (App::$debug) {
  96. $output->setVerbosity(Output::VERBOSITY_DEBUG);
  97. }
  98. $output->renderException($e);
  99. }
  100. /**
  101. * @param HttpException $e
  102. * @return Response
  103. */
  104. protected function renderHttpException(HttpException $e)
  105. {
  106. $status = $e->getStatusCode();
  107. $template = Config::get('http_exception_template');
  108. // if (!App::$debug && !empty($template[$status])) {
  109. if (!empty($template[$status])) { // 不管是调试模式 或 运营模式,都404页面跳转 by 小虎哥
  110. return Response::create($template[$status], 'view', $status)->assign(['e' => $e]);
  111. } else {
  112. return $this->convertExceptionToResponse($e);
  113. }
  114. }
  115. /**
  116. * @param Exception $exception
  117. * @return Response
  118. */
  119. protected function convertExceptionToResponse(Exception $exception)
  120. {
  121. // 收集异常数据
  122. if (App::$debug) {
  123. // 调试模式,获取详细的错误信息
  124. $data = [
  125. 'name' => get_class($exception),
  126. 'file' => $exception->getFile(),
  127. 'line' => $exception->getLine(),
  128. 'message' => $this->getMessage($exception),
  129. 'trace' => $exception->getTrace(),
  130. 'code' => $this->getCode($exception),
  131. 'source' => $this->getSourceCode($exception),
  132. 'datas' => $this->getExtendData($exception),
  133. 'tables' => [
  134. 'GET Data' => $_GET,
  135. 'POST Data' => $_POST,
  136. 'Files' => $_FILES,
  137. 'Cookies' => $_COOKIE,
  138. 'Session' => isset($_SESSION) ? $_SESSION : [],
  139. 'Server/Request Data' => $_SERVER,
  140. 'Environment Variables' => $_ENV,
  141. 'ThinkPHP Constants' => $this->getConst(),
  142. ],
  143. ];
  144. } else {
  145. // 部署模式仅显示 Code 和 Message
  146. $data = [
  147. 'code' => $this->getCode($exception),
  148. 'file' => $exception->getFile(),
  149. 'line' => $exception->getLine(),
  150. 'message' => $this->getMessage($exception),
  151. ];
  152. if (!Config::get('show_error_msg')) {
  153. // 不显示详细错误信息
  154. $data['message'] = Config::get('error_message');
  155. }
  156. }
  157. $data['copyright'] = '';
  158. /*提高错误提示的友好性 by 小虎哥*/
  159. $exceptioncode = Config::get('error_code.exception');
  160. if (!empty($exceptioncode[$data['code']])) {
  161. $data['message'] = $exceptioncode[$data['code']];
  162. $data['code'] = 'eyou';
  163. }
  164. /*end*/
  165. //保留一层
  166. while (ob_get_level() > 1) {
  167. ob_end_clean();
  168. }
  169. $data['echo'] = ob_get_clean();
  170. ob_start();
  171. extract($data);
  172. /*调试模式与运营模式的错误页面不同 by 小虎哥*/
  173. if (true === Config::get('app_debug') || defined('BIND_MODULE')) {
  174. include Config::get('exception_tmpl');
  175. }
  176. else {
  177. include Config::get('error_tmpl');
  178. }
  179. /*--end*/
  180. // 获取并清空缓存
  181. $content = ob_get_clean();
  182. $response = new Response($content, 'html');
  183. if ($exception instanceof HttpException) {
  184. $statusCode = $exception->getStatusCode();
  185. $response->header($exception->getHeaders());
  186. }
  187. if (!isset($statusCode)) {
  188. $statusCode = 500;
  189. }
  190. $response->code($statusCode);
  191. return $response;
  192. }
  193. /**
  194. * 获取错误编码
  195. * ErrorException则使用错误级别作为错误编码
  196. * @param \Exception $exception
  197. * @return integer 错误编码
  198. */
  199. protected function getCode(Exception $exception)
  200. {
  201. $code = $exception->getCode();
  202. if (!$code && $exception instanceof ErrorException) {
  203. $code = $exception->getSeverity();
  204. }
  205. return $code;
  206. }
  207. /**
  208. * 获取错误信息
  209. * ErrorException则使用错误级别作为错误编码
  210. * @param \Exception $exception
  211. * @return string 错误信息
  212. */
  213. protected function getMessage(Exception $exception)
  214. {
  215. $message = $exception->getMessage();
  216. if (IS_CLI) {
  217. return $message;
  218. }
  219. if (strpos($message, ':')) {
  220. $name = strstr($message, ':', true);
  221. $message = Lang::has($name) ? Lang::get($name) . strstr($message, ':') : $message;
  222. } elseif (strpos($message, ',')) {
  223. $name = strstr($message, ',', true);
  224. $message = Lang::has($name) ? Lang::get($name) . ':' . substr(strstr($message, ','), 1) : $message;
  225. } elseif (Lang::has($message)) {
  226. $message = Lang::get($message);
  227. }
  228. return $message;
  229. }
  230. /**
  231. * 获取出错文件内容
  232. * 获取错误的前9行和后9行
  233. * @param \Exception $exception
  234. * @return array 错误文件内容
  235. */
  236. protected function getSourceCode(Exception $exception)
  237. {
  238. // 读取前9行和后9行
  239. $line = $exception->getLine();
  240. $first = ($line - 9 > 0) ? $line - 9 : 1;
  241. try {
  242. $contents = file($exception->getFile());
  243. $source = [
  244. 'first' => $first,
  245. 'source' => array_slice($contents, $first - 1, 19),
  246. ];
  247. } catch (Exception $e) {
  248. $source = [];
  249. }
  250. return $source;
  251. }
  252. /**
  253. * 获取异常扩展信息
  254. * 用于非调试模式html返回类型显示
  255. * @param \Exception $exception
  256. * @return array 异常类定义的扩展数据
  257. */
  258. protected function getExtendData(Exception $exception)
  259. {
  260. $data = [];
  261. if ($exception instanceof \think\Exception) {
  262. $data = $exception->getData();
  263. }
  264. return $data;
  265. }
  266. /**
  267. * 获取常量列表
  268. * @return array 常量列表
  269. */
  270. private static function getConst()
  271. {
  272. return get_defined_constants(true)['user'];
  273. }
  274. }