mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-08 17:34:39 +01:00
63 lines
1.7 KiB
PHP
63 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
|
|
|
class Handler extends ExceptionHandler
|
|
{
|
|
/**
|
|
* A list of the exception types that are not reported.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $dontReport = [
|
|
//
|
|
];
|
|
|
|
/**
|
|
* A list of the inputs that are never flashed for validation exceptions.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $dontFlash = [
|
|
'current_password',
|
|
'password',
|
|
'password_confirmation',
|
|
];
|
|
|
|
/**
|
|
* Register the exception handling callbacks for the application.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->renderable(function (\Symfony\Component\HttpKernel\Exception\NotFoundHttpException $exception, $request) {
|
|
return response()->json([
|
|
'message' => 'not found'], 404);
|
|
});
|
|
|
|
$this->renderable(function (InvalidOtpParameterException $exception, $request) {
|
|
return response()->json([
|
|
'message' => 'invalid OTP parameters',
|
|
'reason' => [$exception->getMessage()]
|
|
], 400);
|
|
});
|
|
|
|
$this->renderable(function (InvalidQrCodeException $exception, $request) {
|
|
return response()->json([
|
|
'message' => 'not a valid QR code'], 400);
|
|
});
|
|
|
|
$this->renderable(function (InvalidSecretException $exception, $request) {
|
|
return response()->json([
|
|
'message' => 'not a valid base32 encoded secret'], 400);
|
|
});
|
|
|
|
$this->renderable(function (DbEncryptionException $exception, $request) {
|
|
return response()->json([
|
|
'message' => $exception->getMessage()], 400);
|
|
});
|
|
}
|
|
} |