2013-07-05 20:24:36 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 15:07:57 +00:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2019-12-03 18:57:53 +00:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2020-04-29 09:57:22 +00:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 14:56:42 +00:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2015-03-26 10:44:34 +00:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program 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, version 3,
|
2019-12-03 18:57:53 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 10:44:34 +00:00
|
|
|
*
|
2013-07-05 20:24:36 +00:00
|
|
|
*/
|
|
|
|
namespace OC\Log;
|
2020-04-09 09:48:10 +00:00
|
|
|
|
2024-02-08 14:47:39 +00:00
|
|
|
use OCP\IConfig;
|
2018-04-25 15:42:14 +00:00
|
|
|
use OCP\Log\RotationTrait;
|
2024-02-08 14:47:39 +00:00
|
|
|
use Psr\Log\LoggerInterface;
|
2013-07-05 20:24:36 +00:00
|
|
|
|
2013-07-05 20:59:42 +00:00
|
|
|
/**
|
|
|
|
* This rotates the current logfile to a new name, this way the total log usage
|
2013-08-28 15:41:27 +00:00
|
|
|
* will stay limited and older entries are available for a while longer.
|
2013-07-05 20:59:42 +00:00
|
|
|
* For more professional log management set the 'logfile' config to a different
|
|
|
|
* location and manage that with your own tools.
|
|
|
|
*/
|
2022-06-28 10:55:26 +00:00
|
|
|
class Rotate extends \OCP\BackgroundJob\Job {
|
2018-04-25 15:42:14 +00:00
|
|
|
use RotationTrait;
|
|
|
|
|
2024-02-08 14:47:39 +00:00
|
|
|
public function run($argument): void {
|
|
|
|
$config = \OCP\Server::get(IConfig::class);
|
|
|
|
$this->filePath = $config->getSystemValueString('logfile', $config->getSystemValueString('datadirectory', \OC::$SERVERROOT . '/data') . '/nextcloud.log');
|
2013-07-05 20:24:36 +00:00
|
|
|
|
2024-02-08 14:47:39 +00:00
|
|
|
$this->maxSize = $config->getSystemValueInt('log_rotate_size', 100 * 1024 * 1024);
|
2020-04-10 12:19:56 +00:00
|
|
|
if ($this->shouldRotateBySize()) {
|
2018-04-25 15:42:14 +00:00
|
|
|
$rotatedFile = $this->rotate();
|
|
|
|
$msg = 'Log file "'.$this->filePath.'" was over '.$this->maxSize.' bytes, moved to "'.$rotatedFile.'"';
|
2024-02-08 14:47:39 +00:00
|
|
|
\OCP\Server::get(LoggerInterface::class)->info($msg, ['app' => Rotate::class]);
|
2018-04-25 15:42:14 +00:00
|
|
|
}
|
2013-07-05 20:24:36 +00:00
|
|
|
}
|
|
|
|
}
|