Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Log.php 6.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. namespace think;
  12. use think\exception\ClassNotFoundException;
  13. /**
  14. * Class Log
  15. * @package think
  16. *
  17. * @method void log($msg) static 记录一般日志
  18. * @method void error($msg) static 记录错误日志
  19. * @method void info($msg) static 记录一般信息日志
  20. * @method void sql($msg) static 记录 SQL 查询日志
  21. * @method void notice($msg) static 记录提示日志
  22. * @method void alert($msg) static 记录报警日志
  23. */
  24. class Log
  25. {
  26. const LOG = 'log';
  27. const ERROR = 'error';
  28. const INFO = 'info';
  29. const SQL = 'sql';
  30. const NOTICE = 'notice';
  31. const ALERT = 'alert';
  32. const DEBUG = 'debug';
  33. /**
  34. * @var array 日志信息
  35. */
  36. protected static $log = [];
  37. /**
  38. * @var array 配置参数
  39. */
  40. protected static $config = [];
  41. /**
  42. * @var array 日志类型
  43. */
  44. protected static $type = ['log', 'error', 'info', 'sql', 'notice', 'alert', 'debug'];
  45. /**
  46. * @var log\driver\File|log\driver\Test|log\driver\Socket 日志写入驱动
  47. */
  48. protected static $driver;
  49. /**
  50. * @var string 当前日志授权 key
  51. */
  52. protected static $key;
  53. /**
  54. * 日志初始化
  55. * @access public
  56. * @param array $config 配置参数
  57. * @return void
  58. */
  59. public static function init($config = [])
  60. {
  61. if (!empty($config['switch'])) {
  62. $type = isset($config['type']) ? $config['type'] : 'File';
  63. $class = false !== strpos($type, '\\') ? $type : '\\think\\log\\driver\\' . ucwords($type);
  64. self::$config = $config;
  65. unset($config['type']);
  66. if (class_exists($class)) {
  67. self::$driver = new $class($config);
  68. } else {
  69. throw new ClassNotFoundException('class not exists:' . $class, $class);
  70. }
  71. // 记录初始化信息
  72. App::$debug && Log::record('[ LOG ] INIT ' . $type, 'info');
  73. }
  74. }
  75. /**
  76. * 获取日志信息
  77. * @access public
  78. * @param string $type 信息类型
  79. * @return array|string
  80. */
  81. public static function getLog($type = '')
  82. {
  83. return $type ? self::$log[$type] : self::$log;
  84. }
  85. /**
  86. * 记录调试信息
  87. * @access public
  88. * @param mixed $msg 调试信息
  89. * @param string $type 信息类型
  90. * @return void
  91. */
  92. public static function record($msg, $type = 'log')
  93. {
  94. if (empty(self::$config)) {
  95. self::$config = Config::get('log');
  96. }
  97. if (!empty(self::$config['switch'])) {
  98. self::$log[$type][] = $msg;
  99. // 命令行下面日志写入改进
  100. if (IS_CLI && count(self::$log[$type]) > 100) { // 定期100条批量保存一次日志到磁盘,同时释放Log by 小虎哥
  101. self::save();
  102. }
  103. }
  104. }
  105. /**
  106. * 清空日志信息
  107. * @access public
  108. * @return void
  109. */
  110. public static function clear()
  111. {
  112. self::$log = [];
  113. }
  114. /**
  115. * 设置当前日志记录的授权 key
  116. * @access public
  117. * @param string $key 授权 key
  118. * @return void
  119. */
  120. public static function key($key)
  121. {
  122. self::$key = $key;
  123. }
  124. /**
  125. * 检查日志写入权限
  126. * @access public
  127. * @param array $config 当前日志配置参数
  128. * @return bool
  129. */
  130. public static function check($config)
  131. {
  132. return !self::$key || empty($config['allow_key']) || in_array(self::$key, $config['allow_key']);
  133. }
  134. /**
  135. * 保存调试信息
  136. * @access public
  137. * @return bool
  138. */
  139. public static function save()
  140. {
  141. // 没有需要保存的记录则直接返回
  142. if (empty(self::$log)) {
  143. return true;
  144. }
  145. if (is_null(self::$driver)) {
  146. // 是否开启日志记录 by 小虎哥
  147. $log_config = !empty(self::$config) ? self::$config : Config::get('log');
  148. if(empty($log_config['switch'])){
  149. self::clear();
  150. return false;
  151. }
  152. self::init($log_config);
  153. }
  154. // 检测日志写入权限
  155. if (!self::check(self::$config)) {
  156. return false;
  157. }
  158. if (empty(self::$config['level'])) {
  159. // 获取全部日志
  160. $log = self::$log;
  161. if (!App::$debug && isset($log['debug'])) {
  162. unset($log['debug']);
  163. }
  164. } else {
  165. // 记录允许级别
  166. $log = [];
  167. foreach (self::$config['level'] as $level) {
  168. if (isset(self::$log[$level])) {
  169. $log[$level] = self::$log[$level];
  170. }
  171. }
  172. }
  173. if ($result = self::$driver->save($log, true)) {
  174. self::$log = [];
  175. }
  176. Hook::listen('log_write_done', $log);
  177. return $result;
  178. }
  179. /**
  180. * 实时写入日志信息 并支持行为
  181. * @access public
  182. * @param mixed $msg 调试信息
  183. * @param string $type 信息类型
  184. * @param bool $force 是否强制写入
  185. * @return bool
  186. */
  187. public static function write($msg, $type = 'log', $force = false)
  188. {
  189. $log = self::$log;
  190. // 如果不是强制写入,而且信息类型不在可记录的类别中则直接返回 false 不做记录
  191. if (true !== $force && !empty(self::$config['level']) && !in_array($type, self::$config['level'])) {
  192. return false;
  193. }
  194. // 封装日志信息
  195. $log[$type][] = $msg;
  196. // 监听 log_write
  197. Hook::listen('log_write', $log);
  198. is_null(self::$driver) && self::init(Config::get('log'));
  199. // 写入日志
  200. if ($result = self::$driver->save($log, false)) {
  201. self::$log = [];
  202. }
  203. return $result;
  204. }
  205. /**
  206. * 静态方法调用
  207. * @access public
  208. * @param string $method 调用方法
  209. * @param mixed $args 参数
  210. * @return void
  211. */
  212. public static function __callStatic($method, $args)
  213. {
  214. if (in_array($method, self::$type)) {
  215. array_push($args, $method);
  216. call_user_func_array('\\think\\Log::record', $args);
  217. }
  218. }
  219. }