2012-03-31 01:15:48 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Robin Appelman
|
|
|
|
* @copyright 2012 Robin Appelman icewind1991@gmail.com
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* logging utilities
|
|
|
|
*
|
|
|
|
* Log is saved at data/owncloud.log (on default)
|
|
|
|
*/
|
|
|
|
|
|
|
|
class OC_Log_Owncloud {
|
2012-03-31 01:40:16 +04:00
|
|
|
static protected $logFile;
|
|
|
|
|
2012-03-31 01:15:48 +04:00
|
|
|
/**
|
|
|
|
* Init class data
|
|
|
|
*/
|
|
|
|
public static function init() {
|
2012-12-17 04:43:32 +04:00
|
|
|
$defaultLogFile = OC_Config::getValue("datadirectory", OC::$SERVERROOT.'/data').'/owncloud.log';
|
|
|
|
self::$logFile = OC_Config::getValue("logfile", $defaultLogFile);
|
|
|
|
if (!file_exists(self::$logFile)) {
|
|
|
|
self::$logFile = $defaultLogFile;
|
|
|
|
}
|
2012-03-31 01:15:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* write a message in the log
|
|
|
|
* @param string $app
|
|
|
|
* @param string $message
|
2013-08-05 01:13:34 +04:00
|
|
|
* @param int $level
|
2012-03-31 01:15:48 +04:00
|
|
|
*/
|
|
|
|
public static function write($app, $message, $level) {
|
2012-11-04 14:10:46 +04:00
|
|
|
$minLevel=min(OC_Config::getValue( "loglevel", OC_Log::WARN ), OC_Log::ERROR);
|
2012-09-07 17:22:01 +04:00
|
|
|
if($level>=$minLevel) {
|
2013-08-02 15:34:20 +04:00
|
|
|
// default to ISO8601
|
|
|
|
$format = OC_Config::getValue('logdateformat', 'c');
|
|
|
|
$time = date($format, time());
|
2013-04-17 14:24:18 +04:00
|
|
|
$entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=> $time);
|
2012-12-17 04:43:32 +04:00
|
|
|
$handle = @fopen(self::$logFile, 'a');
|
|
|
|
if ($handle) {
|
|
|
|
fwrite($handle, json_encode($entry)."\n");
|
|
|
|
fclose($handle);
|
|
|
|
}
|
2012-03-31 01:15:48 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get entries from the log in reverse chronological order
|
2013-08-05 01:13:34 +04:00
|
|
|
* @param int $limit
|
|
|
|
* @param int $offset
|
2012-03-31 01:15:48 +04:00
|
|
|
* @return array
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getEntries($limit=50, $offset=0) {
|
2012-03-31 01:40:16 +04:00
|
|
|
self::init();
|
2012-04-16 14:21:12 +04:00
|
|
|
$minLevel=OC_Config::getValue( "loglevel", OC_Log::WARN );
|
2012-06-01 22:38:25 +04:00
|
|
|
$entries = array();
|
2012-07-06 23:51:01 +04:00
|
|
|
$handle = @fopen(self::$logFile, 'rb');
|
2012-06-01 22:38:25 +04:00
|
|
|
if ($handle) {
|
2012-07-06 23:51:01 +04:00
|
|
|
fseek($handle, 0, SEEK_END);
|
|
|
|
$pos = ftell($handle);
|
|
|
|
$line = '';
|
|
|
|
$entriesCount = 0;
|
|
|
|
$lines = 0;
|
|
|
|
// Loop through each character of the file looking for new lines
|
|
|
|
while ($pos >= 0 && $entriesCount < $limit) {
|
|
|
|
fseek($handle, $pos);
|
|
|
|
$ch = fgetc($handle);
|
|
|
|
if ($ch == "\n" || $pos == 0) {
|
|
|
|
if ($line != '') {
|
2013-02-11 20:44:02 +04:00
|
|
|
// Add the first character if at the start of the file,
|
|
|
|
// because it doesn't hit the else in the loop
|
2012-07-06 23:51:01 +04:00
|
|
|
if ($pos == 0) {
|
|
|
|
$line = $ch.$line;
|
|
|
|
}
|
|
|
|
$entry = json_decode($line);
|
|
|
|
// Add the line as an entry if it is passed the offset and is equal or above the log level
|
2012-07-07 01:29:45 +04:00
|
|
|
if ($entry->level >= $minLevel) {
|
|
|
|
$lines++;
|
|
|
|
if ($lines > $offset) {
|
|
|
|
$entries[] = $entry;
|
|
|
|
$entriesCount++;
|
|
|
|
}
|
2012-07-06 23:51:01 +04:00
|
|
|
}
|
|
|
|
$line = '';
|
2012-06-01 22:38:25 +04:00
|
|
|
}
|
2012-07-06 23:51:01 +04:00
|
|
|
} else {
|
|
|
|
$line = $ch.$line;
|
2012-06-01 22:38:25 +04:00
|
|
|
}
|
2012-07-06 23:51:01 +04:00
|
|
|
$pos--;
|
2012-04-16 14:21:12 +04:00
|
|
|
}
|
2012-06-01 22:38:25 +04:00
|
|
|
fclose($handle);
|
2012-03-31 01:15:48 +04:00
|
|
|
}
|
|
|
|
return $entries;
|
|
|
|
}
|
|
|
|
}
|