BookStack/app/Exceptions/NotifyException.php

51 lines
1.2 KiB
PHP
Raw Normal View History

2021-06-26 15:23:15 +00:00
<?php
namespace BookStack\Exceptions;
2015-09-04 16:16:58 +00:00
use Exception;
use Illuminate\Contracts\Support\Responsable;
2015-09-04 16:16:58 +00:00
class NotifyException extends Exception implements Responsable
{
2015-09-04 16:16:58 +00:00
public $message;
public $redirectLocation;
protected $status;
2015-09-04 16:16:58 +00:00
public function __construct(string $message, string $redirectLocation = '/', int $status = 500)
2015-09-04 16:16:58 +00:00
{
$this->message = $message;
$this->redirectLocation = $redirectLocation;
$this->status = $status;
2015-09-04 16:16:58 +00:00
parent::__construct();
}
/**
* Get the desired status code for this exception.
*/
public function getStatus(): int
{
return $this->status;
}
/**
* Send the response for this type of exception.
2021-06-26 15:23:15 +00:00
*
* {@inheritdoc}
*/
public function toResponse($request)
{
$message = $this->getMessage();
// Front-end JSON handling. API-side handling managed via handler.
if ($request->wantsJson()) {
return response()->json(['error' => $message], 403);
}
if (!empty($message)) {
session()->flash('error', $message);
}
return redirect($this->redirectLocation);
}
}