1 | <?php |
||
35 | class Rescuer implements \Minotaur\Route\Plugin |
||
36 | { |
||
37 | /** |
||
38 | * @var bool Whether to include exception information in responses |
||
39 | */ |
||
40 | protected $debug; |
||
41 | /** |
||
42 | * @var string The class name of the XHP to render |
||
43 | */ |
||
44 | protected $xhpClass; |
||
45 | |||
46 | /** |
||
47 | * Convenient map of HTTP status codes to human-readable explanations |
||
48 | */ |
||
49 | protected const MESSAGES = [ |
||
50 | 403 => "You are not allowed to perform this action.", |
||
51 | 404 => "We don't have anything at this URL. Double-check the URL you requested.", |
||
52 | 405 => "You can't use that HTTP method for this URL. Check the Allow response header for the ones you can.", |
||
53 | 406 => "We don't have any content available in the MIME type you specified in your Accept header. Try specifying additional MIME types.", |
||
54 | 422 => "There was a problem with the data you submitted. Review the messages for each field and try again.", |
||
55 | 423 => "This data is locked. You have permission, but it is no longer allowed to be changed.", |
||
56 | 500 => "It looks like we have a problem on our end! Our staff has been notified. Please try again later." |
||
57 | ]; |
||
58 | |||
59 | /** |
||
60 | * Creates a new Contingency. |
||
61 | * |
||
62 | * The following options are available: |
||
63 | * * `debug` – Whether to include exception stack trace information (*should be `false` in production!*). Defaults to `false`. |
||
64 | * * `xhpClass` – The class name of XHP to render (must be `xhp_class_name` format). Defaults to `xhp__labrys__error_page`. |
||
65 | * |
||
66 | * @param array<string,mixed> $options The options |
||
67 | */ |
||
68 | 10 | public function __construct(array $options = []) |
|
77 | |||
78 | /** |
||
79 | * Gets the plugin priority; larger means first. |
||
80 | * |
||
81 | * @return - The plugin priority |
||
82 | */ |
||
83 | public function getPriority(): int |
||
87 | |||
88 | /** |
||
89 | * Middleware request–response handling. |
||
90 | * |
||
91 | * @param $request - The server request |
||
92 | * @param $response - The response |
||
93 | * @param callable $next - The next layer. (function (Request,Response): Response) |
||
94 | * @return - The response |
||
95 | */ |
||
96 | 10 | public function __invoke(Request $request, Response $response, callable $next): Response |
|
104 | |||
105 | /** |
||
106 | * Handles an exception. |
||
107 | * |
||
108 | * This is your chance for logging, changing the HTTP status header, and |
||
109 | * rendering some kind of message for the client. |
||
110 | * |
||
111 | * @param $request - The request |
||
112 | * @param $response - The response |
||
113 | * @param $e - The exception to process |
||
114 | * @return - The new response |
||
115 | */ |
||
116 | 10 | public function process(Request $request, Response $response, \Exception $e) : Response |
|
154 | |||
155 | /** |
||
156 | * Assembles the values from the Request and Exception. |
||
157 | * |
||
158 | * @param $request - The request |
||
159 | * @param $e - The Exception |
||
160 | * @return array<string,mixed> The assembled values |
||
161 | */ |
||
162 | 10 | protected function getValues(Request $request, \Exception $e): array |
|
163 | { |
||
164 | 10 | $values = []; |
|
165 | 10 | $extra = ['success' => false]; |
|
166 | 10 | if ($this->debug) { |
|
167 | 10 | $extra['exception'] = $this->getStackTrace($e); |
|
168 | } |
||
169 | 10 | if ($e instanceof \Minotaur\Route\Exception\Unroutable) { |
|
170 | 3 | $code = $e->getCode(); |
|
171 | 3 | $values['title'] = $e->getMessage(); |
|
172 | 3 | $values['status'] = $code; |
|
173 | 3 | $values['detail'] = self::MESSAGES[$code]; |
|
174 | } elseif ($e instanceof \Caridea\Acl\Exception\Forbidden) { |
||
175 | 1 | $values['title'] = 'Access Denied'; |
|
176 | 1 | $values['status'] = 403; |
|
177 | 1 | $values['detail'] = self::MESSAGES[403]; |
|
178 | } elseif ($e instanceof \Caridea\Dao\Exception\Unretrievable || |
||
179 | $e instanceof \Caridea\Acl\Exception\Unloadable) { |
||
180 | 1 | $values['title'] = 'Resource Not Found'; |
|
181 | 1 | $values['status'] = 404; |
|
182 | 1 | $values['detail'] = self::MESSAGES[404]; |
|
183 | } elseif ($e instanceof \Caridea\Dao\Exception\Duplicative) { |
||
184 | 1 | $values['title'] = 'Constraint Violation'; |
|
185 | 1 | $values['status'] = 409; |
|
186 | 1 | $values['detail'] = 'The data you submitted violates unique constraints. Most likely, this is a result of an existing record with similar data. Double-check existing records and try again.'; |
|
187 | } elseif ($e instanceof \Caridea\Dao\Exception\Conflicting) { |
||
188 | 1 | $values['title'] = 'Concurrent Modification'; |
|
189 | 1 | $values['status'] = 409; |
|
190 | 1 | $values['detail'] = 'Someone else saved changes to this same data while you were editing. Try your request again using the latest copy of the record.'; |
|
191 | } elseif ($e instanceof \Caridea\Validate\Exception\Invalid) { |
||
192 | 1 | $values['title'] = 'Data Validation Failure'; |
|
193 | 1 | $values['status'] = 422; |
|
194 | 1 | $values['detail'] = self::MESSAGES[422]; |
|
195 | 1 | $errors = []; |
|
196 | 1 | foreach ($e->getErrors() as $field => $code) { |
|
197 | 1 | $errors[] = ['field' => $field, 'code' => $code]; |
|
198 | } |
||
199 | 1 | $extra['errors'] = $errors; |
|
200 | } elseif ($e instanceof \Caridea\Dao\Exception\Locked) { |
||
201 | 1 | $values['title'] = 'Resource Locked'; |
|
202 | 1 | $values['status'] = 423; |
|
203 | 1 | $values['detail'] = self::MESSAGES[423]; |
|
204 | } else { |
||
205 | 1 | $values['title'] = 'Internal Server Error'; |
|
206 | 1 | $values['status'] = 500; |
|
207 | 1 | $values['detail'] = self::MESSAGES[500]; |
|
208 | } |
||
209 | 10 | $values['extra'] = $extra; |
|
210 | 10 | return $values; |
|
211 | } |
||
212 | |||
213 | /** |
||
214 | * Gets an exception stack trace as a string, including nested exceptions. |
||
215 | * |
||
216 | * @param $e - The exception |
||
217 | * @return array<string,string> The full stack trace |
||
218 | */ |
||
219 | 10 | private function getStackTrace(\Exception $e): array |
|
231 | |||
232 | /** |
||
233 | * Returns the ProblemDetails to render. |
||
234 | * |
||
235 | * @param array<string,mixed> $values The values |
||
236 | * @return ProblemDetails The JSON response |
||
237 | */ |
||
238 | 8 | protected function renderJson(array $values): ProblemDetails |
|
250 | |||
251 | /** |
||
252 | * Returns the HTML to render. |
||
253 | * |
||
254 | * @param array<string,mixed> $values The values |
||
255 | * @return \Minotaur\Tags\Node The HTML response |
||
256 | */ |
||
257 | 2 | protected function renderHtml(array $values): \Minotaur\Tags\Node |
|
261 | } |
||
262 |