Add new exceptions

This commit is contained in:
Bubka 2021-09-17 23:45:08 +02:00
parent 4c2c7f95ac
commit f7fcef77f1
3 changed files with 25 additions and 1 deletions

View File

@ -53,10 +53,20 @@ public function render($request, Throwable $exception)
return response()->json([
'message' => str_replace('App\\', '', $exception->getModel()).' not found'], 404);
}
if ($exception instanceof InvalidOtpParameterException) {
return response()->json([
'message' => 'invalid OTP parameters',
'reason' => [$exception->getMessage()]
], 400);
}
if ($exception instanceof InvalidQrCodeException) {
return response()->json([
'message' => 'not a valid QR code'], 400);
}
if ($exception instanceof InvalidSecretException) {
return response()->json([
'message' => 'not a valid base32 encoded secret'], 400);
}
return parent::render($request, $exception);
}

View File

@ -5,7 +5,7 @@
use Exception;
/**
* Class UnsupportedOtpType.
* Class InvalidQrCodeException.
*
* @codeCoverageIgnore
*/

View File

@ -0,0 +1,14 @@
<?php
namespace App\Exceptions;
use Exception;
/**
* Class InvalidSecretException.
*
* @codeCoverageIgnore
*/
class InvalidSecretException extends Exception
{
}