2015-10-29 19:27:14 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-03-01 19:25:15 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-10-29 19:27:14 +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,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-05-09 16:09:50 +03:00
|
|
|
namespace OCA\Federation\Middleware;
|
2015-10-29 19:27:14 +03:00
|
|
|
|
|
|
|
use OC\HintException;
|
2017-03-13 14:13:57 +03:00
|
|
|
use OCA\Federation\Controller\SettingsController;
|
2017-07-26 11:50:39 +03:00
|
|
|
use OCP\AppFramework\Controller;
|
2015-10-29 19:27:14 +03:00
|
|
|
use OCP\AppFramework\Http;
|
|
|
|
use OCP\AppFramework\Http\JSONResponse;
|
|
|
|
use OCP\AppFramework\Middleware;
|
|
|
|
use OCP\IL10N;
|
|
|
|
use OCP\ILogger;
|
|
|
|
|
|
|
|
class AddServerMiddleware extends Middleware {
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
protected $appName;
|
|
|
|
|
|
|
|
/** @var IL10N */
|
|
|
|
protected $l;
|
|
|
|
|
|
|
|
/** @var ILogger */
|
|
|
|
protected $logger;
|
|
|
|
|
2017-08-02 15:34:51 +03:00
|
|
|
/**
|
|
|
|
* @param string $appName
|
|
|
|
* @param IL10N $l
|
|
|
|
* @param ILogger $logger
|
|
|
|
*/
|
2015-10-29 19:27:14 +03:00
|
|
|
public function __construct($appName, IL10N $l, ILogger $logger) {
|
|
|
|
$this->appName = $appName;
|
|
|
|
$this->l = $l;
|
|
|
|
$this->logger = $logger;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Log error message and return a response which can be displayed to the user
|
|
|
|
*
|
2017-07-26 11:50:39 +03:00
|
|
|
* @param Controller $controller
|
2015-10-29 19:27:14 +03:00
|
|
|
* @param string $methodName
|
|
|
|
* @param \Exception $exception
|
|
|
|
* @return JSONResponse
|
2017-07-26 11:50:39 +03:00
|
|
|
* @throws \Exception
|
2015-10-29 19:27:14 +03:00
|
|
|
*/
|
2017-08-01 18:32:03 +03:00
|
|
|
public function afterException($controller, $methodName, \Exception $exception) {
|
2017-03-13 14:13:57 +03:00
|
|
|
if (($controller instanceof SettingsController) === false) {
|
|
|
|
throw $exception;
|
|
|
|
}
|
2018-01-17 17:21:56 +03:00
|
|
|
$this->logger->logException($exception, [
|
2018-04-25 16:22:28 +03:00
|
|
|
'level' => ILogger::ERROR,
|
2018-01-17 17:21:56 +03:00
|
|
|
'app' => $this->appName,
|
|
|
|
]);
|
2015-10-29 19:27:14 +03:00
|
|
|
if ($exception instanceof HintException) {
|
|
|
|
$message = $exception->getHint();
|
|
|
|
} else {
|
2016-02-09 15:58:13 +03:00
|
|
|
$message = $exception->getMessage();
|
2015-10-29 19:27:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return new JSONResponse(
|
|
|
|
['message' => $message],
|
|
|
|
Http::STATUS_BAD_REQUEST
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|