2023-03-17 15:33:48 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Exceptions;
|
|
|
|
|
2023-06-08 08:18:14 +02:00
|
|
|
use App\Models\InstanceSettings;
|
2023-09-15 21:13:50 +02:00
|
|
|
use App\Models\User;
|
2023-11-13 21:16:48 +01:00
|
|
|
use Illuminate\Auth\AuthenticationException;
|
2023-03-17 15:33:48 +01:00
|
|
|
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
2023-11-20 10:32:06 +01:00
|
|
|
use RuntimeException;
|
2023-05-30 09:50:50 +02:00
|
|
|
use Sentry\Laravel\Integration;
|
2023-09-01 11:20:58 +02:00
|
|
|
use Sentry\State\Scope;
|
2023-08-08 11:51:36 +02:00
|
|
|
use Throwable;
|
2023-03-17 15:33:48 +01:00
|
|
|
|
|
|
|
class Handler extends ExceptionHandler
|
|
|
|
{
|
2023-06-08 08:18:14 +02:00
|
|
|
|
2023-03-17 15:33:48 +01:00
|
|
|
/**
|
|
|
|
* A list of exception types with their corresponding custom log levels.
|
|
|
|
*
|
|
|
|
* @var array<class-string<\Throwable>, \Psr\Log\LogLevel::*>
|
|
|
|
*/
|
|
|
|
protected $levels = [
|
|
|
|
//
|
|
|
|
];
|
|
|
|
/**
|
|
|
|
* A list of the exception types that are not reported.
|
|
|
|
*
|
|
|
|
* @var array<int, class-string<\Throwable>>
|
|
|
|
*/
|
|
|
|
protected $dontReport = [
|
2023-09-11 17:36:30 +02:00
|
|
|
ProcessException::class
|
2023-03-17 15:33:48 +01:00
|
|
|
];
|
|
|
|
/**
|
|
|
|
* A list of the inputs that are never flashed to the session on validation exceptions.
|
|
|
|
*
|
|
|
|
* @var array<int, string>
|
|
|
|
*/
|
|
|
|
protected $dontFlash = [
|
|
|
|
'current_password',
|
|
|
|
'password',
|
|
|
|
'password_confirmation',
|
|
|
|
];
|
2023-08-08 11:51:36 +02:00
|
|
|
private InstanceSettings $settings;
|
2023-03-17 15:33:48 +01:00
|
|
|
|
2023-11-13 21:16:48 +01:00
|
|
|
protected function unauthenticated($request, AuthenticationException $exception)
|
|
|
|
{
|
|
|
|
if ($request->is('api/*') || $request->expectsJson() || $this->shouldReturnJson($request, $exception)) {
|
|
|
|
return response()->json(['message' => $exception->getMessage()], 401);
|
|
|
|
}
|
2023-12-27 16:45:01 +01:00
|
|
|
return redirect()->guest($exception->redirectTo() ?? route('login'));
|
2023-11-13 21:16:48 +01:00
|
|
|
}
|
2023-03-17 15:33:48 +01:00
|
|
|
/**
|
|
|
|
* Register the exception handling callbacks for the application.
|
|
|
|
*/
|
|
|
|
public function register(): void
|
|
|
|
{
|
|
|
|
$this->reportable(function (Throwable $e) {
|
2023-09-15 15:34:25 +02:00
|
|
|
if (isDev()) {
|
2023-11-20 10:32:06 +01:00
|
|
|
// return;
|
|
|
|
}
|
|
|
|
if ($e instanceof RuntimeException) {
|
2023-09-15 15:34:25 +02:00
|
|
|
return;
|
|
|
|
}
|
2023-06-08 08:18:14 +02:00
|
|
|
$this->settings = InstanceSettings::get();
|
2023-09-15 15:34:25 +02:00
|
|
|
if ($this->settings->do_not_track) {
|
2023-06-08 08:18:14 +02:00
|
|
|
return;
|
|
|
|
}
|
2023-09-01 11:20:58 +02:00
|
|
|
app('sentry')->configureScope(
|
2023-09-11 22:45:07 +02:00
|
|
|
function (Scope $scope) {
|
2023-09-29 10:21:11 +02:00
|
|
|
$email = auth()?->user() ? auth()->user()->email : 'guest';
|
|
|
|
$instanceAdmin = User::find(0)->email ?? 'admin@localhost';
|
2023-09-11 22:45:07 +02:00
|
|
|
$scope->setUser(
|
|
|
|
[
|
2023-09-29 10:21:11 +02:00
|
|
|
'email' => $email,
|
|
|
|
'instanceAdmin' => $instanceAdmin
|
2023-09-11 22:45:07 +02:00
|
|
|
]
|
|
|
|
);
|
2023-09-01 11:20:58 +02:00
|
|
|
}
|
|
|
|
);
|
2024-03-04 08:49:53 +01:00
|
|
|
if (str($e->getMessage())->contains('No space left on device')) {
|
|
|
|
return;
|
|
|
|
}
|
2023-11-20 10:32:06 +01:00
|
|
|
ray('reporting to sentry');
|
2023-05-30 09:50:50 +02:00
|
|
|
Integration::captureUnhandledException($e);
|
2023-03-17 15:33:48 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|