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