2019-05-02 00:01:43 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
2021-03-29 02:40:20 -04:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 09:45:36 -05:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-05-02 00:01:43 -04:00
|
|
|
|
|
|
|
namespace Friendica\Module\Admin\Logs;
|
|
|
|
|
|
|
|
use Friendica\Core\Renderer;
|
2020-01-18 16:07:07 -05:00
|
|
|
use Friendica\DI;
|
2020-01-22 23:14:14 -05:00
|
|
|
use Friendica\Module\BaseAdmin;
|
2019-05-02 00:01:43 -04:00
|
|
|
use Friendica\Util\Strings;
|
|
|
|
|
2020-01-22 23:14:14 -05:00
|
|
|
class View extends BaseAdmin
|
2019-05-02 00:01:43 -04:00
|
|
|
{
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function content(array $parameters = [])
|
2019-05-02 00:01:43 -04:00
|
|
|
{
|
2019-11-05 15:22:54 -05:00
|
|
|
parent::content($parameters);
|
2019-05-02 00:01:43 -04:00
|
|
|
|
|
|
|
$t = Renderer::getMarkupTemplate('admin/logs/view.tpl');
|
2020-01-19 15:21:13 -05:00
|
|
|
$f = DI::config()->get('system', 'logfile');
|
2019-05-02 00:01:43 -04:00
|
|
|
$data = '';
|
|
|
|
|
|
|
|
if (!file_exists($f)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
$data = DI::l10n()->t('Error trying to open <strong>%1$s</strong> log file.\r\n<br/>Check to see if file %1$s exist and is readable.', $f);
|
2019-05-02 00:01:43 -04:00
|
|
|
} else {
|
|
|
|
$fp = fopen($f, 'r');
|
|
|
|
if (!$fp) {
|
2020-01-18 14:52:34 -05:00
|
|
|
$data = DI::l10n()->t('Couldn\'t open <strong>%1$s</strong> log file.\r\n<br/>Check to see if file %1$s is readable.', $f);
|
2019-05-02 00:01:43 -04:00
|
|
|
} else {
|
|
|
|
$fstat = fstat($fp);
|
|
|
|
$size = $fstat['size'];
|
|
|
|
if ($size != 0) {
|
|
|
|
if ($size > 5000000 || $size < 0) {
|
|
|
|
$size = 5000000;
|
|
|
|
}
|
|
|
|
$seek = fseek($fp, 0 - $size, SEEK_END);
|
|
|
|
if ($seek === 0) {
|
|
|
|
$data = Strings::escapeHtml(fread($fp, $size));
|
|
|
|
while (!feof($fp)) {
|
|
|
|
$data .= Strings::escapeHtml(fread($fp, 4096));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose($fp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Renderer::replaceMacros($t, [
|
2020-01-18 14:52:34 -05:00
|
|
|
'$title' => DI::l10n()->t('Administration'),
|
|
|
|
'$page' => DI::l10n()->t('View Logs'),
|
2019-05-02 00:01:43 -04:00
|
|
|
'$data' => $data,
|
2020-01-19 15:21:13 -05:00
|
|
|
'$logname' => DI::config()->get('system', 'logfile')
|
2019-05-02 00:01:43 -04:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|