2014-12-21 00:44:41 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 22:15:27 +03:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-03-26 13:44:34 +03: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 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2014-12-21 00:44:41 +03:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2019-09-17 17:33:27 +03:00
|
|
|
namespace OCA\Settings\Controller;
|
2014-12-21 00:44:41 +03:00
|
|
|
|
2018-04-24 23:14:00 +03:00
|
|
|
use OC\Log;
|
2014-12-21 00:44:41 +03:00
|
|
|
use OCP\AppFramework\Controller;
|
2015-03-27 03:37:25 +03:00
|
|
|
use OCP\AppFramework\Http\StreamResponse;
|
2018-04-24 23:14:00 +03:00
|
|
|
use OCP\IRequest;
|
2014-12-21 00:44:41 +03:00
|
|
|
|
|
|
|
class LogSettingsController extends Controller {
|
2018-04-24 23:14:00 +03:00
|
|
|
|
2019-01-07 14:32:07 +03:00
|
|
|
/** @var Log */
|
2018-04-24 23:14:00 +03:00
|
|
|
private $log;
|
|
|
|
|
2019-01-07 14:32:07 +03:00
|
|
|
public function __construct(string $appName, IRequest $request, Log $logger) {
|
2018-04-24 23:14:00 +03:00
|
|
|
parent::__construct($appName, $request);
|
|
|
|
$this->log = $logger;
|
|
|
|
}
|
|
|
|
|
2014-12-21 00:44:41 +03:00
|
|
|
/**
|
|
|
|
* download logfile
|
|
|
|
*
|
|
|
|
* @NoCSRFRequired
|
|
|
|
*
|
2015-03-27 03:37:25 +03:00
|
|
|
* @return StreamResponse
|
2014-12-21 00:44:41 +03:00
|
|
|
*/
|
|
|
|
public function download() {
|
2020-04-10 15:19:56 +03:00
|
|
|
if (!$this->log instanceof Log) {
|
2018-04-24 23:14:00 +03:00
|
|
|
throw new \UnexpectedValueException('Log file not available');
|
|
|
|
}
|
|
|
|
$resp = new StreamResponse($this->log->getLogPath());
|
2016-06-30 13:43:58 +03:00
|
|
|
$resp->addHeader('Content-Type', 'application/octet-stream');
|
|
|
|
$resp->addHeader('Content-Disposition', 'attachment; filename="nextcloud.log"');
|
2015-03-27 03:37:25 +03:00
|
|
|
return $resp;
|
2014-12-21 00:44:41 +03:00
|
|
|
}
|
|
|
|
}
|