| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 | <?php// +----------------------------------------------------------------------// | ThinkPHP [ WE CAN DO IT JUST THINK ]// +----------------------------------------------------------------------// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.// +----------------------------------------------------------------------// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )// +----------------------------------------------------------------------// | Author: liu21st <liu21st@gmail.com>// +----------------------------------------------------------------------namespace think;class Log implements LoggerInterface{    const EMERGENCY = 'emergency';    const ALERT     = 'alert';    const CRITICAL  = 'critical';    const ERROR     = 'error';    const WARNING   = 'warning';    const NOTICE    = 'notice';    const INFO      = 'info';    const DEBUG     = 'debug';    const SQL       = 'sql';    /**     * 日志信息     * @var array     */    protected $log = [];    /**     * 配置参数     * @var array     */    protected $config = [];    /**     * 日志写入驱动     * @var object     */    protected $driver;    /**     * 日志授权key     * @var string     */    protected $key;    /**     * 是否允许日志写入     * @var bool     */    protected $allowWrite = true;    /**     * 应用对象     * @var App     */    protected $app;    public function __construct(App $app)    {        $this->app = $app;    }    public static function __make(App $app, Config $config)    {        return (new static($app))->init($config->pull('log'));    }    /**     * 日志初始化     * @access public     * @param  array $config     * @return $this     */    public function init($config = [])    {        $type = isset($config['type']) ? $config['type'] : 'File';        $this->config = $config;        unset($config['type']);        if (!empty($config['close'])) {            $this->allowWrite = false;        }        $this->driver = Loader::factory($type, '\\think\\log\\driver\\', $config);        return $this;    }    /**     * 获取日志信息     * @access public     * @param  string $type 信息类型     * @return array     */    public function getLog($type = '')    {        return $type ? $this->log[$type] : $this->log;    }    /**     * 记录日志信息     * @access public     * @param  mixed  $msg       日志信息     * @param  string $type      日志级别     * @param  array  $context   替换内容     * @return $this     */    public function record($msg, $type = 'info', array $context = [])    {        if (!$this->allowWrite) {            return;        }        if (is_string($msg) && !empty($context)) {            $replace = [];            foreach ($context as $key => $val) {                $replace['{' . $key . '}'] = $val;            }            $msg = strtr($msg, $replace);        }        if (PHP_SAPI == 'cli') {            if (empty($this->config['level']) || in_array($type, $this->config['level'])) {                // 命令行日志实时写入                $this->write($msg, $type, true);            }        } else {            $this->log[$type][] = $msg;        }        return $this;    }    /**     * 清空日志信息     * @access public     * @return $this     */    public function clear()    {        $this->log = [];        return $this;    }    /**     * 当前日志记录的授权key     * @access public     * @param  string  $key  授权key     * @return $this     */    public function key($key)    {        $this->key = $key;        return $this;    }    /**     * 检查日志写入权限     * @access public     * @param  array  $config  当前日志配置参数     * @return bool     */    public function check($config)    {        if ($this->key && !empty($config['allow_key']) && !in_array($this->key, $config['allow_key'])) {            return false;        }        return true;    }    /**     * 关闭本次请求日志写入     * @access public     * @return $this     */    public function close()    {        $this->allowWrite = false;        $this->log        = [];        return $this;    }    /**     * 保存调试信息     * @access public     * @return bool     */    public function save()    {        if (empty($this->log) || !$this->allowWrite) {            return true;        }        if (!$this->check($this->config)) {            // 检测日志写入权限            return false;        }        $log = [];        foreach ($this->log as $level => $info) {            if (!$this->app->isDebug() && 'debug' == $level) {                continue;            }            if (empty($this->config['level']) || in_array($level, $this->config['level'])) {                $log[$level] = $info;                $this->app['hook']->listen('log_level', [$level, $info]);            }        }        $result = $this->driver->save($log, true);        if ($result) {            $this->log = [];        }        return $result;    }    /**     * 实时写入日志信息 并支持行为     * @access public     * @param  mixed  $msg   调试信息     * @param  string $type  日志级别     * @param  bool   $force 是否强制写入     * @return bool     */    public function write($msg, $type = 'info', $force = false)    {        // 封装日志信息        if (empty($this->config['level'])) {            $force = true;        }        if (true === $force || in_array($type, $this->config['level'])) {            $log[$type][] = $msg;        } else {            return false;        }        // 监听log_write        $this->app['hook']->listen('log_write', $log);        // 写入日志        return $this->driver->save($log, false);    }    /**     * 记录日志信息     * @access public     * @param  string $level     日志级别     * @param  mixed  $message   日志信息     * @param  array  $context   替换内容     * @return void     */    public function log($level, $message, array $context = [])    {        $this->record($message, $level, $context);    }    /**     * 记录emergency信息     * @access public     * @param  mixed  $message   日志信息     * @param  array  $context   替换内容     * @return void     */    public function emergency($message, array $context = [])    {        $this->log(__FUNCTION__, $message, $context);    }    /**     * 记录警报信息     * @access public     * @param  mixed  $message   日志信息     * @param  array  $context   替换内容     * @return void     */    public function alert($message, array $context = [])    {        $this->log(__FUNCTION__, $message, $context);    }    /**     * 记录紧急情况     * @access public     * @param  mixed  $message   日志信息     * @param  array  $context   替换内容     * @return void     */    public function critical($message, array $context = [])    {        $this->log(__FUNCTION__, $message, $context);    }    /**     * 记录错误信息     * @access public     * @param  mixed  $message   日志信息     * @param  array  $context   替换内容     * @return void     */    public function error($message, array $context = [])    {        $this->log(__FUNCTION__, $message, $context);    }    /**     * 记录warning信息     * @access public     * @param  mixed  $message   日志信息     * @param  array  $context   替换内容     * @return void     */    public function warning($message, array $context = [])    {        $this->log(__FUNCTION__, $message, $context);    }    /**     * 记录notice信息     * @access public     * @param  mixed  $message   日志信息     * @param  array  $context   替换内容     * @return void     */    public function notice($message, array $context = [])    {        $this->log(__FUNCTION__, $message, $context);    }    /**     * 记录一般信息     * @access public     * @param  mixed  $message   日志信息     * @param  array  $context   替换内容     * @return void     */    public function info($message, array $context = [])    {        $this->log(__FUNCTION__, $message, $context);    }    /**     * 记录调试信息     * @access public     * @param  mixed  $message   日志信息     * @param  array  $context   替换内容     * @return void     */    public function debug($message, array $context = [])    {        $this->log(__FUNCTION__, $message, $context);    }    /**     * 记录sql信息     * @access public     * @param  mixed  $message   日志信息     * @param  array  $context   替换内容     * @return void     */    public function sql($message, array $context = [])    {        $this->log(__FUNCTION__, $message, $context);    }    public function __debugInfo()    {        $data = get_object_vars($this);        unset($data['app']);        return $data;    }}
 |