Pārlūkot izejas kodu

Add new exceptions

Bubka 3 gadi atpakaļ
vecāks
revīzija
f7fcef77f1

+ 10 - 0
app/Exceptions/Handler.php

@@ -53,10 +53,20 @@ class Handler extends ExceptionHandler
             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);
     }

+ 1 - 1
app/Exceptions/InvalidQrCodeException.php

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

+ 14 - 0
app/Exceptions/InvalidSecretException.php

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