Skip to content
Extraits de code Groupes Projets
Valider 5dd7d84e rédigé par Matthieu Aubry's avatar Matthieu Aubry Validation de GitHub
Parcourir les fichiers

PHP 7: when there is a fatal error in API request processing, display the...

PHP 7: when there is a fatal error in API request processing, display the original error in the api response (#10406)

* PHP 7: when there is a fatal error in API request processing, display  the original error

* PHP 7 compatibility
parent 26e10c29
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Affichage de avec 66 ajouts et 16 suppressions
......@@ -39,7 +39,12 @@ abstract class ApiRenderer
return 'Success:' . $message;
}
public function renderException($message, \Exception $exception)
/**
* @param $message
* @param Exception|\Throwable $exception
* @return mixed
*/
public function renderException($message, $exception)
{
return $message;
}
......
......@@ -138,10 +138,10 @@ class ResponseBuilder
}
/**
* @param Exception $e
* @param Exception|\Throwable $e
* @return Exception
*/
private function decorateExceptionWithDebugTrace(Exception $e)
private function decorateExceptionWithDebugTrace($e)
{
// If we are in tests, show full backtrace
if (defined('PIWIK_PATH_TEST_TO_ROOT')) {
......@@ -157,7 +157,11 @@ class ResponseBuilder
return $e;
}
private function formatExceptionMessage(Exception $exception)
/**
* @param Exception|\Throwable $exception
* @return string
*/
private function formatExceptionMessage($exception)
{
$message = $exception->getMessage();
if (\Piwik_ShouldPrintBackTraceWithMessage()) {
......
......@@ -175,7 +175,7 @@ class Response
return $e->getMessage();
}
protected function logExceptionToErrorLog(Exception $e)
protected function logExceptionToErrorLog($e)
{
error_log(sprintf("Error in Piwik (tracker): %s", str_replace("\n", " ", $this->getMessageFromException($e))));
}
......
......@@ -16,7 +16,12 @@ use Piwik\DataTable;
class Console extends ApiRenderer
{
public function renderException($message, \Exception $exception)
/**
* @param $message
* @param Exception|\Throwable $exception
* @return string
*/
public function renderException($message, $exception)
{
self::sendHeader();
......
......@@ -23,7 +23,12 @@ class Csv extends ApiRenderer
return "message\n" . $message;
}
public function renderException($message, \Exception $exception)
/**
* @param $message
* @param Exception|\Throwable $exception
* @return string
*/
public function renderException($message, $exception)
{
Common::sendHeader('Content-Type: text/html; charset=utf-8', true);
return 'Error: ' . $message;
......
......@@ -16,7 +16,12 @@ use Piwik\DataTable;
class Html extends ApiRenderer
{
public function renderException($message, \Exception $exception)
/**
* @param $message
* @param Exception|\Throwable $exception
* @return string
*/
public function renderException($message, $exception)
{
Common::sendHeader('Content-Type: text/plain; charset=utf-8', true);
......
......@@ -31,7 +31,12 @@ class Json extends ApiRenderer
return $this->applyJsonpIfNeeded($result);
}
public function renderException($message, \Exception $exception)
/**
* @param $message
* @param Exception|\Throwable $exception
* @return string
*/
public function renderException($message, $exception)
{
$exceptionMessage = str_replace(array("\r\n", "\n"), "", $message);
......
......@@ -18,7 +18,13 @@ class Original extends ApiRenderer
return true;
}
public function renderException($message, \Exception $exception)
/**
* @param $message
* @param \Exception|\Throwable $exception
* @throws \Exception|\Throwable
* @return void
*/
public function renderException($message, $exception)
{
throw $exception;
}
......
......@@ -23,7 +23,12 @@ class Php extends ApiRenderer
return $this->serializeIfNeeded($success);
}
public function renderException($message, \Exception $exception)
/**
* @param $message
* @param Exception|\Throwable $exception
* @return string
*/
public function renderException($message, $exception)
{
$message = array('result' => 'error', 'message' => $message);
......
......@@ -16,7 +16,12 @@ use Piwik\DataTable;
class Rss extends ApiRenderer
{
public function renderException($message, \Exception $exception)
/**
* @param $message
* @param \Exception|\Throwable $exception
* @return string
*/
public function renderException($message, $exception)
{
self::sendHeader('plain');
......
......@@ -24,7 +24,12 @@ class Xml extends ApiRenderer
"</result>";
}
public function renderException($message, \Exception $exception)
/**
* @param $message
* @param \Exception|\Throwable $exception
* @return string
*/
public function renderException($message, $exception)
{
return '<?xml version="1.0" encoding="utf-8" ?>' . "\n" .
"<result>\n" .
......
......@@ -13,7 +13,7 @@ use Exception;
class Response extends \Piwik\Plugins\BulkTracking\Tracker\Response
{
protected function logExceptionToErrorLog(Exception $e)
protected function logExceptionToErrorLog($e)
{
// prevent from writing to console in tests
}
......
......@@ -15,7 +15,7 @@ use Exception;
class TestResponse extends Response {
protected function logExceptionToErrorLog(Exception $e)
protected function logExceptionToErrorLog($e)
{
// prevent console from outputting the error_log message
}
......
......@@ -16,7 +16,7 @@ use Exception;
class TestResponse extends Response {
protected function logExceptionToErrorLog(Exception $e)
protected function logExceptionToErrorLog($e)
{
// prevent console from outputting the error_log message
}
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter