Target.php 7.59 KB
Newer Older
w  
Qiang Xue committed
1 2 3 4 5
<?php
/**
 * Target class file.
 *
 * @link http://www.yiiframework.com/
Qiang Xue committed
6
 * @copyright Copyright &copy; 2008 Yii Software LLC
w  
Qiang Xue committed
7 8 9 10 11 12 13 14
 * @license http://www.yiiframework.com/license/
 */

namespace yii\logging;

/**
 * Target is the base class for all log target classes.
 *
w  
Qiang Xue committed
15 16 17
 * A log target object will filter the messages logged by [[Logger]] according
 * to its [[levels]] and [[categories]] properties. It may also export the filtered
 * messages to specific destination defined by the target, such as emails, files.
w  
Qiang Xue committed
18
 *
Qiang Xue committed
19 20 21
 * Level filter and category filter are combinatorial, i.e., only messages
 * satisfying both filter conditions will be handled. Additionally, you
 * may specify [[except]] to exclude messages of certain categories.
w  
Qiang Xue committed
22 23 24 25
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @since 2.0
 */
Qiang Xue committed
26
abstract class Target extends \yii\base\Component
w  
Qiang Xue committed
27 28 29 30 31 32
{
	/**
	 * @var boolean whether to enable this log target. Defaults to true.
	 */
	public $enabled = true;
	/**
w  
Qiang Xue committed
33 34 35 36 37 38 39
	 * @var array list of message levels that this target is interested in. Defaults to empty, meaning all levels.
	 */
	public $levels = array();
	/**
	 * @var array list of message categories that this target is interested in. Defaults to empty, meaning all categories.
	 * You can use an asterisk at the end of a category so that the category may be used to
	 * match those categories sharing the same common prefix. For example, 'yii\db\*' will match
Qiang Xue committed
40
	 * categories starting with 'yii\db\', such as 'yii\db\Connection'.
w  
Qiang Xue committed
41 42 43 44 45 46 47
	 */
	public $categories = array();
	/**
	 * @var array list of message categories that this target is NOT interested in. Defaults to empty, meaning no uninteresting messages.
	 * If this property is not empty, then any category listed here will be excluded from [[categories]].
	 * You can use an asterisk at the end of a category so that the category can be used to
	 * match those categories sharing the same common prefix. For example, 'yii\db\*' will match
Qiang Xue committed
48
	 * categories starting with 'yii\db\', such as 'yii\db\Connection'.
w  
Qiang Xue committed
49 50
	 * @see categories
	 */
Qiang Xue committed
51
	public $except = array();
w  
Qiang Xue committed
52 53
	/**
	 * @var boolean whether to prefix each log message with the current session ID. Defaults to false.
w  
Qiang Xue committed
54
	 */
w  
Qiang Xue committed
55
	public $prefixSession = false;
w  
Qiang Xue committed
56
	/**
w  
Qiang Xue committed
57 58
	 * @var boolean whether to prefix each log message with the current user name and ID. Defaults to false.
	 * @see \yii\web\User
w  
Qiang Xue committed
59
	 */
w  
Qiang Xue committed
60
	public $prefixUser = false;
w  
Qiang Xue committed
61
	/**
Qiang Xue committed
62
	 * @var boolean whether to log a message containing the current user name and ID. Defaults to false.
w  
Qiang Xue committed
63
	 * @see \yii\web\User
w  
Qiang Xue committed
64
	 */
w  
Qiang Xue committed
65
	public $logUser = false;
w  
Qiang Xue committed
66
	/**
w  
Qiang Xue committed
67 68 69
	 * @var array list of the PHP predefined variables that should be logged in a message.
	 * Note that a variable must be accessible via `$GLOBALS`. Otherwise it won't be logged.
	 * Defaults to `array('_GET', '_POST', '_FILES', '_COOKIE', '_SESSION', '_SERVER')`.
w  
Qiang Xue committed
70
	 */
w  
Qiang Xue committed
71
	public $logVars = array('_GET', '_POST', '_FILES', '_COOKIE', '_SESSION', '_SERVER');
Qiang Xue committed
72 73 74 75 76 77
	/**
	 * @var boolean whether this target should export the collected messages to persistent storage
	 * (e.g. DB, email) whenever [[processMessages()]] is called. Defaults to true. If false,
	 * the collected messages will be stored in [[messages]] without any further processing.
	 */
	public $autoExport = true;
w  
Qiang Xue committed
78
	/**
w  
Qiang Xue committed
79
	 * @var array the messages that are retrieved from the logger so far by this log target.
Qiang Xue committed
80
	 * @see autoExport
w  
Qiang Xue committed
81
	 */
w  
Qiang Xue committed
82
	public $messages = array();
w  
Qiang Xue committed
83 84

	/**
w  
Qiang Xue committed
85 86 87 88
	 * Exports log messages to a specific destination.
	 * Child classes must implement this method. Note that you may need
	 * to clean up [[messages]] in this method to avoid re-exporting messages.
	 * @param boolean $final whether this method is called at the end of the current application
w  
Qiang Xue committed
89
	 */
w  
Qiang Xue committed
90
	abstract public function exportMessages($final);
w  
Qiang Xue committed
91 92

	/**
w  
Qiang Xue committed
93 94 95 96 97 98
	 * Processes the given log messages.
	 * This method will filter the given messages with [[levels]] and [[categories]].
	 * And if requested, it will also export the filtering result to specific medium (e.g. email).
	 * @param array $messages log messages to be processed. See [[Logger::messages]] for the structure
	 * of each message.
	 * @param boolean $final whether this method is called at the end of the current application
w  
Qiang Xue committed
99
	 */
Qiang Xue committed
100
	public function processMessages($messages, $final)
w  
Qiang Xue committed
101
	{
w  
Qiang Xue committed
102 103 104
		$messages = $this->filterMessages($messages);
		$this->messages = array_merge($this->messages, $messages);

Qiang Xue committed
105
		if (!empty($this->messages) && ($this->autoExport || $final)) {
w  
Qiang Xue committed
106 107
			$this->prepareExport($final);
			$this->exportMessages($final);
Qiang Xue committed
108
			$this->messages = array();
w  
Qiang Xue committed
109
		}
w  
Qiang Xue committed
110 111 112
	}

	/**
w  
Qiang Xue committed
113
	 * Prepares the [[messages]] for exporting.
Qiang Xue committed
114
	 * This method will modify each message by prepending extra information
w  
Qiang Xue committed
115 116 117 118
	 * if [[prefixSession]] and/or [[prefixUser]] are set true.
	 * It will also add an additional message showing context information if
	 * [[logUser]] and/or [[logVars]] are set.
	 * @param boolean $final whether this method is called at the end of the current application
w  
Qiang Xue committed
119
	 */
w  
Qiang Xue committed
120
	protected function prepareExport($final)
w  
Qiang Xue committed
121
	{
w  
Qiang Xue committed
122 123 124 125
		$prefix = array();
		if ($this->prefixSession && ($id = session_id()) !== '') {
			$prefix[] = "[$id]";
		}
Qiang Xue committed
126
		if ($this->prefixUser && ($user = \Yii::$application->getComponent('user', false)) !== null) {
w  
Qiang Xue committed
127 128 129 130 131 132 133 134 135 136 137
			$prefix[] = '[' . $user->getName() . ']';
			$prefix[] = '[' . $user->getId() . ']';
		}
		if ($prefix !== array()) {
			$prefix = implode(' ', $prefix);
			foreach ($this->messages as $i => $message) {
				$this->messages[$i][0] = $prefix . ' ' . $this->messages[$i][0];
			}
		}
		if ($final && ($context = $this->getContextMessage()) !== '') {
			$this->messages[] = array($context, Logger::LEVEL_INFO, 'application', YII_BEGIN_TIME);
w  
Qiang Xue committed
138 139 140
		}
	}

w  
Qiang Xue committed
141 142 143 144 145 146
	/**
	 * Generates the context information to be logged.
	 * The default implementation will dump user information, system variables, etc.
	 * @return string the context information. If an empty string, it means no context information.
	 */
	protected function getContextMessage()
w  
Qiang Xue committed
147
	{
w  
Qiang Xue committed
148
		$context = array();
Qiang Xue committed
149
		if ($this->logUser && ($user = \Yii::$application->getComponent('user', false)) !== null) {
w  
Qiang Xue committed
150 151 152 153 154 155 156
			$context[] = 'User: ' . $user->getName() . ' (ID: ' . $user->getId() . ')';
		}

		foreach ($this->logVars as $name) {
			if (!empty($GLOBALS[$name])) {
				$context[] = "\${$name} = " . var_export($GLOBALS[$name], true);
			}
w  
Qiang Xue committed
157
		}
w  
Qiang Xue committed
158 159

		return implode("\n\n", $context);
w  
Qiang Xue committed
160 161 162
	}

	/**
w  
Qiang Xue committed
163 164 165 166 167
	 * Filters the given messages according to their categories and levels.
	 * @param array $messages messages to be filtered
	 * @return array the filtered messages.
	 * @see filterByCategory
	 * @see filterByLevel
w  
Qiang Xue committed
168
	 */
w  
Qiang Xue committed
169
	protected function filterMessages($messages)
w  
Qiang Xue committed
170
	{
w  
Qiang Xue committed
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
		foreach ($messages as $i => $message) {
			if (!empty($this->levels) && !in_array($message[1], $this->levels)) {
				unset($messages[$i]);
				continue;
			}

			$matched = empty($this->categories);
			foreach ($this->categories as $category) {
				$prefix = rtrim($category, '*');
				if (strpos($message[2], $prefix) === 0 && ($message[2] === $category || $prefix !== $category)) {
					$matched = true;
					break;
				}
			}

			if ($matched) {
Qiang Xue committed
187
				foreach ($this->except as $category) {
w  
Qiang Xue committed
188 189 190 191 192 193 194 195 196 197 198 199 200
					$prefix = rtrim($category, '*');
					foreach ($messages as $i => $message) {
						if (strpos($message[2], $prefix) === 0 && ($message[2] === $category || $prefix !== $category)) {
							$matched = false;
							break;
						}
					}
				}
			}

			if (!$matched) {
				unset($messages[$i]);
			}
w  
Qiang Xue committed
201
		}
w  
Qiang Xue committed
202
		return $messages;
w  
Qiang Xue committed
203 204 205
	}

	/**
w  
Qiang Xue committed
206 207 208 209
	 * Formats a log message.
	 * The message structure follows that in [[Logger::messages]].
	 * @param array $message the log message to be formatted.
	 * @return string the formatted message
w  
Qiang Xue committed
210
	 */
w  
Qiang Xue committed
211
	public function formatMessage($message)
w  
Qiang Xue committed
212
	{
Qiang Xue committed
213 214
		$s = is_string($message[0]) ? $message[0] : var_export($message[0], true);
		return date('Y/m/d H:i:s', $message[3]) . " [{$message[1]}] [{$message[2]}] $s\n";
w  
Qiang Xue committed
215 216
	}
}