init(); } public function init() { } /** * @return string */ public static function className() { return get_called_class(); } /** * @param $name * @param $value * * @throws Exception */ public function __set($name, $value) { $method = 'set' . ucfirst($name); if (method_exists($this, $method)) { $this->{$method}($value); } else { $this->error('set ' . $name . ' not exists ' . get_called_class()); throw new Exception('The set name ' . $name . ' not find in class ' . get_class($this)); } } /** * @param $name * * @return mixed * @throws Exception */ public function __get($name) { $method = 'get' . ucfirst($name); if (method_exists($this, $method)) { return $this->$method(); } else { throw new Exception('The get name ' . $name . ' not find in class ' . get_class($this)); } } /** * @param $name * @param $arguments * * @return mixed * @throws Exception */ public function __call($name, $arguments) { if (!method_exists($this, $name)) { throw new Exception("Not find " . get_called_class() . "::($name)"); } else { $result = $this->$name(...$arguments); if (method_exists($this, 'defer')) { $this->defer(); } return $result; } } /** * @param $message * @param string $model * @return bool * @throws Exception */ public function addError($message, $model = 'app') { if ($message instanceof Exception) { $this->error($message->getMessage(), $message->getFile(), $message->getLine()); } else { if (!is_string($message)) { $message = json_encode($message, JSON_UNESCAPED_UNICODE); } $this->error($message); } return FALSE; } /** * @param string $message * @param string $method * @param string $file * @throws */ public function debug($message, string $method = __METHOD__, string $file = __FILE__) { if (!is_string($message)) { $message = print_r($message, true); } echo "\033[35m[DEBUG][" . date('Y-m-d H:i:s') . ']: ' . $message . "\033[0m"; echo PHP_EOL; Logger::trance($message, 'debug'); } /** * @param string $message * @param string $method * @param string $file * @throws */ public function info($message, string $method = __METHOD__, string $file = __FILE__) { if (!is_string($message)) { $message = print_r($message, true); } echo "\033[34m[INFO][" . date('Y-m-d H:i:s') . ']: ' . $message . "\033[0m"; echo PHP_EOL; Logger::trance($message, 'info'); } /** * @param string $message * @param string $method * @param string $file * @throws */ public function success($message, string $method = __METHOD__, string $file = __FILE__) { if (!is_string($message)) { $message = print_r($message, true); } echo "\033[36m[SUCCESS][" . date('Y-m-d H:i:s') . ']: ' . $message . "\033[0m"; echo PHP_EOL; Logger::trance($message, 'success'); } /** * @param string $message * @param string $method * @param string $file * @throws */ public function warning($message, string $method = __METHOD__, string $file = __FILE__) { if (!is_string($message)) { $message = print_r($message, true); } echo "\033[33m[SUCCESS][" . date('Y-m-d H:i:s') . ']: ' . $message . "\033[0m"; echo PHP_EOL; Logger::trance($message, 'warning'); } /** * @param string $message * @param string|null $method * @param string|null $file * @throws Exception */ public function error($message, string $method = null, string $file = null) { if (!empty($file)) { echo "\033[41;37m[ERROR][" . date('Y-m-d H:i:s') . ']: ' . $file . "\033[0m"; echo PHP_EOL; } if (!is_string($message)) { $message = print_r($message, true); } echo "\033[41;37m[ERROR][" . date('Y-m-d H:i:s') . ']: ' . (empty($method) ? '' : $method . ': ') . $message . "\033[0m"; echo PHP_EOL; Logger::error($message, 'error'); } }