ACC SHELL
<?php
/**
* This file is part of the Nette Framework (http://nette.org)
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
* @package Nette\Diagnostics
*/
/**
* Logger.
*
* @author David Grudl
* @package Nette\Diagnostics
*/
class NLogger extends NObject
{
const DEBUG = 'debug',
INFO = 'info',
WARNING = 'warning',
ERROR = 'error',
CRITICAL = 'critical';
/** @var int interval for sending email is 2 days */
public static $emailSnooze = 172800;
/** @var callable handler for sending emails */
public $mailer = array(__CLASS__, 'defaultMailer');
/** @var string name of the directory where errors should be logged; FALSE means that logging is disabled */
public $directory;
/** @var string email to sent error notifications */
public $email;
/**
* Logs message or exception to file and sends email notification.
* @param string|array
* @param int one of constant INFO, WARNING, ERROR (sends email), CRITICAL (sends email)
* @return bool was successful?
*/
public function log($message, $priority = self::INFO)
{
if (!is_dir($this->directory)) {
throw new DirectoryNotFoundException("Directory '$this->directory' is not found or is not directory.");
}
if (is_array($message)) {
$message = implode(' ', $message);
}
$res = error_log(trim($message) . PHP_EOL, 3, $this->directory . '/' . strtolower($priority) . '.log');
if (($priority === self::ERROR || $priority === self::CRITICAL) && $this->email && $this->mailer
&& @filemtime($this->directory . '/email-sent') + self::$emailSnooze < time() // @ - file may not exist
&& @file_put_contents($this->directory . '/email-sent', 'sent') // @ - file may not be writable
) {
NCallback::create($this->mailer)->invoke($message, $this->email);
}
return $res;
}
/**
* Default mailer.
* @param string
* @param string
* @return void
*/
public static function defaultMailer($message, $email)
{
$host = php_uname('n');
foreach (array('HTTP_HOST','SERVER_NAME', 'HOSTNAME') as $item) {
if (isset($_SERVER[$item])) {
$host = preg_replace('#[^\w.-]+#', '', $_SERVER[$item]); break;
}
}
$parts = str_replace(
array("\r\n", "\n"),
array("\n", PHP_EOL),
array(
'headers' => implode("\n", array(
"From: noreply@$host",
'X-Mailer: Nette Framework',
'Content-Type: text/plain; charset=UTF-8',
'Content-Transfer-Encoding: 8bit',
)) . "\n",
'subject' => "PHP: An error occurred on the server $host",
'body' => "[" . @date('Y-m-d H:i:s') . "] $message", // @ - timezone may not be set
)
);
mail($email, $parts['subject'], $parts['body'], $parts['headers']);
}
}
ACC SHELL 2018