2013-07-05 20:24:36 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Log;
|
|
|
|
|
2013-07-05 20:59:42 +00:00
|
|
|
/**
|
|
|
|
* This rotates the current logfile to a new name, this way the total log usage
|
|
|
|
* will stay limited and older entries are available for a while longer. The
|
|
|
|
* total disk usage is twice LOG_SIZE_LIMIT.
|
|
|
|
* For more professional log management set the 'logfile' config to a different
|
|
|
|
* location and manage that with your own tools.
|
|
|
|
*/
|
2013-07-05 20:24:36 +00:00
|
|
|
class Rotate extends \OC\BackgroundJob\Job {
|
2013-07-10 16:07:43 +00:00
|
|
|
const LOG_SIZE_LIMIT = 104857600; // 100 MiB
|
2013-07-05 20:24:36 +00:00
|
|
|
public function run($logFile) {
|
2013-07-05 20:42:17 +00:00
|
|
|
$filesize = @filesize($logFile);
|
2013-07-05 20:24:36 +00:00
|
|
|
if ($filesize >= self::LOG_SIZE_LIMIT) {
|
|
|
|
$this->rotate($logFile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function rotate($logfile) {
|
2013-07-05 20:42:17 +00:00
|
|
|
$rotatedLogfile = $logfile.'.1';
|
|
|
|
rename($logfile, $rotatedLogfile);
|
|
|
|
$msg = 'Log file "'.$logfile.'" was over 100MB, moved to "'.$rotatedLogfile.'"';
|
2013-07-05 20:24:36 +00:00
|
|
|
\OC_Log::write('OC\Log\Rotate', $msg, \OC_Log::WARN);
|
|
|
|
}
|
|
|
|
}
|