Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not reveal exception message automatically #13

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/Http/ExceptionApiProblem.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
namespace Phpro\ApiProblem\Http;

use Phpro\ApiProblem\DebuggableApiProblemInterface;
use Phpro\ApiProblem\PublicExceptionInterface;
use Throwable;

class ExceptionApiProblem extends HttpApiProblem implements DebuggableApiProblemInterface
Expand All @@ -22,8 +23,13 @@ public function __construct(Throwable $exception)
? $exceptionCode
: 500;

$detail = 'Internal error';
if ($exception instanceof PublicExceptionInterface) {
$detail = $exception->getMessage() ?: \get_class($exception);
}

parent::__construct($statusCode, [
'detail' => $exception->getMessage() ?: \get_class($exception),
'detail' => $detail,
]);
}

Expand Down
9 changes: 9 additions & 0 deletions src/PublicExceptionInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php

declare(strict_types=1);

namespace Phpro\ApiProblem;

interface PublicExceptionInterface extends \Throwable
{
}