coolify/app/Exceptions/Handler.php

127 lines
3.9 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;
use App\Models\User;
use Illuminate\Auth\AuthenticationException;
2023-03-17 14:33:48 +00:00
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
2023-11-20 09:32:06 +00:00
use RuntimeException;
2023-05-30 07:50:50 +00:00
use Sentry\Laravel\Integration;
2023-09-01 09:20:58 +00:00
use Sentry\State\Scope;
use Throwable;
2023-03-17 14:33:48 +00:00
class Handler extends ExceptionHandler
{
/**
* A list of exception types with their corresponding custom log levels.
*
* @var array<class-string<\Throwable>, \Psr\Log\LogLevel::*>
*/
protected $levels = [
//
];
2024-06-10 20:43:34 +00:00
2023-03-17 14:33:48 +00:00
/**
* A list of the exception types that are not reported.
*
* @var array<int, class-string<\Throwable>>
*/
protected $dontReport = [
2024-06-10 20:43:34 +00:00
ProcessException::class,
NonReportableException::class,
DeploymentException::class,
2023-03-17 14:33:48 +00:00
];
2024-06-10 20:43:34 +00:00
2023-03-17 14:33:48 +00: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',
];
2024-06-10 20:43:34 +00:00
private InstanceSettings $settings;
2023-03-17 14:33:48 +00:00
protected function unauthenticated($request, AuthenticationException $exception)
{
if ($request->is('api/*') || $request->expectsJson() || $this->shouldReturnJson($request, $exception)) {
return response()->json(['message' => $exception->getMessage()], 401);
}
2024-06-10 20:43:34 +00:00
return redirect()->guest($exception->redirectTo($request) ?? route('login'));
}
2024-06-10 20:43:34 +00:00
/**
* Render an exception into an HTTP response.
*/
public function render($request, Throwable $e)
{
// Handle authorization exceptions for API routes
if ($e instanceof \Illuminate\Auth\Access\AuthorizationException) {
if ($request->is('api/*') || $request->expectsJson()) {
// Get the custom message from the policy if available
$message = $e->getMessage();
// Clean up the message for API responses (remove HTML tags if present)
$message = strip_tags(str_replace('<br/>', ' ', $message));
// If no custom message, use a default one
if (empty($message) || $message === 'This action is unauthorized.') {
$message = 'You are not authorized to perform this action.';
}
return response()->json([
'message' => $message,
'error' => 'Unauthorized',
], 403);
}
}
return parent::render($request, $e);
}
2023-03-17 14:33:48 +00:00
/**
* Register the exception handling callbacks for the application.
*/
public function register(): void
{
$this->reportable(function (Throwable $e) {
if (isDev()) {
2024-04-17 13:30:08 +00:00
return;
2023-11-20 09:32:06 +00:00
}
if ($e instanceof RuntimeException) {
return;
}
$this->settings = instanceSettings();
if ($this->settings->do_not_track) {
2023-06-08 06:18:14 +00:00
return;
}
2023-09-01 09:20:58 +00:00
app('sentry')->configureScope(
2023-09-11 20:45:07 +00:00
function (Scope $scope) {
2023-09-29 08:21:11 +00:00
$email = auth()?->user() ? auth()->user()->email : 'guest';
$instanceAdmin = User::find(0)->email ?? 'admin@localhost';
2023-09-11 20:45:07 +00:00
$scope->setUser(
[
2023-09-29 08:21:11 +00:00
'email' => $email,
2024-06-10 20:43:34 +00:00
'instanceAdmin' => $instanceAdmin,
2023-09-11 20:45:07 +00:00
]
);
2023-09-01 09:20:58 +00:00
}
);
// Check for errors that should not be reported to Sentry
2024-03-04 07:49:53 +00:00
if (str($e->getMessage())->contains('No space left on device')) {
// Log locally but don't send to Sentry
logger()->warning('Disk space error: '.$e->getMessage());
2024-03-04 07:49:53 +00:00
return;
}
2023-05-30 07:50:50 +00:00
Integration::captureUnhandledException($e);
2023-03-17 14:33:48 +00:00
});
}
}