class-wc-log-handler-db.php
5 years ago
class-wc-log-handler-email.php
5 years ago
class-wc-log-handler-file.php
5 years ago
class-wc-log-handler-file.php
447 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Class WC_Log_Handler_File file. |
| 4 | * |
| 5 | * @package WooCommerce\Log Handlers |
| 6 | */ |
| 7 | |
| 8 | use Automattic\Jetpack\Constants; |
| 9 | |
| 10 | if ( ! defined( 'ABSPATH' ) ) { |
| 11 | exit; // Exit if accessed directly. |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Handles log entries by writing to a file. |
| 16 | * |
| 17 | * @class WC_Log_Handler_File |
| 18 | * @version 1.0.0 |
| 19 | * @package WooCommerce\Classes\Log_Handlers |
| 20 | */ |
| 21 | class WC_Log_Handler_File extends WC_Log_Handler { |
| 22 | |
| 23 | /** |
| 24 | * Stores open file handles. |
| 25 | * |
| 26 | * @var array |
| 27 | */ |
| 28 | protected $handles = array(); |
| 29 | |
| 30 | /** |
| 31 | * File size limit for log files in bytes. |
| 32 | * |
| 33 | * @var int |
| 34 | */ |
| 35 | protected $log_size_limit; |
| 36 | |
| 37 | /** |
| 38 | * Cache logs that could not be written. |
| 39 | * |
| 40 | * If a log is written too early in the request, pluggable functions may be unavailable. These |
| 41 | * logs will be cached and written on 'plugins_loaded' action. |
| 42 | * |
| 43 | * @var array |
| 44 | */ |
| 45 | protected $cached_logs = array(); |
| 46 | |
| 47 | /** |
| 48 | * Constructor for the logger. |
| 49 | * |
| 50 | * @param int $log_size_limit Optional. Size limit for log files. Default 5mb. |
| 51 | */ |
| 52 | public function __construct( $log_size_limit = null ) { |
| 53 | if ( null === $log_size_limit ) { |
| 54 | $log_size_limit = 5 * 1024 * 1024; |
| 55 | } |
| 56 | |
| 57 | $this->log_size_limit = apply_filters( 'woocommerce_log_file_size_limit', $log_size_limit ); |
| 58 | |
| 59 | add_action( 'plugins_loaded', array( $this, 'write_cached_logs' ) ); |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Destructor. |
| 64 | * |
| 65 | * Cleans up open file handles. |
| 66 | */ |
| 67 | public function __destruct() { |
| 68 | foreach ( $this->handles as $handle ) { |
| 69 | if ( is_resource( $handle ) ) { |
| 70 | fclose( $handle ); // @codingStandardsIgnoreLine. |
| 71 | } |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * Handle a log entry. |
| 77 | * |
| 78 | * @param int $timestamp Log timestamp. |
| 79 | * @param string $level emergency|alert|critical|error|warning|notice|info|debug. |
| 80 | * @param string $message Log message. |
| 81 | * @param array $context { |
| 82 | * Additional information for log handlers. |
| 83 | * |
| 84 | * @type string $source Optional. Determines log file to write to. Default 'log'. |
| 85 | * @type bool $_legacy Optional. Default false. True to use outdated log format |
| 86 | * originally used in deprecated WC_Logger::add calls. |
| 87 | * } |
| 88 | * |
| 89 | * @return bool False if value was not handled and true if value was handled. |
| 90 | */ |
| 91 | public function handle( $timestamp, $level, $message, $context ) { |
| 92 | |
| 93 | if ( isset( $context['source'] ) && $context['source'] ) { |
| 94 | $handle = $context['source']; |
| 95 | } else { |
| 96 | $handle = 'log'; |
| 97 | } |
| 98 | |
| 99 | $entry = self::format_entry( $timestamp, $level, $message, $context ); |
| 100 | |
| 101 | return $this->add( $entry, $handle ); |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * Builds a log entry text from timestamp, level and message. |
| 106 | * |
| 107 | * @param int $timestamp Log timestamp. |
| 108 | * @param string $level emergency|alert|critical|error|warning|notice|info|debug. |
| 109 | * @param string $message Log message. |
| 110 | * @param array $context Additional information for log handlers. |
| 111 | * |
| 112 | * @return string Formatted log entry. |
| 113 | */ |
| 114 | protected static function format_entry( $timestamp, $level, $message, $context ) { |
| 115 | |
| 116 | if ( isset( $context['_legacy'] ) && true === $context['_legacy'] ) { |
| 117 | if ( isset( $context['source'] ) && $context['source'] ) { |
| 118 | $handle = $context['source']; |
| 119 | } else { |
| 120 | $handle = 'log'; |
| 121 | } |
| 122 | $message = apply_filters( 'woocommerce_logger_add_message', $message, $handle ); |
| 123 | $time = date_i18n( 'm-d-Y @ H:i:s' ); |
| 124 | $entry = "{$time} - {$message}"; |
| 125 | } else { |
| 126 | $entry = parent::format_entry( $timestamp, $level, $message, $context ); |
| 127 | } |
| 128 | |
| 129 | return $entry; |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * Open log file for writing. |
| 134 | * |
| 135 | * @param string $handle Log handle. |
| 136 | * @param string $mode Optional. File mode. Default 'a'. |
| 137 | * @return bool Success. |
| 138 | */ |
| 139 | protected function open( $handle, $mode = 'a' ) { |
| 140 | if ( $this->is_open( $handle ) ) { |
| 141 | return true; |
| 142 | } |
| 143 | |
| 144 | $file = self::get_log_file_path( $handle ); |
| 145 | |
| 146 | if ( $file ) { |
| 147 | if ( ! file_exists( $file ) ) { |
| 148 | $temphandle = @fopen( $file, 'w+' ); // @codingStandardsIgnoreLine. |
| 149 | if ( is_resource( $temphandle ) ) { |
| 150 | @fclose( $temphandle ); // @codingStandardsIgnoreLine. |
| 151 | |
| 152 | if ( Constants::is_defined( 'FS_CHMOD_FILE' ) ) { |
| 153 | @chmod( $file, FS_CHMOD_FILE ); // @codingStandardsIgnoreLine. |
| 154 | } |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | $resource = @fopen( $file, $mode ); // @codingStandardsIgnoreLine. |
| 159 | |
| 160 | if ( $resource ) { |
| 161 | $this->handles[ $handle ] = $resource; |
| 162 | return true; |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | return false; |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Check if a handle is open. |
| 171 | * |
| 172 | * @param string $handle Log handle. |
| 173 | * @return bool True if $handle is open. |
| 174 | */ |
| 175 | protected function is_open( $handle ) { |
| 176 | return array_key_exists( $handle, $this->handles ) && is_resource( $this->handles[ $handle ] ); |
| 177 | } |
| 178 | |
| 179 | /** |
| 180 | * Close a handle. |
| 181 | * |
| 182 | * @param string $handle Log handle. |
| 183 | * @return bool success |
| 184 | */ |
| 185 | protected function close( $handle ) { |
| 186 | $result = false; |
| 187 | |
| 188 | if ( $this->is_open( $handle ) ) { |
| 189 | $result = fclose( $this->handles[ $handle ] ); // @codingStandardsIgnoreLine. |
| 190 | unset( $this->handles[ $handle ] ); |
| 191 | } |
| 192 | |
| 193 | return $result; |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * Add a log entry to chosen file. |
| 198 | * |
| 199 | * @param string $entry Log entry text. |
| 200 | * @param string $handle Log entry handle. |
| 201 | * |
| 202 | * @return bool True if write was successful. |
| 203 | */ |
| 204 | protected function add( $entry, $handle ) { |
| 205 | $result = false; |
| 206 | |
| 207 | if ( $this->should_rotate( $handle ) ) { |
| 208 | $this->log_rotate( $handle ); |
| 209 | } |
| 210 | |
| 211 | if ( $this->open( $handle ) && is_resource( $this->handles[ $handle ] ) ) { |
| 212 | $result = fwrite( $this->handles[ $handle ], $entry . PHP_EOL ); // @codingStandardsIgnoreLine. |
| 213 | } else { |
| 214 | $this->cache_log( $entry, $handle ); |
| 215 | } |
| 216 | |
| 217 | return false !== $result; |
| 218 | } |
| 219 | |
| 220 | /** |
| 221 | * Clear entries from chosen file. |
| 222 | * |
| 223 | * @param string $handle Log handle. |
| 224 | * |
| 225 | * @return bool |
| 226 | */ |
| 227 | public function clear( $handle ) { |
| 228 | $result = false; |
| 229 | |
| 230 | // Close the file if it's already open. |
| 231 | $this->close( $handle ); |
| 232 | |
| 233 | /** |
| 234 | * $this->open( $handle, 'w' ) == Open the file for writing only. Place the file pointer at |
| 235 | * the beginning of the file, and truncate the file to zero length. |
| 236 | */ |
| 237 | if ( $this->open( $handle, 'w' ) && is_resource( $this->handles[ $handle ] ) ) { |
| 238 | $result = true; |
| 239 | } |
| 240 | |
| 241 | do_action( 'woocommerce_log_clear', $handle ); |
| 242 | |
| 243 | return $result; |
| 244 | } |
| 245 | |
| 246 | /** |
| 247 | * Remove/delete the chosen file. |
| 248 | * |
| 249 | * @param string $handle Log handle. |
| 250 | * |
| 251 | * @return bool |
| 252 | */ |
| 253 | public function remove( $handle ) { |
| 254 | $removed = false; |
| 255 | $logs = $this->get_log_files(); |
| 256 | $handle = sanitize_title( $handle ); |
| 257 | |
| 258 | if ( isset( $logs[ $handle ] ) && $logs[ $handle ] ) { |
| 259 | $file = realpath( trailingslashit( WC_LOG_DIR ) . $logs[ $handle ] ); |
| 260 | if ( 0 === stripos( $file, realpath( trailingslashit( WC_LOG_DIR ) ) ) && is_file( $file ) && is_writable( $file ) ) { // phpcs:ignore WordPress.VIP.FileSystemWritesDisallow.file_ops_is_writable |
| 261 | $this->close( $file ); // Close first to be certain no processes keep it alive after it is unlinked. |
| 262 | $removed = unlink( $file ); // phpcs:ignore WordPress.VIP.FileSystemWritesDisallow.file_ops_unlink |
| 263 | } |
| 264 | do_action( 'woocommerce_log_remove', $handle, $removed ); |
| 265 | } |
| 266 | return $removed; |
| 267 | } |
| 268 | |
| 269 | /** |
| 270 | * Check if log file should be rotated. |
| 271 | * |
| 272 | * Compares the size of the log file to determine whether it is over the size limit. |
| 273 | * |
| 274 | * @param string $handle Log handle. |
| 275 | * @return bool True if if should be rotated. |
| 276 | */ |
| 277 | protected function should_rotate( $handle ) { |
| 278 | $file = self::get_log_file_path( $handle ); |
| 279 | if ( $file ) { |
| 280 | if ( $this->is_open( $handle ) ) { |
| 281 | $file_stat = fstat( $this->handles[ $handle ] ); |
| 282 | return $file_stat['size'] > $this->log_size_limit; |
| 283 | } elseif ( file_exists( $file ) ) { |
| 284 | return filesize( $file ) > $this->log_size_limit; |
| 285 | } else { |
| 286 | return false; |
| 287 | } |
| 288 | } else { |
| 289 | return false; |
| 290 | } |
| 291 | } |
| 292 | |
| 293 | /** |
| 294 | * Rotate log files. |
| 295 | * |
| 296 | * Logs are rotated by prepending '.x' to the '.log' suffix. |
| 297 | * The current log plus 10 historical logs are maintained. |
| 298 | * For example: |
| 299 | * base.9.log -> [ REMOVED ] |
| 300 | * base.8.log -> base.9.log |
| 301 | * ... |
| 302 | * base.0.log -> base.1.log |
| 303 | * base.log -> base.0.log |
| 304 | * |
| 305 | * @param string $handle Log handle. |
| 306 | */ |
| 307 | protected function log_rotate( $handle ) { |
| 308 | for ( $i = 8; $i >= 0; $i-- ) { |
| 309 | $this->increment_log_infix( $handle, $i ); |
| 310 | } |
| 311 | $this->increment_log_infix( $handle ); |
| 312 | } |
| 313 | |
| 314 | /** |
| 315 | * Increment a log file suffix. |
| 316 | * |
| 317 | * @param string $handle Log handle. |
| 318 | * @param null|int $number Optional. Default null. Log suffix number to be incremented. |
| 319 | * @return bool True if increment was successful, otherwise false. |
| 320 | */ |
| 321 | protected function increment_log_infix( $handle, $number = null ) { |
| 322 | if ( null === $number ) { |
| 323 | $suffix = ''; |
| 324 | $next_suffix = '.0'; |
| 325 | } else { |
| 326 | $suffix = '.' . $number; |
| 327 | $next_suffix = '.' . ( $number + 1 ); |
| 328 | } |
| 329 | |
| 330 | $rename_from = self::get_log_file_path( "{$handle}{$suffix}" ); |
| 331 | $rename_to = self::get_log_file_path( "{$handle}{$next_suffix}" ); |
| 332 | |
| 333 | if ( $this->is_open( $rename_from ) ) { |
| 334 | $this->close( $rename_from ); |
| 335 | } |
| 336 | |
| 337 | if ( is_writable( $rename_from ) ) { // phpcs:ignore WordPress.VIP.FileSystemWritesDisallow.file_ops_is_writable |
| 338 | return rename( $rename_from, $rename_to ); // phpcs:ignore WordPress.VIP.FileSystemWritesDisallow.file_ops_rename |
| 339 | } else { |
| 340 | return false; |
| 341 | } |
| 342 | |
| 343 | } |
| 344 | |
| 345 | /** |
| 346 | * Get a log file path. |
| 347 | * |
| 348 | * @param string $handle Log name. |
| 349 | * @return bool|string The log file path or false if path cannot be determined. |
| 350 | */ |
| 351 | public static function get_log_file_path( $handle ) { |
| 352 | if ( function_exists( 'wp_hash' ) ) { |
| 353 | return trailingslashit( WC_LOG_DIR ) . self::get_log_file_name( $handle ); |
| 354 | } else { |
| 355 | wc_doing_it_wrong( __METHOD__, __( 'This method should not be called before plugins_loaded.', 'woocommerce' ), '3.0' ); |
| 356 | return false; |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | /** |
| 361 | * Get a log file name. |
| 362 | * |
| 363 | * File names consist of the handle, followed by the date, followed by a hash, .log. |
| 364 | * |
| 365 | * @since 3.3 |
| 366 | * @param string $handle Log name. |
| 367 | * @return bool|string The log file name or false if cannot be determined. |
| 368 | */ |
| 369 | public static function get_log_file_name( $handle ) { |
| 370 | if ( function_exists( 'wp_hash' ) ) { |
| 371 | $date_suffix = date( 'Y-m-d', time() ); |
| 372 | $hash_suffix = wp_hash( $handle ); |
| 373 | return sanitize_file_name( implode( '-', array( $handle, $date_suffix, $hash_suffix ) ) . '.log' ); |
| 374 | } else { |
| 375 | wc_doing_it_wrong( __METHOD__, __( 'This method should not be called before plugins_loaded.', 'woocommerce' ), '3.3' ); |
| 376 | return false; |
| 377 | } |
| 378 | } |
| 379 | |
| 380 | /** |
| 381 | * Cache log to write later. |
| 382 | * |
| 383 | * @param string $entry Log entry text. |
| 384 | * @param string $handle Log entry handle. |
| 385 | */ |
| 386 | protected function cache_log( $entry, $handle ) { |
| 387 | $this->cached_logs[] = array( |
| 388 | 'entry' => $entry, |
| 389 | 'handle' => $handle, |
| 390 | ); |
| 391 | } |
| 392 | |
| 393 | /** |
| 394 | * Write cached logs. |
| 395 | */ |
| 396 | public function write_cached_logs() { |
| 397 | foreach ( $this->cached_logs as $log ) { |
| 398 | $this->add( $log['entry'], $log['handle'] ); |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | /** |
| 403 | * Delete all logs older than a defined timestamp. |
| 404 | * |
| 405 | * @since 3.4.0 |
| 406 | * @param integer $timestamp Timestamp to delete logs before. |
| 407 | */ |
| 408 | public static function delete_logs_before_timestamp( $timestamp = 0 ) { |
| 409 | if ( ! $timestamp ) { |
| 410 | return; |
| 411 | } |
| 412 | |
| 413 | $log_files = self::get_log_files(); |
| 414 | |
| 415 | foreach ( $log_files as $log_file ) { |
| 416 | $last_modified = filemtime( trailingslashit( WC_LOG_DIR ) . $log_file ); |
| 417 | |
| 418 | if ( $last_modified < $timestamp ) { |
| 419 | @unlink( trailingslashit( WC_LOG_DIR ) . $log_file ); // @codingStandardsIgnoreLine. |
| 420 | } |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | /** |
| 425 | * Get all log files in the log directory. |
| 426 | * |
| 427 | * @since 3.4.0 |
| 428 | * @return array |
| 429 | */ |
| 430 | public static function get_log_files() { |
| 431 | $files = @scandir( WC_LOG_DIR ); // @codingStandardsIgnoreLine. |
| 432 | $result = array(); |
| 433 | |
| 434 | if ( ! empty( $files ) ) { |
| 435 | foreach ( $files as $key => $value ) { |
| 436 | if ( ! in_array( $value, array( '.', '..' ), true ) ) { |
| 437 | if ( ! is_dir( $value ) && strstr( $value, '.log' ) ) { |
| 438 | $result[ sanitize_title( $value ) ] = $value; |
| 439 | } |
| 440 | } |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | return $result; |
| 445 | } |
| 446 | } |
| 447 |