woocommerce/classes/class-wc-logger.php

102 lines
1.8 KiB
PHP
Raw Normal View History

<?php
/**
* Allows log files to be written to for debugging purposes.
*
2012-01-27 16:38:39 +00:00
* @class WC_Logger
2012-08-14 19:42:38 +00:00
* @version 1.6.4
2012-08-14 22:43:48 +00:00
* @package WooCommerce/Classes
2012-08-14 19:42:38 +00:00
* @author WooThemes
*/
2012-01-27 16:38:39 +00:00
class WC_Logger {
2012-08-14 19:42:38 +00:00
2012-08-15 17:08:42 +00:00
/**
* @var array Stores open file handles.
* @access private
*/
private $handles;
2012-08-14 19:42:38 +00:00
/**
2012-08-15 17:08:42 +00:00
* Constructor for the logger.
2012-08-14 19:42:38 +00:00
*
* @access public
* @return void
*/
function __construct() {
$this->handles = array();
}
2012-08-14 19:42:38 +00:00
/**
* Destructor.
*
* @access public
* @return void
*/
function __destruct() {
foreach ( $this->handles as $handle )
2012-10-24 10:28:05 +00:00
@fclose( escapeshellarg( $handle ) );
}
2012-08-14 19:42:38 +00:00
/**
2012-08-14 19:42:38 +00:00
* Open log file for writing.
*
* @access private
* @param mixed $handle
* @return bool success
*/
private function open( $handle ) {
global $woocommerce;
2012-08-14 19:42:38 +00:00
if ( isset( $this->handles[ $handle ] ) )
2012-08-14 19:42:38 +00:00
return true;
if ( $this->handles[ $handle ] = @fopen( $woocommerce->plugin_path() . '/logs/' . $this->file_name( $handle ) . '.txt', 'a' ) )
2012-08-14 19:42:38 +00:00
return true;
return false;
}
2012-08-14 19:42:38 +00:00
/**
2012-08-14 19:42:38 +00:00
* Add a log entry to chosen file.
*
* @access public
* @param mixed $handle
* @param mixed $message
* @return void
*/
public function add( $handle, $message ) {
2012-08-14 19:42:38 +00:00
if ( $this->open( $handle ) ) {
$time = date_i18n( 'm-d-Y @ H:i:s -' ); //Grab Time
fwrite( $this->handles[ $handle ], $time . " " . $message . "\n" );
2012-08-14 19:42:38 +00:00
}
}
2012-08-14 19:42:38 +00:00
/**
2012-08-14 19:42:38 +00:00
* Clear entrys from chosen file.
*
* @access public
* @param mixed $handle
* @return void
*/
public function clear( $handle ) {
2012-08-14 19:42:38 +00:00
if ( $this->open( $handle ) )
ftruncate( $this->handles[ $handle ], 0 );
}
2012-11-27 16:22:47 +00:00
/**
* file_name function.
2012-11-27 16:22:47 +00:00
*
* @access private
* @param mixed $handle
* @return void
*/
private function file_name( $handle ) {
return $handle . '-' . sanitize_file_name( wp_hash( $handle ) );
2012-08-14 19:42:38 +00:00
}
}