lasthourcloud/app/Exceptions/Handler.php

57 lines
1.3 KiB
PHP
Raw Normal View History

2023-03-17 14:33:48 +00:00
<?php
namespace App\Exceptions;
2023-06-08 06:18:14 +00:00
use App\Models\InstanceSettings;
2023-03-17 14:33:48 +00:00
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Throwable;
2023-05-30 07:50:50 +00:00
use Sentry\Laravel\Integration;
2023-03-17 14:33:48 +00:00
class Handler extends ExceptionHandler
{
2023-06-08 06:18:14 +00:00
private InstanceSettings $settings;
2023-03-17 14:33:48 +00: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 = [
//
];
/**
* 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',
];
/**
* Register the exception handling callbacks for the application.
*/
public function register(): void
{
$this->reportable(function (Throwable $e) {
2023-06-08 06:18:14 +00:00
$this->settings = InstanceSettings::get();
2023-06-12 18:54:29 +00:00
if ($this->settings->do_not_track || config('app.env') === 'local') {
2023-06-08 06:18:14 +00:00
return;
}
2023-05-30 07:50:50 +00:00
Integration::captureUnhandledException($e);
2023-03-17 14:33:48 +00:00
});
}
}